Author Topic: Fatal error: when using include_host_config  (Read 3672 times)

Offline Perdida

  • Newbie
  • *
  • Posts: 1
Fatal error: when using include_host_config
« on: November 10, 2009, 03:10:23 PM »
Roundcube: 0.3.1
OS: CentOS5
HTTP: Apache 2.2.13
IMAP: UWash and Dovecot

I'm trying to set up RC to access 2 imap servers.  I can connect to both servers and see my INBOX's, but am having trouble viewing Folders when connecting to the UWash server.  If I set up main.inc.php for just the UWash server, using the values in kcc.main.inc.php, I can select the folder tab too see my folders.  When I modify as follows I get the following error:

"Fatal error: Maximum execution time of 120 seconds exceeded in /usr/local/apache2/htdocs/roundcubemail-0.3.1/program/include/rcube_imap.php on line 2941"


From main.inc.php:

.
.
.
$rcmail_config['default_host'] = array(
        'mail.jci.tju.edu'=>'KCC Production Mail Client',
        'nico.kcc.tju.edu'=>'KCC Development Mail Client'
);
.
.
.
$rcmail_config['include_host_config'] = array(
  'mail.jci.tju.edu' => 'kcc.main.inc.php',
  'nico.kcc.tju.edu' => 'nico.main.inc.php'
);
.
.


kcc.main.inc.php :

$rcmail_config['smtp_server'] = 'mail.jci.tju.edu';
$rcmail_config['imap_root'] = '~/imap';
$rcmail_config['imap_delimiter'] = '/';
?>

nico.main.inc.php:

$rcmail_config['smtp_server'] = 'nico.kcc.tju.edu';
$rcmail_config['imap_root'] = null;
$rcmail_config['imap_delimiter'] = null;
?>