Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
osticket
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
docker
osticket
Commits
bbc9382c
Commit
bbc9382c
authored
10 years ago
by
Jared Hancock
Browse files
Options
Downloads
Patches
Plain Diff
Add release notes for v1.8.4
parent
06f2a7e7
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
WHATSNEW.md
+23
-1
23 additions, 1 deletion
WHATSNEW.md
include/class.mailer.php
+1
-1
1 addition, 1 deletion
include/class.mailer.php
with
24 additions
and
2 deletions
WHATSNEW.md
+
23
−
1
View file @
bbc9382c
osTicket v1.8.4
===============
### Improvements
*
Fix misleading and incorrect custom form management pages (#919)
*
Fix linked external image tag corruption (#936)
*
Fix multiple [Show Images] button for external images in client interface (e4b721c)
*
Properly handle email address personal names with commas (#940)
*
Organizations can define a website now (13312dd)
*
Correctly handle email headers with leading tabs (RFC 2047) (#895, #953)
*
Implement
`%{ticket.user.x}`
for email templates and canned responses (#966)
*
Handle shameful
`X-AMAZON-MAIL-RELAY-TYPE`
invented by Amazon
*
Issue summary field type must have associated data (#987)
*
Fix
`%{recipient.ticket_link}`
for new message auto response (#989)
*
Fix corruption of
`%{company.name}`
on new ticket notice (#1002)
*
Fix signal data byref (#1037)
*
Correctly handle email priority headers (#491)
*
Fix mail header newline corruption with the Suhosin extension (#442)
### Performance and Security
*
Fix XSS vulnerability in the phone number widget (#1025)
*
Fix several XSS vulnerabilities (#1025)
osTicket v1.8.3
osTicket v1.8.3
===============
===============
### Enhancements
### Enhancements
*
Support filtering based on help topic (#728)
*
Support filtering based on help topic (#728)
*
Embedded images (
[
rfc2397
](
http://www.ietf.org/rfc/rfc2397.txt
)
) are correctly supported (#740)
*
Embedded images (
[
rfc2397
](
http://www.ietf.org/rfc/rfc2397.txt
)
) are correctly supported (#740)
*
Allow regular staff members to show assigned open tickets on open queue (#751)
*
Allow regular staff members to show assigned open tickets on open queue (#751)
*
Support
Handle
[
rfc1892
](
http://www.ietf.org/rfc/rfc1892.txt
)
style bounce notices (#871)
*
Support
[
rfc1892
](
http://www.ietf.org/rfc/rfc1892.txt
)
style bounce notices (#871)
*
Disable autocomplete on CAPTCHA fields (#821)
*
Disable autocomplete on CAPTCHA fields (#821)
*
Show
`closed`
date on the closed ticket queue (#865)
*
Show
`closed`
date on the closed ticket queue (#865)
*
Departments support assignment to members only (#862)
*
Departments support assignment to members only (#862)
...
...
This diff is collapsed.
Click to expand it.
include/class.mailer.php
+
1
−
1
View file @
bbc9382c
...
@@ -155,7 +155,7 @@ class Mailer {
...
@@ -155,7 +155,7 @@ class Mailer {
// https://github.com/osTicket/osTicket-1.8/issues/202
// https://github.com/osTicket/osTicket-1.8/issues/202
// http://pear.php.net/bugs/bug.php?id=12032
// http://pear.php.net/bugs/bug.php?id=12032
// http://us2.php.net/manual/en/function.mail.php#97680
// http://us2.php.net/manual/en/function.mail.php#97680
if
((
extension_loaded
(
'suhosin'
)
||
constant
(
"SUHOSIN_PATCH"
))
if
((
extension_loaded
(
'suhosin'
)
||
defined
(
"SUHOSIN_PATCH"
))
&&
!
$this
->
getSMTPInfo
())
&&
!
$this
->
getSMTPInfo
())
$mime
=
new
Mail_mime
(
"
\n
"
);
$mime
=
new
Mail_mime
(
"
\n
"
);
else
else
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment