{
    $OUT .= "\$config['id']\='groupoffice'; \n";
    $OUT .= "\$auth_sources[] \=  \n";
    $OUT .= "   array( \n";
    $OUT .= "   'type' => 'email', \n";
    $OUT .= "   'name' => \'$DomainName', \n";
    $OUT .= "   'user_manager' => 'sql', \n";
    $OUT .= "   'proto' => 'imap', \n";
    $OUT .= "   'domain' => \'$DomainName', \n";
    $OUT .= "   'host' => 'localhost', \n";
    $OUT .= "   'port' => '993', \n";
    $OUT .= "   'ssl' => true, \n";
    $OUT .= "   'novalidate_cert' => true, \n";
    $OUT .= "   'mbroot' => '', \n";
    $OUT .= "   'add_domain_to_username' => false, \n";
    $OUT .= "   'create_email_account' => true, \n";
    $OUT .= "   'auto_check_email' => true, \n";
    $OUT .= "   'groups' => array('Everyone'), \n";
    $OUT .= "   'visible_groups' => array('Everyone'), \n";
    $OUT .= "   'modules_read' => array('email', 'filesystem', 'addressbook', 'calendar', 'bookmarks', 'notes', 'summary'), \n";
    $OUT .= "   'modules_write' => array() \n";
    $OUT .= "   ); \n";
    $OUT .= "\$auth_sources[] \= \n";
    $OUT .= "   array( \n";
    $OUT .= "   'type' => 'sql', \n";
    $OUT .= "   'name' => 'Group-Office database', \n";
    $OUT .= "   'user_manager' => 'sql' \n";
    $OUT .= "   ); \n";
}    