| Server IP : 138.197.176.125 / Your IP : 216.73.217.54 Web Server : Apache/2.4.41 (Ubuntu) System : Linux SuiteCRM-8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/AppointmentScheduler-Don/modules/InboundEmail/ |
Upload File : |
<?php
/**
* Simple class to mirror the passed object from an imap_fetch_overview() call
*/
class Overview
{
public $subject;
public $from;
public $fromaddr;
public $to;
public $toaddr;
public $date;
public $message_id;
public $size;
public $uid;
public $msgno;
public $recent;
public $flagged;
public $answered;
public $deleted;
public $seen;
public $draft;
public $indices;
public function __construct()
{
global $dictionary;
if (!isset($dictionary['email_cache']) || empty($dictionary['email_cache'])) {
if (file_exists('custom/metadata/email_cacheMetaData.php')) {
include('custom/metadata/email_cacheMetaData.php');
} else {
include('metadata/email_cacheMetaData.php');
}
}
$this->fieldDefs = $dictionary['email_cache']['fields'];
$this->indices = $dictionary['email_cache']['indices'];
}
}