mirror of
https://github.com/retailcrm/Fetch.git
synced 2025-04-05 14:23:35 +03:00
Compare commits
6 commits
Author | SHA1 | Date | |
---|---|---|---|
|
8dcbff5d4c | ||
|
cd6af40196 | ||
|
521f7bcff7 | ||
|
bcaa835898 | ||
|
2f87688e3d | ||
|
370b3ed6f8 |
2 changed files with 24 additions and 6 deletions
|
@ -134,7 +134,9 @@ class Attachment
|
||||||
$this->setFileName($parameters['name']);
|
$this->setFileName($parameters['name']);
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->size = $structure->bytes;
|
if (property_exists($structure, 'bytes')) {
|
||||||
|
$this->size = $structure->bytes;
|
||||||
|
}
|
||||||
|
|
||||||
$this->mimeType = Message::typeIdToString($structure->type);
|
$this->mimeType = Message::typeIdToString($structure->type);
|
||||||
|
|
||||||
|
|
|
@ -249,9 +249,15 @@ class Message
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
$this->subject = MIME::decode($messageOverview->subject, self::$charset);
|
if (property_exists($messageOverview, 'subject')) {
|
||||||
$this->date = strtotime($messageOverview->date);
|
$this->subject = MIME::decode($messageOverview->subject, self::$charset);
|
||||||
$this->size = $messageOverview->size;
|
}
|
||||||
|
|
||||||
|
if (property_exists($messageOverview, 'date') && null !== $messageOverview->date) {
|
||||||
|
$this->date = strtotime($messageOverview->date);
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->size = $messageOverview->size;
|
||||||
|
|
||||||
foreach (self::$flagTypes as $flag)
|
foreach (self::$flagTypes as $flag)
|
||||||
$this->status[$flag] = ($messageOverview->$flag == 1);
|
$this->status[$flag] = ($messageOverview->$flag == 1);
|
||||||
|
@ -381,7 +387,7 @@ class Message
|
||||||
public function getStructure($forceReload = false)
|
public function getStructure($forceReload = false)
|
||||||
{
|
{
|
||||||
if ($forceReload || !isset($this->structure)) {
|
if ($forceReload || !isset($this->structure)) {
|
||||||
$this->structure = imap_fetchstructure($this->imapStream, $this->uid, FT_UID);
|
$this->structure = @imap_fetchstructure($this->imapStream, $this->uid, FT_UID);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->structure;
|
return $this->structure;
|
||||||
|
@ -532,6 +538,10 @@ class Message
|
||||||
*/
|
*/
|
||||||
protected function processStructure($structure, $partIdentifier = null)
|
protected function processStructure($structure, $partIdentifier = null)
|
||||||
{
|
{
|
||||||
|
if (!$structure) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$parameters = self::getParametersFromStructure($structure);
|
$parameters = self::getParametersFromStructure($structure);
|
||||||
|
|
||||||
// quick fix for Content-Disposition extended notation
|
// quick fix for Content-Disposition extended notation
|
||||||
|
@ -754,7 +764,13 @@ class Message
|
||||||
foreach ($addresses as $address) {
|
foreach ($addresses as $address) {
|
||||||
if (property_exists($address, 'mailbox') && $address->mailbox != 'undisclosed-recipients') {
|
if (property_exists($address, 'mailbox') && $address->mailbox != 'undisclosed-recipients') {
|
||||||
$currentAddress = array();
|
$currentAddress = array();
|
||||||
$currentAddress['address'] = $address->mailbox . '@' . $address->host;
|
|
||||||
|
$host = '';
|
||||||
|
if (property_exists($address, 'host')) {
|
||||||
|
$host = $address->host;
|
||||||
|
}
|
||||||
|
|
||||||
|
$currentAddress['address'] = $address->mailbox . '@' . $host;
|
||||||
if (isset($address->personal)) {
|
if (isset($address->personal)) {
|
||||||
$currentAddress['name'] = MIME::decode($address->personal, self::$charset);
|
$currentAddress['name'] = MIME::decode($address->personal, self::$charset);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue