From 063ed2b19e5b1222d1fc725667bbc4dc79320806 Mon Sep 17 00:00:00 2001 From: tassium Date: Mon, 15 Sep 2003 14:05:31 +0000 Subject: [PATCH] Tentative support for mercury/32 as a preset. For reference, the values I used were taken directly from a message on the squirrelmail-users list. See Message-ID: <007e01c37a6c$ebab8910$b700a8c0@tora> in the archives for details. If you use Mercury, now would be a good time to double-check the defaults I've put in. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@5721 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- config/conf.pl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/config/conf.pl b/config/conf.pl index b601f477..08d32234 100755 --- a/config/conf.pl +++ b/config/conf.pl @@ -2912,6 +2912,7 @@ sub set_defaults { print " exchange = Microsoft Exchange IMAP server\n"; print " courier = Courier IMAP server\n"; print " macosx = Mac OS X Mailserver\n"; + print " mercury32 = Mercury/32\n"; print " quit = Do not change anything\n"; print "Command >> "; $server = ; @@ -2989,6 +2990,20 @@ sub set_defaults { $allow_charset_search = false; $disp_default_folder_prefix = $default_folder_prefix; + $continue = 1; + } elsif ( $server eq "mercury32" ) { + $imap_server_type = "mercury32"; + $default_folder_prefix = ""; + $trash_folder = "INBOX.Trash"; + $sent_folder = "INBOX.Sent"; + $draft_folder = "INBOX.Drafts"; + $show_prefix_option = false; + $default_sub_of_inbox = true; + $show_contain_subfolders_option = true; + $optional_delimiter = "detect"; + $delete_folder = true; + $force_username_lowercase = true; + $continue = 1; } elsif ( $server eq "quit" ) { $continue = 1; -- 2.25.1