mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
Smime W.I.P:
- Remove initial content-type header - Do not set flowed if it's multipart/signed
This commit is contained in:
parent
9427b49fee
commit
d891035fbe
@ -545,7 +545,7 @@ class Mailer extends Horde_Mime_Mail
|
||||
|
||||
try {
|
||||
// no flowed for encrypted messages
|
||||
if (!isset($flowed)) $flowed = $this->_body && $this->_body->getType() != 'multipart/encrypted';
|
||||
if (!isset($flowed)) $flowed = $this->_body && !in_array($this->_body->getType(), array('multipart/encrypted', 'multipart/signed'));
|
||||
|
||||
// check if flowed is disabled in mail site configuration
|
||||
if (($config = Config::read('mail')) && $config['disable_rfc3676_flowed'])
|
||||
@ -1014,6 +1014,11 @@ class Mailer extends Horde_Mime_Mail
|
||||
$this->getBasePart();
|
||||
}
|
||||
|
||||
//It is essential to remove content-type header as later on
|
||||
//horde setHeaderOb would not replace it with correct one if
|
||||
//there's something set.
|
||||
$this->removeHeader('content-type');
|
||||
|
||||
$smime = new Mail\Smime();
|
||||
|
||||
if ($type == Mail\Smime::TYPE_SIGN || $type == Mail\Smime::TYPE_SIGN_ENCRYPT)
|
||||
|
Loading…
Reference in New Issue
Block a user