Handle INLINE attachments not only ATTACHMENT

XMLWordPrintable

      In AbstractMessageHandler.java is a function named createAttachmentsForMessage();

      It's like this:

      ...
      if (Part.ATTACHMENT.equalsIgnoreCase(disposition)) //there may be non-attachment parts (eg html email) Fixes JRA-1842

      { createAttachmentWithPart(part, issue); }

      ...

      It handles only the ATTACMENT type attachments, but it shuld handle the INLINE attachments too.

      Like this:
      if (Part.ATTACHMENT.equalsIgnoreCase(disposition)||Part.INLINE.equalsIgnoreCase(disposition)) //there may be non-attachment parts (eg html email) Fixes JRA-1842

      { createAttachmentWithPart(part, issue); }

        1. attachmentfix.jar
          5 kB
        2. screenshot-1.jpg
          screenshot-1.jpg
          110 kB
        3. Sent.eml
          925 kB

            Assignee:
            BrianH
            Reporter:
            TothJ
            Votes:
            1 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved: