Skip to content
Snippets Groups Projects
Commit f3bdef61 authored by Jared Hancock's avatar Jared Hancock
Browse files

tnef: Support TNEF for fetched emails

parent 08904814
No related branches found
No related tags found
No related merge requests found
...@@ -20,6 +20,7 @@ require_once(INCLUDE_DIR.'class.dept.php'); ...@@ -20,6 +20,7 @@ require_once(INCLUDE_DIR.'class.dept.php');
require_once(INCLUDE_DIR.'class.email.php'); require_once(INCLUDE_DIR.'class.email.php');
require_once(INCLUDE_DIR.'class.filter.php'); require_once(INCLUDE_DIR.'class.filter.php');
require_once(INCLUDE_DIR.'html2text.php'); require_once(INCLUDE_DIR.'html2text.php');
require_once(INCLUDE_DIR.'tnef_decoder.php');
class MailFetcher { class MailFetcher {
...@@ -30,6 +31,8 @@ class MailFetcher { ...@@ -30,6 +31,8 @@ class MailFetcher {
var $charset = 'UTF-8'; var $charset = 'UTF-8';
var $tnef = false;
function MailFetcher($email, $charset='UTF-8') { function MailFetcher($email, $charset='UTF-8') {
...@@ -343,6 +346,10 @@ class MailFetcher { ...@@ -343,6 +346,10 @@ class MailFetcher {
} }
} }
if ($this->tnef && !strcasecmp($mimeType, 'text/html')
&& ($content = $this->tnef->getBody('text/html', $encoding)))
return $content;
//Do recursive search //Do recursive search
$text=''; $text='';
if($struct && $struct->parts && $recurse) { if($struct && $struct->parts && $recurse) {
...@@ -480,6 +487,10 @@ class MailFetcher { ...@@ -480,6 +487,10 @@ class MailFetcher {
} }
function getPriority($mid) { function getPriority($mid) {
if ($this->tnef && isset($this->tnef->Importance))
// PidTagImportance is 0, 1, or 2
// http://msdn.microsoft.com/en-us/library/ee237166(v=exchg.80).aspx
return $this->tnef->Importance + 1;
return Mail_Parse::parsePriority($this->getHeader($mid)); return Mail_Parse::parsePriority($this->getHeader($mid));
} }
...@@ -542,6 +553,23 @@ class MailFetcher { ...@@ -542,6 +553,23 @@ class MailFetcher {
return true; //Report success (moved or delete) return true; //Report success (moved or delete)
} }
// Parse MS TNEF emails
if (($struct = imap_fetchstructure($this->mbox, $mid))
&& ($attachments = $this->getAttachments($struct))) {
foreach ($attachments as $i=>$info) {
if (0 === strcasecmp('application/ms-tnef', $info['type'])) {
$data = $this->decode(imap_fetchbody($self->mbox,
$mid, $info['index']), $info['encoding']);
$tnef = new TnefStreamParser($data);
$this->tnef = $tnef->getMessage();
// No longer considered an attachment
unset($attachments[$i]);
// There should only be one of these
break;
}
}
}
$vars = $mailinfo; $vars = $mailinfo;
if ($this->isBounceNotice($mid)) { if ($this->isBounceNotice($mid)) {
// Fetch the original References and assign to 'references' // Fetch the original References and assign to 'references'
...@@ -579,10 +607,18 @@ class MailFetcher { ...@@ -579,10 +607,18 @@ class MailFetcher {
$seen = false; $seen = false;
// Fetch attachments if any. // Fetch attachments if any.
if($ost->getConfig()->allowEmailAttachments() if($ost->getConfig()->allowEmailAttachments()) {
&& ($struct = imap_fetchstructure($this->mbox, $mid)) // Include TNEF attachments in the attachments list
&& ($attachments=$this->getAttachments($struct))) { if ($this->tnef) {
foreach ($this->tnef->attachments as $at) {
$attachments[] = array(
'cid' => @$at->AttachContentId ?: false,
'data' => $at->Data,
'type' => @$at->AttachMimeTag ?: false,
'name' => $at->getName(),
);
}
}
$vars['attachments'] = array(); $vars['attachments'] = array();
foreach($attachments as $a ) { foreach($attachments as $a ) {
$file = array('name' => $a['name'], 'type' => $a['type']); $file = array('name' => $a['name'], 'type' => $a['type']);
......
...@@ -393,7 +393,6 @@ class Mail_Parse { ...@@ -393,7 +393,6 @@ class Mail_Parse {
'data' => $at->Data, 'data' => $at->Data,
'type' => @$at->AttachMimeTag ?: false, 'type' => @$at->AttachMimeTag ?: false,
'name' => $at->getName(), 'name' => $at->getName(),
'encoding' => @$at->AttachEncoding ?: false,
); );
} }
return $files; return $files;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment