- May 07, 2014
-
-
Jared Hancock authored
-
Jared Hancock authored
Show close date on closed tickets queue Reviewed-By:
Jared Hancock <jared@osticket.com>
-
Peter Rotich authored
Make mail parsing more memory efficient Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Jared Hancock authored
Remove usage of preg_match_all for large strings
-
Peter Rotich authored
bounce: Handle rfc/1892 style bounce notices Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Jared Hancock authored
-
Peter Rotich authored
alerts: Send new note alert to assigned team members Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Jared Hancock authored
-
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
-
Peter Rotich authored
Consider closed date to determine ticket's last activity date. The net effect is closed tickets queue will be sorted by closed date.
-
- May 06, 2014
-
-
Jared Hancock authored
This patch uses a 'StringView' to create a string which is a window of another string. The __toString() method is employed to fetch a lazy copy of the window which can be usually immediately discarded. This is optimal for one-time-use string copies like what is used in the mail parsing.
-
Jared Hancock authored
-
Jared Hancock authored
Previously, the new internal note alert was only sent to the assigned staff member, if any were assigned.
-
- May 05, 2014
-
-
Jared Hancock authored
Previously, there was a bug in the ORM where magic properties would need to be declared in the model class.
-
- May 03, 2014
-
-
Peter Rotich authored
Provide quick prints options that bypasses the print dialog modal
-
Peter Rotich authored
Disable email alert sent to admin when a warning is logged due to ticket rejection e.g when banned email or max open limit is reached.
-
Jared Hancock authored
-
Jared Hancock authored
Conflicts: include/class.orm.php
-
Jared Hancock authored
-
- May 02, 2014
-
-
Jared Hancock authored
The ThreadEntryWidget has a potential cross site scripting (XSS) vulnerability if data was posted directly to the page hosting the widget Vulnerable URLs: view.php, open.php, scp/open.php, scp/tickets.php The content received in the HTTP POST is now correctly escaped when it is echoed back to the user agent.
-
- May 01, 2014
-
-
Peter Rotich authored
Ticket assignment alert can be disabled Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
-
Peter Rotich authored
ban list: Trim new entries and updates via web form Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Jared Hancock authored
-
Jared Hancock authored
-
- Apr 30, 2014
-
-
Peter Rotich authored
tnef: Fix major issue iterating over attar streams Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Jared Hancock authored
The original logic would read the count of attributes in the stream and then read the first attribute in the constructor of TnefAttributeStreamReader. Then the iterator interface would call ::rewind() before iterating to the first item. rewind() set the @pos attribute to zero, which would cause the attribute count (4-byte int) to be interpreted incorrectly as part of the first attribute. The new logic sets the position at 4 after rewind()ing, and does not read the first attribute twice. It also properly detects the end of the attribute stream by the number of attributes advertised as the first four bytes of the stream (read into the @count attribute initially).
-
- Apr 29, 2014
-
-
Jared Hancock authored
-
Peter Rotich authored
storage: Avoid using `strlen` to count bytes Reviewed-By:
Peter Rotich <peter@osticket.com>
-
- Apr 28, 2014
-
-
Jared Hancock authored
-
Jared Hancock authored
Fix wrong ticket count on basic ticket search Reviewed-By:
Jared Hancock <jared@osticket.com>
-
Peter Rotich authored
bad links fixed Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Jared Hancock authored
On validation errors, `$faq` will be set to something non-null, like `false`, but will not be an instance of a Faq article.
-
Jared Hancock authored
For PHP installations that have `mbstring.func_overload` enabled (set to a value including `2`), the `strlen` function will be overloaded to use the `mb_strlen` equivalent. Problematically, the internal encoding of `UTF-8` will be applied to all file content, which will count UTF-8 characters rather than bytes. This will cause the data to be saved correctly; however, the `size` recorded in the %file table will be recorded incorrectly. This patch allows the backend to report the size of the contents saved with the request and provides a failsafe mechanism which will use the mbstring equivalent if available, and the mbstring version is coded to use the `8bit` as the encoding which will prevent reading characters. References: https://github.com/osTicket/osTicket-1.8/issues/552
-
Peter Rotich authored
Basic search is now limited to ticket number, email address and name.
-
NoobPsyBot authored
-
- Apr 25, 2014
-
-
Jared Hancock authored
Show more drop down for users with edit permission Reviewed-By:
Jared Hancock <jared@osticket.com>
-
- Apr 24, 2014
-
-
Peter Rotich authored
Users with edit permission should be able to change ticket owner in line.
-