I'll be happy to.

  squirrelmail 1.4.3a
  apache 2
  php    4
  Redhat AS 3.0 U2
  My plugins:

    $plugins[0] = 'translate';
    $plugins[1] = 'abook_import_export';
    $plugins[2] = 'multilogin';
    $plugins[3] = 'compatibility';
    $plugins[4] = 'abook_take';
    $plugins[5] = 'addgraphics';
    $plugins[6] = 'address_add';
    $plugins[7] = 'admin_add';
    $plugins[8] = 'calendar';
    $plugins[9] = 'newuser_wiz';
    $plugins[10] = 'ldifimport';
    $plugins[11] = 'get_uuencode';
    $plugins[12] = 'message_details';
    $plugins[13] = 'newmail';
    $plugins[14] = 'bookmarks';
    $plugins[15] = 'vkeyboard';
    $plugins[16] = 'pupdate';
    $plugins[17] = 'stunnel-4.05';
    $plugins[18] = 'autorespond-0.4';
    $plugins[19] = 'msg_flags';
    $plugins[20] = 'squirrel_logger';
    $plugins[21] = 'notify';
    $plugins[22] = 'autocomplete';
    $plugins[23] = 'smallcal';
    $plugins[24] = 'motd';
    $plugins[25] = 'dictionary-0.6';
    $plugins[26] = 'exchange_meeting';
    $plugins[27] = 'extract';
    $plugins[28] = 'login_auth';
    $plugins[29] = 'notes';
    $plugins[30] = 'quicksave';
    $plugins[31] = 'view_as_html';
    $plugins[32] = 'sent_confirmation';
    $plugins[33] = 'image_buttons';
    $plugins[34] = 'timeout_user';
    $plugins[35] = 'jsclock';
    $plugins[36] = 'filters';
    $plugins[37] = 'delete_move_next';
    $plugins[38] = 'askuserinfo';
    $plugins[39] = 'squirrelspell';

Some of my config.php

$pop_before_smtp        = false;
$imap_server_type       = 'uw';
$invert_time            = false;
$optional_delimiter     = '/';

$default_folder_prefix          = 'mail/';
$trash_folder                   = 'Trash';
$sent_folder                    = 'Sent';
$draft_folder                   = 'Drafts';
$default_move_to_trash          = true;
$default_move_to_sent           = true;
$default_save_as_draft          = true;
$show_prefix_option             = true;
$list_special_folders_first     = true;
$use_special_folder_color       = true;
$auto_expunge                   = true;
$default_sub_of_inbox           = false;
$show_contain_subfolders_option = true;
$default_unseen_notify          = 2;
$default_unseen_type            = 1;
$auto_create_special            = true;
$delete_folder                  = false;
$noselect_fix_enable            = false;

$default_charset          = 'utf-8';
$data_dir                 = '/var/lib/squirrelmail/prefs/';
$attachment_dir           = '/var/spool/squirrelmail/attach/';
$dir_hash_level           = 0;
$default_left_size        = '150';
$force_username_lowercase = false;
$default_use_priority     = true;
$hide_sm_attributions     = false;
$default_use_mdn          = true;
$edit_identity            = true;
$edit_name                = true;
$allow_thread_sort        = true;
$allow_server_sort        = true;
$allow_charset_search     = true;
$uid_support              = true;


My config.php for multilogin:

  ********************  The problematic server is wisemail **************


  $IMAPSelections = array(

      'wicc' => array(
          'imapServerAddress' => '132.77.4.131',
          'imapPort'          => '143',
          'imap_server_type'  => 'uw',
          'data_dir'          => '/var/lib/squirrelmail/wicc.prefs',
      ),

      'Math-imap' => array(
          'imapServerAddress' => '132.76.80.38',
          'imapPort'          => '143',
          'data_dir'          => '/var/lib/squirrelmail/math.prefs',
      ),
      'Harriet' => array(
        'imapServerAddress' => '132.77.64.171',
        'imapPort'          => '143',
        'data_dir'          => '/var/lib/squirrelmail/harriet.prefs',
        ),

      'Sbmail' => array(
        'imapServerAddress' => '132.77.66.102',
        'imapPort'          => '143',
        'imap_server_type'  => 'cyrus',
        'smtpPort'          => '25',
        'allow_server_sort' => false,
        'data_dir'          => '/var/lib/squirrelmail/sbmail.prefs',
        ),
      'wisemail' => array(
          'imapServerAddress' => '132.77.4.53',
          'imapPort'          => '143',
          'imap_server_type'  => 'courier',
          'smtpPort'          => '25',
          'pop_before_smtp'   => true,
          'default_folder_prefix' => 'INBOX.',
          'trash_folder' => 'Trash',
          'sent_folder' => 'Sent',
          'draft_folder' => 'Drafts',
          'show_prefix_option' => false,
          'default_sub_of_inbox' => false,
          //'show_contain_subfolders_option' => false,
          'optional_delimiter' => '.',
          'disp_default_folder_prefix' => $default_folder_prefix,
          'delete_folder' => true,
          'force_username_lowercase' => false,
          'allow_server_sort' => false,
          'data_dir'          => '/var/lib/squirrelmail/wisemail.prefs',
      ),
      'Chemphys' => array(
          'imapServerAddress' => '132.77.58.13',
          'imapPort'          => '143',
          'imap_server_type'  => 'courier',
          'smtpPort'          => '25',
          'pop_before_smtp'   => true,
          'org_title'         => '"Mail for " . $_SESSION["username"]',
          'allow_server_sort' => false,
          'data_dir'          => '/var/lib/squirrelmail/chemphys.prefs',
          'enable_plugins'    => array(
                                   'fortune',
                                   'change_passwd',
                                ),
          'disable_plugins'   => array(
                                   'addgraphics',
                                   'change_mysqlpass',
                                ),
        // etc. - use as many settings from ../../config/config.php
        //        as you need
      ),

  );


 I think it has something to do with the $default_folder_prefix,
 which is mail. And is created for some reason when I create a folder
 on wisemail. (As I wrote, mail/../<folder I wanted to create>.)

 I hope I passed all the needed information.

                            Regards, and thanks alot
                                Jerry





> Hello Jerry,
>
>> I had this same problem while using 1.5.0, but then got advice on
>> how to solve it.
>
>> The advice worked for 1.5.0, but doesn't for 1.4.3a.
>
>> again here is the setup for a novell imap server using the
>> multilogin plugin.
>
> [..]
>
>> when I create a folder it makes all the other folders (except for
>> the INBOX) to disappear. I noticed under the groupwise client what
>> folder it really creates is
>
>> mail
>>    ..
>>      <my test folder>
>
>> After I remove mail folder and everything under it I see all the old
>> folders.
>> Please help with this.
>
>
> Can you provide more information about your setup? The posting
> guidelines gives you a good idea on what you need. Also your
> assumption that SquirrelMail is loading that particular vhost might
> not be entirely correct. Could you include your full configuration
> (you can mask real host names), and possibly your vhost configuration
> as well.
>
> --
> Jonathan Angliss <[EMAIL PROTECTED]>
> Posting Guidelines:
> http://www.squirrelmail.org/wiki/?MailingListPostingGuidelines
>



-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click
--
squirrelmail-users mailing list
Posting Guidelines: http://squirrelmail.org/wiki/wiki.php?MailingListPostingGuidelines
List Address: [EMAIL PROTECTED]
List Archives: http://news.gmane.org/thread.php?group=gmane.mail.squirrelmail.user
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id=2995
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users

Reply via email to