Author Topic: rows per page 200 maximum? why i where can i change that setting  (Read 13631 times)

Offline chakytoriens

  • Newbie
  • *
  • Posts: 2
Rows per page 200 maximum? where can i change that setting please i need to move thousands of emails to another folder and while horde is good at doing so i feel it's more slow than roundcube.

I am a root user on a new and good 8 core processor so i know it can handle 1,000 emails per row instead of just 200.

Thaks for the help.

Offline ABerglund

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 673
Re: rows per page 200 maximum? why i where can i change that setting
« Reply #1 on: March 13, 2014, 06:48:19 PM »
The maximum is set in the config file. Either main.inc.php for version 0.9.x and older, or config.inc.php for version 1.0-rc.

The parameter to change is:

// don't let users set pagesize to more than this value if set
$config['max_pagesize'] = 200;

In 0.9.x and older, just change the parameter in main.inc.php. In 1.0-rc, you'll need to add the line above to your config.inc.php and set the value appropriately.

FWIW, I also have mine set to 1000. Hasn't hurt a thing.
Arne Berglund
SysAdmin, Internet Services
Lane Education Service District
Eugene, OR, USA

Offline chakytoriens

  • Newbie
  • *
  • Posts: 2
Re: rows per page 200 maximum? why i where can i change that setting
« Reply #2 on: March 13, 2014, 08:16:53 PM »

Worked like a charm, and guess i have version 0.9.x or older. Thanks!

The maximum is set in the config file. Either main.inc.php for version 0.9.x and older, or config.inc.php for version 1.0-rc.

The parameter to change is:

// don't let users set pagesize to more than this value if set
$config['max_pagesize'] = 200;

In 0.9.x and older, just change the parameter in main.inc.php. In 1.0-rc, you'll need to add the line above to your config.inc.php and set the value appropriately.

FWIW, I also have mine set to 1000. Hasn't hurt a thing.