Atlassian generated icons and avatars are removed when part of an email attachment
Platform Notice: Cloud - This article applies to Atlassian products on the cloud platform.
Summary
Jira generated system icons or custom uploaded icons and avatars using the PNG file format have a unique header added to the file metadata or file header. This ensures Jira icons that may end up in email notifications are not added unnecessarily to issues when an email reply is sent and they are in the attachments. There is currently no system notification or feedback to indicate that the attachment was removed due to the presence of the header, which can cause confusion as to why an attachment was not added to a ticket.
The following feature request tracks an improvement to notify users if attachments have been removed due to the presence of this header:
Environment
Jira Service Management Cloud incoming mail channels. Both system and custom mail channels are impacted.
Diagnosis
This may be noticeable where icons or avatars are added to an email attachment that is processed by Jira Service Management. The issue creation or comment from the email is processed normally, however one or more attachments may be missing with no indication as to what happened to them. If the missing attachments are PNG files, this article covers how to identify if they are flagged as Jira generated images and solutions to fix them.
Cause
The header that is inserted into the file data is jira-system-image-type. There are multiple methods to view file metadata or file header information and most of it will depend on your operating system. Aside from tools on your operating system, there are online tools that can be used to view file metadata, which can be found using any number of search engines. In this example I will use a command line tool that should be present in most Mac OS and Linux/Unix/BSD systems and is also available to be installed for Windows systems called strings:
$ strings impacted_file.png
IHDR
tEXtjira-system-image-type
avatar
IDATx
y1!&
rmXv>
D5p]d
IEND
In the above example we have used strings against a file called impacted_file.png and can see the presence of the jira-system-image-type on line two of the output. The rest of the output for our purposes can be ignored.
Solution
If the file that you are trying to add to an issue via email attachments matches the above criteria (PNG file with jira-system-image-type in its header), there are two options to add the file to a ticket:
- The file can be uploaded via the Jira Issue view or via the Jira Service Management customer portal to the ticket
- The file can be exported using most image viewers to either a different file format (ie JPEG) or exported to PNG again, which should remove the header and allow the file to be added as an attachment via email
The strings tool can be used on the exported file to confirm that the header has been removed. If you are having an issue where attachments are not being added to tickets and the attached file does not meet the criteria described here, please contact support should you require further assistance in troubleshooting the issue.