Author Topic: Problem with default address book after update  (Read 2806 times)

Offline apolex

  • Newbie
  • *
  • Posts: 1
Problem with default address book after update
« on: July 25, 2013, 03:05:01 AM »
I updated my version 0.8.1 to 0.9.2.
When I try to access my address book, I get the error: SERVICE CURRENTLY NOT AVAILABLE! Error No. [700]
In my errors log I get: [25-Jul-2013 00:51:05 -0600]: PHP Error: Addressbook source () not found! in /home1/user/public_html/roundcubemail/program/include/rcmail.php on line 238 (GET /post/?_task=addressbook)

I have no ldap configured, just the contacts in mysql

Any ideas?

My main.inc.php looks like (without any comments):

<?php
/*
 +-----------------------------------------------------------------------+
 | Main configuration file                                               |
 |                                                                       |
 | This file is part of the RoundCube Webmail client                     |
 | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
 | Licensed under the GNU GPL                                            |
 |                                                                       |
 +-----------------------------------------------------------------------+
*/
$rcmail_config = array();
$rcmail_config['debug_level'] = 1;
$rcmail_config['enable_caching'] = true;
$rcmail_config['message_cache_lifetime'] = '10d';
$rcmail_config['auto_create_user'] = false;
$rcmail_config['default_host'] = 'mail.apolex.ch';
$rcmail_config['default_port'] = 143;
$rcmail_config['username_domain'] = 'apolex.ch';
$rcmail_config['mail_domain'] = '%d = apolex.ch';
$rcmail_config['virtuser_file'] = '';
$rcmail_config['virtuser_query'] = '';
$rcmail_config['smtp_server'] = 'mail.apolex.ch';
$rcmail_config['smtp_port'] = 26;
$rcmail_config['smtp_user'] = '%u';
$rcmail_config['smtp_pass'] = '%p';
$rcmail_config['smtp_auth_type'] = '';
$rcmail_config['smtp_helo_host'] = '';
$rcmail_config['smtp_log'] = true;
$rcmail_config['list_cols'] = array('subject', 'from', 'date', 'size', 'flag', 'attachment');
$rcmail_config['skin_path'] = 'skins/default/';
$rcmail_config['skin_include_php'] = false;
$rcmail_config['temp_dir'] = 'temp/';
$rcmail_config['log_dir'] = 'logs/';
$rcmail_config['session_lifetime'] = 10;
$rcmail_config['ip_check'] = false;
$rcmail_config['double_auth'] = false;
$rcmail_config['des_key'] = 'rcmail-!24ByteDESkey*Str';
$rcmail_config['locale_string'] = 'en';
$rcmail_config['date_short'] = 'D H:i';
$rcmail_config['date_long'] = 'd.m.Y H:i';
$rcmail_config['date_today'] = 'H:i';
$rcmail_config['useragent'] = 'Roundcube Webmail/RCMAIL_VERSION';
$rcmail_config['product_name'] = 'Roundcube Webmail';
$rcmail_config['imap_root'] = '';
$rcmail_config['drafts_mbox'] = 'Drafts';
$rcmail_config['junk_mbox'] = 'Junk';
$rcmail_config['sent_mbox'] = 'Sent';
$rcmail_config['trash_mbox'] = 'Trash';
$rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash');
$rcmail_config['protect_default_folders'] = true;
$rcmail_config['skip_deleted'] = false;
$rcmail_config['read_when_deleted'] = true;
$rcmail_config['flag_for_deletion'] = false;
$rcmail_config['enable_spellcheck'] = true;
$rcmail_config['spellcheck_uri'] = '';
$rcmail_config['spellcheck_languages'] = array (
  'en' => 'English',
  'de' => 'Deutsch',
);
$rcmail_config['generic_message_footer'] = '';
$rcmail_config['mail_header_delimiter'] = NULL;
$rcmail_config['dont_override'] = array();
$rcmail_config['javascript_config'] = array('read_when_deleted', 'flag_for_deletion');
$rcmail_config['include_host_config'] = false;
/***** these settings can be overwritten by user's preferences *****/
$rcmail_config['pagesize'] = 40;
$rcmail_config['timezone'] = 'auto';
$rcmail_config['dst_active'] = true;
$rcmail_config['prefer_html'] = true;
$rcmail_config['prettydate'] = true;
$rcmail_config['message_sort_col'] = '';
$rcmail_config['message_sort_order'] = 'DESC';
$rcmail_config['draft_autosave'] = 300;
$rcmail_config['max_pagesize'] = 200;
?>
« Last Edit: July 26, 2013, 03:48:43 AM by apolex »

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,879
    • SKaero - Custom Roundcube development
Re: Problem with default address book after update
« Reply #1 on: July 25, 2013, 10:47:36 AM »
Can you post your main.inc.php?