Hard-wrap message headers according to RFC

release-0.6
thomascube 16 years ago
parent ffa6c1011c
commit 762a699dc7

@ -180,7 +180,7 @@ class rcube_mail_mime extends Mail_mime
}
}
$input[$hdr_name] = $hdr_value;
$input[$hdr_name] = wordwrap($hdr_value, 990, "\n", true); // hard limit header length
}
return $input;

@ -226,7 +226,7 @@ if (!empty($identity_arr['bcc']))
$headers['Bcc'] = ($headers['Bcc'] ? $headers['Bcc'].', ' : '') . $identity_arr['bcc'];
// add subject
$headers['Subject'] = trim(get_input_value('_subject', RCUBE_INPUT_POST, FALSE, $message_charset));
$headers['Subject'] = trim(get_input_value('_subject', RCUBE_INPUT_POST, TRUE, $message_charset));
if (!empty($identity_arr['organization']))
$headers['Organization'] = $identity_arr['organization'];

Loading…
Cancel
Save