Skip to content
Snippets Groups Projects
  1. Dec 09, 2013
  2. Nov 30, 2013
  3. Nov 20, 2013
    • Jared Hancock's avatar
      email: Accept inline body with disposition params · 2b13adc5
      Jared Hancock authored
      A mail client may indicate a header parameter (such as Novell Groupwise,
      which may add something like
      
      Content-Disposition: inline; modification-time: "Thu ..."
      
      ) Previously, the system would not consider the content to be a candidate
      for the email body, because it has parameters to the content-disposition
      header.
      
      This patch will still consider the part to be a candidate for the body if
      the mime types match and no filename is found in the content-disposition
      parameters.
      2b13adc5
  4. Nov 19, 2013
  5. Nov 05, 2013
    • Jared Hancock's avatar
      Fix filter issue where negative logic prevents matches · 1f5694c1
      Jared Hancock authored
      The quickList() method will attempt to ask the database to find filters that
      might match the incoming ticket information. The idea is that MySQL is
      likely faster than PHP. The problem is that it assumes positive logic is
      being utilized.
      
      This patch adds all filters with at least one rule with dn_contain
      (does-not-contain) or not_equal (not-equal)
      1f5694c1
  6. Oct 31, 2013
    • Jared Hancock's avatar
      Fix parsing issue in strtotime() · b9ab14c1
      Jared Hancock authored
      PHP can't discern the difference between d/m/Y and m/d/Y when just the date
      is submitted to strtotime(). Unfortunately, strptime() is not available
      until PHP 5.1.0. This patch forces datepickers to change their values to
      YYYY-MM-DD upon submission to disambiguate parsing issues.
      
      Fixes #832
      b9ab14c1
  7. Oct 30, 2013
    • Jared Hancock's avatar
      Use system date format for datepicker · ad9935b1
      Jared Hancock authored
      Previously the American date format (m/d/Y) was used exclusively for
      formatting dates in the datepicker widget. This patch enables the widget to
      be formatted based on the format set in the admin panel.
      
      Fixes #829
      ad9935b1
  8. Oct 29, 2013
  9. Oct 28, 2013
    • Jared Hancock's avatar
      Disambiguate Reply-To from In-Reply-To mailer opts · d36fea7b
      Jared Hancock authored
      Previous the options defined for the Mailer::send() function were confusing
      when sending an In-Reply-To header
      d36fea7b
    • Jared Hancock's avatar
      Better email headers for In-Reply-To and References · ca26a1a6
      Jared Hancock authored
      Previously, the References header emitted by the system for new thread
      entry auto-responses and alerts included the message-id for which the email
      was a reply in the `References` header. This patch corrects the issue by
      placing the reply message-id in the In-Reply-To header, and constructs a
      correct References header.
      
      That is, if available, the References header received in the email that was
      used to create the thread entry is appended to the message-id the email is
      actually in reply to. This is the expected usage of the References header.
      ca26a1a6
  10. Oct 24, 2013
  11. Oct 23, 2013
  12. Oct 22, 2013
  13. Oct 17, 2013
  14. Oct 11, 2013
  15. Oct 09, 2013
    • Jared Hancock's avatar
      Mark tickets overdue which have no SLA · e5682351
      Jared Hancock authored
      If a ticket has a due date and does not have an SLA set, the ticket would
      never transition to overdue. This patch addresses an SQL flaw preventing the
      ticket from being transitioned.
      
      Fixes #757
      e5682351
  16. Oct 07, 2013
  17. Oct 06, 2013
    • Jared Hancock's avatar
      Crazy performance penalty scanning blob tables · 60fcf00c
      Jared Hancock authored
      When scanning the file_chunk table for orphaned file chunks that can be
      deleted, apparently, MySQL will read (at least part of) the blob data from
      the disk. For databases with lots of large attachments, this can take
      considerable time. Considering that it is triggered from the autocron and
      will run everytime the cron is run, the database will spend considerable
      time scanning for rows to be cleaned.
      
      This patch changes the orphan cleanup into two phases. The first will search
      just for the pk's of file chunks to be deleted. If any are found, then the
      chunks are deleted by the file_id and chunk_id, which is the primary key of
      the table.
      
      The SELECT query seems to run at least 20 times faster than the delete
      statement, and DELETEing against the primary key of the blob table should
      be the fastest possible operation. Somehow, both queries required a full
      table scan; however, because the SELECT statement is explictly only
      interested in two fields, it is more clear to the query optimizer that the
      blob data should not be scanned.
      
      References:
      http://stackoverflow.com/q/9511476
      60fcf00c
  18. Oct 04, 2013
  19. Sep 30, 2013
  20. Sep 29, 2013
  21. Sep 27, 2013
  22. Sep 26, 2013
    • Jared Hancock's avatar
      Disable Kerberos and NTLM auth for mail fetch · 8b0085dd
      Jared Hancock authored
      On some configurations of PHP and remote mail servers, Kerberos and NTLM
      challenge response authentication could be possibly attempted. This is
      essentially futile and potentially fatal for osTicket mail fetching, as the
      system is currently designed for username and password authentication only.
      
      This patch disables challenge and response authentication for PHP versions
      5.3.2 and newer, which support the fix.
      
      This patch also consistently encodes mailbox names according to the rfc 2060
      for IMAP.
      8b0085dd
Loading