mirror of
https://github.com/retailcrm/Fetch.git
synced 2025-04-05 22:33:35 +03:00
Compare commits
No commits in common. "master" and "v0.5.5" have entirely different histories.
2 changed files with 6 additions and 24 deletions
|
@ -134,9 +134,7 @@ class Attachment
|
|||
$this->setFileName($parameters['name']);
|
||||
}
|
||||
|
||||
if (property_exists($structure, 'bytes')) {
|
||||
$this->size = $structure->bytes;
|
||||
}
|
||||
$this->size = $structure->bytes;
|
||||
|
||||
$this->mimeType = Message::typeIdToString($structure->type);
|
||||
|
||||
|
|
|
@ -249,15 +249,9 @@ class Message
|
|||
|
||||
return false;
|
||||
|
||||
if (property_exists($messageOverview, 'subject')) {
|
||||
$this->subject = MIME::decode($messageOverview->subject, self::$charset);
|
||||
}
|
||||
|
||||
if (property_exists($messageOverview, 'date') && null !== $messageOverview->date) {
|
||||
$this->date = strtotime($messageOverview->date);
|
||||
}
|
||||
|
||||
$this->size = $messageOverview->size;
|
||||
$this->subject = MIME::decode($messageOverview->subject, self::$charset);
|
||||
$this->date = strtotime($messageOverview->date);
|
||||
$this->size = $messageOverview->size;
|
||||
|
||||
foreach (self::$flagTypes as $flag)
|
||||
$this->status[$flag] = ($messageOverview->$flag == 1);
|
||||
|
@ -387,7 +381,7 @@ class Message
|
|||
public function getStructure($forceReload = false)
|
||||
{
|
||||
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;
|
||||
|
@ -538,10 +532,6 @@ class Message
|
|||
*/
|
||||
protected function processStructure($structure, $partIdentifier = null)
|
||||
{
|
||||
if (!$structure) {
|
||||
return;
|
||||
}
|
||||
|
||||
$parameters = self::getParametersFromStructure($structure);
|
||||
|
||||
// quick fix for Content-Disposition extended notation
|
||||
|
@ -764,13 +754,7 @@ class Message
|
|||
foreach ($addresses as $address) {
|
||||
if (property_exists($address, 'mailbox') && $address->mailbox != 'undisclosed-recipients') {
|
||||
$currentAddress = array();
|
||||
|
||||
$host = '';
|
||||
if (property_exists($address, 'host')) {
|
||||
$host = $address->host;
|
||||
}
|
||||
|
||||
$currentAddress['address'] = $address->mailbox . '@' . $host;
|
||||
$currentAddress['address'] = $address->mailbox . '@' . $address->host;
|
||||
if (isset($address->personal)) {
|
||||
$currentAddress['name'] = MIME::decode($address->personal, self::$charset);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue