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.
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.
Worked like a charm, and guess i have version 0.9.x or older. Thanks!
Quote from: ABerglund 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.