Roundcube Community Forum

 

Default reply options for all users

Started by gin, July 10, 2015, 06:52:32 AM

Previous topic - Next topic

gin

Hello, is there a way to set "start new message above the quote" by default for all my users? The default seems to be "below". (Really, whyyy?) There doesn't seem to be any such setting in the config.

SKaero

You can add the following to config options to change the default behavior:
// When replying:
// -1 - don't cite the original message
// 0  - place cursor below the original message
// 1  - place cursor above original message (top posting)
$config['reply_mode'] = 0;

// By default the signature is placed depending on cursor position (reply_mode).
// Sometimes it might be convenient to start the reply on top but keep
// the signature below the quoted text (sig_below = true).
$config['sig_below'] = false;

gin

Thank you! I should have looked at the defaults rather than the config sample.