Ignore:
Timestamp:
03/13/10 00:37:22 (2 years ago)
Author:
nuxwin
Message:
  • [MERGE] Latest omega-1.0.5 changes - part I
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/gui/tools/webmail/config/conf.pl

    r1904 r2693  
    22# conf.pl 
    33# 
    4 # Copyright (c) 1999-2009 The SquirrelMail Project Team 
     4# Copyright (c) 1999-2010 The SquirrelMail Project Team 
    55# Licensed under the GNU GPL. For full terms see COPYING. 
    66# 
    77# A simple configure script to configure SquirrelMail 
    88# 
    9 # $Id: conf.pl 13820 2009-08-12 08:32:10Z pdontthink $ 
     9# $Id: conf.pl 13906 2010-02-13 23:06:30Z pdontthink $ 
    1010############################################################               
    1111$conf_pl_version = "1.4.0"; 
     
    397397    "    macosx      = Mac OS X Mailserver\n" . 
    398398    "    mercury32   = Mercury/32\n" . 
    399     "    uw          = University of Washington's IMAP server\n"; 
     399    "    uw          = University of Washington's IMAP server\n" . 
     400    "    gmail       = IMAP access to Google mail (Gmail) accounts\n"; 
    400401 
    401402##################################################################################### 
     
    37523753 
    37533754            $continue = 1; 
     3755        } elsif ( $server eq "gmail" ) { 
     3756            $imap_server_type               = "gmail"; 
     3757            $default_folder_prefix          = ""; 
     3758            $trash_folder                   = "[Gmail]/Trash"; 
     3759            $default_move_to_trash          = true; 
     3760            $sent_folder                    = "[Gmail]/Sent Mail"; 
     3761            $draft_folder                   = "[Gmail]/Drafts"; 
     3762            $auto_create_special            = false; 
     3763            $show_prefix_option             = false; 
     3764            $default_sub_of_inbox           = false; 
     3765            $show_contain_subfolders_option = false; 
     3766            $delete_folder                  = true; 
     3767            $force_username_lowercase       = false; 
     3768            $optional_delimiter             = "/"; 
     3769            $disp_default_folder_prefix     = "<none>"; 
     3770            $domain                         = "gmail.com"; 
     3771            $imapServerAddress              = "imap.gmail.com"; 
     3772            $imapPort                       = 993; 
     3773            $use_imap_tls                   = true; 
     3774            $imap_auth_mech                 = "login"; 
     3775            $smtpServerAddress              = "smtp.gmail.com"; 
     3776            $smtpPort                       = 465; 
     3777            $pop_before_smtp                = false; 
     3778            $useSendmail                    = false; 
     3779            $use_smtp_tls                   = true; 
     3780            $smtp_auth_mech                 = "login"; 
     3781            $continue = 1; 
     3782 
     3783            # Gmail changes system folder names (Drafts, Sent, Trash) out 
     3784            # from under you when the user changes language settings 
     3785            $message = "\nNOTE!  When a user changes languages in Gmail's interface, the\n" 
     3786                     . "Drafts, Sent and Trash folder names are changed to localized\n" 
     3787                     . "versions thereof.  To see those folders correctly in SquirrelMail,\n" 
     3788                     . "the user should change the SquirrelMail language to match.\n" 
     3789                     . "Moreover, SquirrelMail then needs to be told what folders to use\n" 
     3790                     . "for Drafts, Sent and Trash in Options --> Folder Preferences.\n" 
     3791                     . "These default settings will only correctly find the Sent, Trash\n" 
     3792                     . "and Drafts folders if both Gmail and SquirrelMail languages are\n" 
     3793                     . "set to English.\n\n" 
     3794                     . "Also note that in some regions (Europe?), the default folder\n" 
     3795                     . "names (see main menu selection 3. Folder Defaults) are different\n" 
     3796                     . "(they may need to have the prefix \"[Google Mail]\" instead of\n"  
     3797                     . "\"[Gmail]\") and \"Trash\" may be called \"Bin\" instead.\n"; 
     3798 
    37543799        } elsif ( $server eq "quit" ) { 
    37553800            $continue = 1; 
Note: See TracChangeset for help on using the changeset viewer.