Author Topic: Default reply options for all users  (Read 3255 times)

Offline gin

  • Newbie
  • *
  • Posts: 2
Default reply options for all users
« 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.

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,879
    • SKaero - Custom Roundcube development
Re: Default reply options for all users
« Reply #1 on: July 10, 2015, 10:19:42 AM »
You can add the following to config options to change the default behavior:
Code: [Select]
// 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;

Offline gin

  • Newbie
  • *
  • Posts: 2
Re: Default reply options for all users
« Reply #2 on: July 11, 2015, 12:16:17 AM »
Thank you! I should have looked at the defaults rather than the config sample.