Skip to content
Snippets Groups Projects
  1. Jul 31, 2018
    • aydreeihn's avatar
      Mailer Typo: · 7253baf2
      aydreeihn authored
      This commit fixes a mistake where a variable was incorrectly set. This in turn fixes the lint tests.
      7253baf2
  2. Jul 18, 2018
    • aydreeihn's avatar
      Email Recipients Revisited Corrections · 731c9fe9
      aydreeihn authored
      - Clean up/correct notifyCollaborators function
      - Make sure function calls are passing in all needed variables
      - getContact function added to EmailRecipient class to properly set up email notifications
      - Corrections on encoding recipients for thread entries
      731c9fe9
  3. Mar 20, 2018
  4. Feb 25, 2018
    • Peter Rotich's avatar
      Department Referral via email · b7fee361
      Peter Rotich authored
      Add support auto email-based auto-referral. This will happen if an email is
      sent to multiple departments. For example an email with TO: support &  CC:
      billing will result in the ticket getting routed to "support" department and
      "billing" getting a referral of the same ticket. This allows both departments
      to have visibility of the ticket - which is not possible at the moment.
      b7fee361
  5. Mar 18, 2016
  6. Sep 12, 2015
    • Peter Rotich's avatar
      bug: Collaborators notice · f9e9da44
      Peter Rotich authored
      Fix case where collaborators were not being alerted
      Alert admin last on new ticket - just in case admin email is used by an agent.
      f9e9da44
  7. Aug 06, 2015
  8. Aug 04, 2015
  9. Jun 09, 2015
  10. May 21, 2015
  11. Apr 30, 2015
  12. Apr 23, 2015
    • Jared Hancock's avatar
      email: Properly detect bounce message with alternative content · 67127c69
      Jared Hancock authored
      This correctly handles a bounce message with the following layout:
      
      multipart/report; report-type=delivery-status
          multipart/alternative; differences=Content-Type
              text/plain; charset="us-ascii"
              text/html; charset="us-ascii"
          message/delivery-status
          message/rfc822
      67127c69
  13. Apr 01, 2015
  14. Mar 27, 2015
    • Jared Hancock's avatar
      282675dd
    • Jared Hancock's avatar
      email: Some bounce notices actually have rich content · ff27fb2c
      Jared Hancock authored
      Here's an example email structure:
      ```
      multipart/mixed
       - multipart/report; delivery-status
         - multipart/alternative
           - text/plain
           - text/html
         - message/delivery-status
         - message/rfc822
      ```
      
      The previous code would only find the body if the email main headers had:
      Content-Type: multipart/report; report-type="delivery-status". In such a
      case it would scan for a plain/text body.
      
      This patch will scan for the usual body if the scan for the body as usual if
      the report scan did not find anything.
      
      Also, output errors to stderr when running API from the command line
      ff27fb2c
  15. Mar 19, 2015
  16. Jan 24, 2015
  17. Dec 11, 2014
    • Peter Rotich's avatar
      Make threads generic · 84d34e0c
      Peter Rotich authored
      Detach conversation thread from ticket to make it more generic. Any object
      can now have its own thread complete with entry type and attachments.
      84d34e0c
  18. Sep 29, 2014
  19. Aug 29, 2014
  20. Jun 27, 2014
  21. May 29, 2014
  22. May 26, 2014
    • kioan's avatar
      Update class.mailparse.php function splitHeaders · 01209e2f
      kioan authored
      function splitHeaders updated in order to correctly parse mail header lines
      starting with tabs
      01209e2f
    • Jared Hancock's avatar
      mail: Add signals to interact with mail processing · 79f3c6b0
      Jared Hancock authored
      Signals added:
        * mail.received
          Called after the mail is received into the system and before it is
          processed by the mail system. This signal is useful to do header
          injection. Raw message/rfc822 included in 'raw' key in the info
      
        * mail.decoded
          Called after the initial decoding of the message. The header and bodies
          are broken out, however, Unicode decoded may not have been performed
          yet. This signal is useful to affect the interpretation of the message,
          such as TNEF processing, etc.
      
        * mail.processed
          Called after all internal processing is completed. All Unicode
          processing is complete, bounce detection and other mechanisms have
          completed. This signal is useful to do things like attachment scanning
          or content filtering.
      79f3c6b0
  23. May 21, 2014
    • Jared Hancock's avatar
      pipe: Decode address lists names after parsing emails · d6c9ce80
      Jared Hancock authored
      Otherwise, if a decoded email name has a comma in it, for instance
      
      From: =?utf-8?B?RnJ5ZGVubHVuZCBIeW3DuGxsZXIsIEJldHRpbmE=?=
          <bettina.frydenlundhymoller@domain.com>
      
      The address list will be parsed incorrectly since the comma has an ambiguous
      significance. Usually, the personal name would be quoted; however, since it
      is encoded, there is no need to quote it.
      d6c9ce80
  24. May 09, 2014
  25. May 07, 2014
    • Jared Hancock's avatar
      bounce: Handle rfc-1892 style bounce notices · 42b7c57d
      Jared Hancock authored
      Sometimes an MTA may just send back the headers of the original message
      rather than the entire original message. Such an email will have a
      `text/rfc822-headers` part which will be the complete headers of the
      original message.
      
      Without this patch, osTicket will create a new ticket for the bounce message
      rather than attaching the new internal note to the existing ticket.
      
      References:
      https://tools.ietf.org/html/rfc1892
      42b7c57d
  26. May 06, 2014
  27. May 01, 2014
  28. Apr 28, 2014
  29. Apr 02, 2014
  30. Mar 19, 2014
  31. Mar 17, 2014
  32. Mar 13, 2014
  33. Feb 25, 2014
  34. Feb 18, 2014
  35. Feb 13, 2014
Loading