I'm having some trouble with the command \closing{\closingphrase}.
If \closingphrase is longer (e.g. 'Met vriendelijke groet'), the closing phrase is aligned left and the signature is indented.
This is the correct placing of the elements which conforms to the example in the Koma-script manual.
But if \closingphrase is relatively short (e.g. 'Hoogachtend'), the closing phrase is indented and the signature is aligned left, which looks very strange.
As it is customary in Dutch to end a formal letter with 'Hoogachtend' I'd like to prevent this from happening.
Can anyone explain this behaviour and help me prevent it?
Example of strange alignment
\documentclass[DIN,paper=a4,fontsize=11pt]{scrlttr2}
\usepackage[dutch]{babel}
\def\afzender{Richard Kranendonk}
\def\ondertekening{Cheers}
\setkomavar{signature}{\afzender}
\begin{document}
\begin{letter}
Dear Sir,
This is a minimal test letter.
\closing{\ondertekening,}
\end{letter}
\end{document}

\renewcommand\raggedsignature{\raggedright}. Does it help? – Marco Daniel Jan 05 '14 at 15:36