- Jul 14, 2016
-
-
Jared Hancock authored
The ThreadEntry::normalizeFileInfo() method is called from ::create(), but before the thread entry is saved. Therefore, the ::getThread() and ::getObject() methods will likely not return a valid object for posting the thread message.
-
- May 12, 2016
-
-
Peter Rotich authored
Fix a bug where it was impossible to disable ALL collaborators Change recipients active/total count on update
-
- Apr 19, 2016
-
-
Jared Hancock authored
-
- Apr 14, 2016
-
-
Jared Hancock authored
-
- Apr 13, 2016
-
-
Jared Hancock authored
This commit attempts to remove some of the confusing and redundant code to attach files to thread entries and replace it with a single code base. It also attempts to remove and error where a single attachment might be attached to a new thread entry multiple times. Lastly, it removes the insert followed by an update for emails with inline images. This should improve performance processing emails as only one trip to the database is now necessary for thread entries with inline images.
-
- Mar 25, 2016
-
-
Peter Rotich authored
-
Jared Hancock authored
This pass also makes a stride at adding correct punctuation and making error phrases consistent.
-
- Mar 18, 2016
-
-
Jared Hancock authored
Previously, the create method was used to create a new instance of an orm model (which would later result in an INSERT when persisted); however, some classes require or utilize varying parameters to their create() method, which PHP7 considers an error. Methods in subclasses must be defined with a calling signature compatible with the parent class. This patch shifts the concept of model creation to the constructor. Now, the constructor of ORM models is required to be compatible with that of ModelBase class. Now that most models do not define a constructor, this is much easier to control, and much more logical. Also, remove an issue where assignments on a relationship field to an instance of a super class of the foreign model would raise an error. This was previously addressed by re-classing the instance in the ModelInstanceManager::getOrBuild(); however that design would create multiple instances of the same object in memory, which defeats one of the primary design concepts of the ORM. This patch addresses the issue by allowing super-classes of the declared foreign model in relationship assignments.
-
Jared Hancock authored
This commit attempts to remove all coding standard warnings emitted by PHP 7.0.
-
- Mar 17, 2016
-
-
Peter Rotich authored
Let textarea widgets parse and clean input based on configured text format. Add cleanup routine to ThreadEntryBody Clean response/note inputs Conflicts: include/class.forms.php include/class.ticket.php
-
- Mar 01, 2016
-
-
Peter Rotich authored
-
- Jan 07, 2016
-
-
Peter Rotich authored
This is commit reverts prior commit to prevent email loops by dead-banning alerts and auto-responses based on recent communication with the end user.
-
- Nov 16, 2015
-
-
Peter Rotich authored
Add a global option to disable avatars on thread correspondence . Agent's and user's profiles will still show an avatars.
-
Peter Rotich authored
Add a preference option to set the sort order of the thread entries in DESC or ASC order. * System Default order is ASC * Auto-scroll is disabled when sort order is set to DESC.
-
Peter Rotich authored
Add preference to agent's profile to enable relative time use.
-
Peter Rotich authored
Let textarea widgets parse and clean input based on configured text format. Add cleanup routine to ThreadEntryBody Clean response/note inputs
-
- Nov 12, 2015
-
-
Peter Rotich authored
Make sure the references are valid for the email recipient.
-
- Nov 03, 2015
-
-
Peter Rotich authored
This is necessary to differentiate true system notes vs. notes made by a deleted agent or collaborator.
-
- Nov 02, 2015
-
-
Peter Rotich authored
getObject should be used instead.
-
- Sep 28, 2015
-
-
Jared Hancock authored
-
Jared Hancock authored
Disable sorting on ThreadEntry::email_info__mid lookups for email processing which results in an on-disk temporary table.
-
Jared Hancock authored
-
- Sep 22, 2015
-
-
Jared Hancock authored
-
- 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.
-
Jared Hancock authored
This patch changes the way the thread entry type and other properties are determined by using the userClass determined in the Mailer::decodeMessageId method which is preferred over the older heuristic methodology using the `From` email address alone.
-
- Aug 19, 2015
-
-
Jared Hancock authored
-
- Aug 18, 2015
-
-
Jared Hancock authored
Only send one autoresponse to the same user for new messages sent in a five minute window per thread. This will stop looping because of bounces and OoO notifications not flagged as autoreplies
-
- Aug 17, 2015
-
-
Peter Rotich authored
Redirect to recent queue / listing on transfer or assign
-
- Aug 10, 2015
-
-
Jared Hancock authored
-
- Aug 07, 2015
-
-
Jared Hancock authored
-
- Aug 04, 2015
-
-
Jared Hancock authored
And two flags, one which signals that stored HTML is correctly balanced and does not need to be balanced when rendered in the ticket view. The second is used to signal messages received from collaborators. Additionally, this patch fixes showing external inline images (via the [Show Images] button) when clicked.
-
Jared Hancock authored
-
- Jul 30, 2015
-
-
Jared Hancock authored
Initially, include support only for Gravatar
-
- Jul 21, 2015
-
-
Jared Hancock authored
-
- Jul 13, 2015
-
-
Peter Rotich authored
-
- Jul 10, 2015
-
-
Jared Hancock authored
-
- Jul 08, 2015
-
-
Jared Hancock authored
-
Jared Hancock authored
getVar() is now called first, then object properties and array properties are considered, and then getTag() is considered if none of the other options work. This allows for more predictable results using the variable replacement system, and allows ::getVar() to override every other means to use variables in email templates.
-
- Jun 23, 2015
-
-
Peter Rotich authored
This adds the concept of independent multi-thread rendering
-
Jared Hancock authored
-