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

Accept attachments from email messages

if the References or In-Reply-To header matches in a way that continues a
ticket's thread, include the attachments in the thread if allowed by the
system settings.
parent 1cbc6f69
No related branches found
No related tags found
No related merge requests found
......@@ -528,6 +528,9 @@ Class ThreadEntry {
'reply_to' => $this,
);
if (isset($mailinfo['attachments']))
$vars['attachments'] = $mailinfo['attachments'];
$body = $mailinfo['message'];
// Disambiguate if the user happens also to be a staff member of the
......
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