Hello,
SVN 460/461 has the following bug:
When composing new mail, the priority dropdownlists misses a default value, so the first (lowest priority) is used.
I've fixed this by changeing line 772 in file
/program/steps/mail/compose.inc:
from
771: $out = $form_start ? "$form_start\n" : ''; 772: $out .= $selector->show($sel); 773: $out .= $form_end ? "\n$form_end" : '';
to the following
771: $out = $form_start ? "$form_start\n" : ''; 772: $out .= $selector->show(rcube_label('normal')); 773: $out .= $form_end ? "\n$form_end" : '';
-- René