Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
Zvonimir
ISPConfig 3
Commits
101ed23c
Commit
101ed23c
authored
Feb 06, 2014
by
Marius Cramer
Browse files
Removed Bcc header from mailer class
parent
93ef0067
Changes
1
Hide whitespace changes
Inline
Side-by-side
interface/lib/classes/ispcmail.inc.php
View file @
101ed23c
...
...
@@ -794,7 +794,6 @@ class ispcmail {
$mail_content
=
'Subject: '
.
$enc_subject
.
$this
->
_crlf
;
$mail_content
.
=
'To: '
.
$this
->
getHeader
(
'To'
)
.
$this
->
_crlf
;
if
(
$this
->
getHeader
(
'Bcc'
)
!=
''
)
$mail_content
.
=
'Bcc: '
.
$this
->
_encodeHeader
(
$this
->
getHeader
(
'Bcc'
),
$this
->
mail_charset
)
.
$this
->
_crlf
;
if
(
$this
->
getHeader
(
'Cc'
)
!=
''
)
$mail_content
.
=
'Cc: '
.
$this
->
_encodeHeader
(
$this
->
getHeader
(
'Cc'
),
$this
->
mail_charset
)
.
$this
->
_crlf
;
$mail_content
.
=
implode
(
$this
->
_crlf
,
$headers
)
.
$this
->
_crlf
.
(
$this
->
_is_signed
==
false
?
$this
->
_crlf
:
''
)
.
$this
->
body
;
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment