- Don't try to match identity on reply when user has only one

release-0.6
alecpl 14 years ago
parent a9d6e7b30a
commit bd2e33f5f9

@ -460,7 +460,7 @@ function rcmail_compose_header_from($attrib)
$from_id = get_input_value('_from', RCUBE_INPUT_POST);
else if (!empty($_SESSION['compose']['param']['from']))
$from_id = $_SESSION['compose']['param']['from'];
else {
else if (count($user_identities) > 1) {
$return_path = $MESSAGE->headers->others['return-path'];
// Set identity

Loading…
Cancel
Save