squirrelmail/config_local_kolab.php

Sat, 03 Oct 2009 16:18:52 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Oct 2009 16:18:52 +0200
changeset 220
a6cd892638c1
permissions
-rw-r--r--

Update version, adjust corresponding buildconf, and correct logic.
1: Make minor corrections and improvements to scripts patch logic.
2: Upgrade to most recent stable release version 3.0.2.
3: Force selection of a single db backend, as multiple ones never
were supported (changing 'with_db<end>' identifiers accordingly.)
4: Unfortunately add gawk requirement although only partly needed.
5: Add openssl::with_threads requirement to solve strange and hard
to debug problems on Solaris leading to connection failures:

'host-dir JobId 0: Error: openssl.c:86 Connect failure: ERR=error:1408F10B:SSL routines:SSL3_GET_RECORD:wrong version number'

and

'host-dir JobId 40: Fatal error: TLS negotiation failed with FD at "back1.host.com:9102"'

     1 <?php
     2 /*
     3  * config_local.php
     4  */
     6 $squirrelmail_default_language = 'en_US';
     7 $default_charset = 'utf-8';
     9 $imapServerAddress      = 'localhost';
    10 $imap_auth_mech         = 'login';
    12 $optional_delimiter     = '/';
    14 $trash_folder           = 'INBOX/Trash';
    15 $sent_folder            = 'INBOX/Sent';
    16 $draft_folder           = 'INBOX/Drafts';
    17 $auto_create_special    = true;
    19 $useSendmail = false;
    20 $smtpServerAddress = 'localhost';
    21 $smtpPort = 465;
    22 $use_smtp_tls = true;
    23 $smtp_auth_mech = 'plain';
    25 /* $encode_header_key      = 'ec708b484289'; */
    26 /* $hide_auth_header       = false; */
    28 $org_name = "Kolab";
    29 $org_logo = SM_PATH . 'images/sm_logo.png';
    30 $org_logo_width = '308';
    31 $org_logo_height = '111';
    33 $org_title = "Kolab";
    35 $provider_name = 'Kolab';
    36 $provider_uri = 'http://www.kolab.org/';
    38 $edit_identity = false;
    40 unset($plugins);
    41 $plugins[0]  = 'abook_take';
    42 $plugins[]  = 'administrator';
    43 $plugins[]  = 'calendar';
    44 $plugins[]  = 'compatibility';
    45 $plugins[]  = 'delete_move_next';
    46 $plugins[]  = 'listcommands';
    47 $plugins[]  = 'message_details';
    48 $plugins[] = 'newmail';
    49 $plugins[] = 'squirrelspell';
    50 $plugins[] = 'squirrel_logger';
    51 $plugins[] = 'translate';
    53 $plugins[] = 'addgraphics';
    54 $plugins[] = 'check_quota';
    55 $plugins[] = 'folder_sizes';
    56 $plugins[] = 'pupdate';
    57 $plugins[] = 'show_user_and_ip';
    58 $plugins[] = 'smallcal';
    59 $plugins[] = 'vkeyboard';
    60 $plugins[] = 'username';
    62 ?>

mercurial