- Jul 31, 2018
-
-
aydreeihn authored
This commit fixes a mistake where a variable was incorrectly set. This in turn fixes the lint tests.
-
- Jul 18, 2018
-
-
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
-
- Mar 20, 2018
-
-
Peter Rotich authored
This commit addresses a few lint related issue - notable one is ignoring undefined methods within source code comments.
-
- Feb 25, 2018
-
-
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.
-
- Mar 18, 2016
-
-
Jared Hancock authored
This commit attempts to remove all coding standard warnings emitted by PHP 7.0.
-
- Sep 12, 2015
-
-
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.
-
- Aug 06, 2015
-
-
Jared Hancock authored
-
- Aug 04, 2015
-
-
Jared Hancock authored
-
- Jun 09, 2015
-
-
Peter Rotich authored
-
- May 21, 2015
-
-
Peter Rotich authored
The setting is no longer ticket thread specific. Disabling html is now system wide setting for disable-able textarea widgets as well as email correspondence.
-
- Apr 30, 2015
-
-
Jared Hancock authored
-
- Apr 23, 2015
-
-
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
-
- Apr 01, 2015
-
-
Jared Hancock authored
-
- Mar 27, 2015
-
-
Jared Hancock authored
-
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
-
- Mar 19, 2015
-
-
Jared Hancock authored
This also adjusts the logic internally to lookup the priority by the priority_urgency field, which should be constrained to follow priority precedence over the priority_id field.
-
- Jan 24, 2015
-
-
Peter Rotich authored
-
- Dec 11, 2014
-
-
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.
-
- Sep 29, 2014
-
-
Peter Rotich authored
This addresses cases where incoming emails doesn't include charset and mailbox may include non-ascii characters.
-
- Aug 29, 2014
-
-
Jared Hancock authored
-
- Jun 27, 2014
-
-
Jared Hancock authored
-
- May 29, 2014
-
-
Jared Hancock authored
-
- May 26, 2014
-
-
kioan authored
function splitHeaders updated in order to correctly parse mail header lines starting with tabs
-
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.
-
- May 21, 2014
-
-
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.
-
- May 09, 2014
-
-
Jared Hancock authored
-
- May 07, 2014
-
-
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
-
- May 06, 2014
-
-
Jared Hancock authored
-
- May 01, 2014
-
-
Jared Hancock authored
-
- Apr 28, 2014
-
-
Jared Hancock authored
-
- Apr 02, 2014
-
-
Jared Hancock authored
Such images are attached to emails by Lotus Notes. Technically, these images are valid attachments, although historically osTicket would reject them
-
- Mar 19, 2014
-
-
Jared Hancock authored
-
- Mar 17, 2014
-
-
Peter Rotich authored
-
- Mar 13, 2014
-
-
Jared Hancock authored
-
- Feb 25, 2014
-
-
Peter Rotich authored
email. This is necessary to eliminate possible loop when an email is sent to a virtual/aliased address. Not all mail servers add delivered-to header!
-
- Feb 18, 2014
-
-
Jared Hancock authored
If a non-text attachment specifies a charset in the content-type header, don't transcode the content before saving it to the database. This can corrupt attachments which have a header like the following: Content-Type: application/pdf; charset=UTF-8 Since a PDF contains binary data, coercing it to UTF-8 encoding will drop characters not valid in UTF-8 and will corrupt the attachment data.
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
-
- Feb 13, 2014
-
-
Michael Morrison authored
-