- Oct 09, 2013
-
-
Jared Hancock authored
This patch changes the behavior of the mailer to support a 'text' option to hint if the message is a text-only message. If so, no HTML processing will be performed on the message and a text-only email (with no inline attachments) will be emitted and sent.
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
Ticket notice and ticket auto-reply should not be formatted inside a table since the %{message} or %{response} should be allowed to flow freely in the email rather than be crammed inside the table.
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
Process inline attachments in thread entry and support inline images in piped emails Support inline images across the system, with draft support Migrate to a single attachment table That way we don't need a new table for everything we need to attach an inline image to (like a signature, for instance) Add richtext support for internal notes Implement images on site pages * Image paste in Redactor * Make non-local images optional * Placeholder for non-local images * Fix local image download hover * Don't re-attach inline images
-
Jared Hancock authored
Include changes from 1.7.2 Conflicts: main.inc.php
-
- Oct 07, 2013
-
-
Jared Hancock authored
-
Peter Rotich authored
Change PDF print to show custom logo Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Jared Hancock authored
If the GD extension is not available for the PHP installation, then use a copy of the default client-site logo with the alpha channel removed.
-
Peter Rotich authored
Crazy performance penalty scanning blob tables Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Peter Rotich authored
Better converting from ticket thread to PDF Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Peter Rotich authored
Die with internal server error on misconfiguration Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Peter Rotich authored
Fix parsing of attachments Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Peter Rotich authored
Use base64 encoding for text version of emails Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Jared Hancock authored
Assume that text in the database is encoded in UTF-8 and assume that it is HTML text and the entities should be decoded prior to display in the PDF. Fixes #756
-
- Oct 06, 2013
-
-
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
-
- Oct 04, 2013
-
-
Jared Hancock authored
Or internal server (database) outage
-
Jared Hancock authored
Some mail clients and mail brokers do not properly handle quoted-printable encoding, used in osTicket outgoing emails. Oddly, the end mail clients render the email with trailing equal signs (=) at the end of every line, where it was added due to QP encoding. References: http://www.osticket.com/forums/forum/osticket-1-7-latest-release/troubleshooting-and-problems-aa/10708-solved-microsoft-exchange-internet-mail-lines-end-with RFC 2045 section 6.7, http://www.ietf.org/rfc/rfc2045.txt
-
Jared Hancock authored
If the body is declared with inline disposition and no filename, the parser engine would create an incorrect attachments list.
-
- Sep 30, 2013
-
-
Peter Rotich authored
Record message-id's for rejected emails Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Jared Hancock authored
Limit admin alerts to logged messages. Reviewed-By:
Jared Hancock <jared@osticket.com>
-
Peter Rotich authored
Forbid empty reply separators Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Peter Rotich authored
Expose fail count to shell environment Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Jared Hancock authored
Also, run the tests in the packager. The packager will automatically run the regression test suite prior to packaging a release. The package will not build if there is at least one fail from the regression tests.
-
Peter Rotich authored
Allow deployment of setup/ Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Jared Hancock authored
Useful for initial installs, where deployment of the `setup/` folder is required for the initial install. Thereafter, deployment can be run without the setup option so that the rest of the codebase can be maintained (already supported)
-
Peter Rotich authored
Disambiguate version string when running off of git Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Jared Hancock authored
Message id tracking revisited Reviewed-By:
Jared Hancock <jared@osticket.com>
-
Peter Rotich authored
Disable Kerberos and NTLM auth for mail fetch Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Peter Rotich authored
Implement RFC5987 for fetched attachments Reviewed-By:
Peter Rotich <peter@osticket.com>
-
Peter Rotich authored
-
Jared Hancock authored
If it only contains whitespace, it is also invalid
-
Jared Hancock authored
If a user is running off of the develop branch, disambiguate what the version they are running.
-
- Sep 29, 2013
-
-
Peter Rotich authored
-