Roundcube Community Forum

News and Announcements => General Discussion => Topic started by: gin on July 10, 2015, 06:52:32 AM

Title: Default reply options for all users
Post by: gin on July 10, 2015, 06:52:32 AM
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.
Title: Re: Default reply options for all users
Post by: SKaero on July 10, 2015, 10:19:42 AM
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;
Title: Re: Default reply options for all users
Post by: gin on July 11, 2015, 12:16:17 AM
Thank you! I should have looked at the defaults rather than the config sample.