DebianにSquirrelmailの設定メモ

Nov 2005

OS:Debian Sarge

SquirrelメールはWebメールです。postfix -->APOP --->SMTP Auth --->Courier-imap -->apache2にSSLの設定の順に設定し、IMAPが稼働していることを前提にしたメモです。

関連 apache2設定メモ   postfixメモ  APOP設定メモ  SMTP Auth設定メモ  Courier-imap設定メモ
     apache2のSSL対応   Debian にSquirrelmailの設定 メモ 



1 インストール

# apt-get install squirrelmail  php4-pear



2 設定

(1)squirrelmail の設定


root権限で squirrelmail- configureを実行すると次のメニューが表示されます。
SquirrelMail Configuration : Read: config.php (1.4.0)
---------------------------------------------------------
Main Menu --
1.  Organization Preferences
2.  Server Settings
3.  Folder Defaults
4.  General Options
5.  Themes
6.  Address Books
7.  Message of the Day (MOTD)
8.  Plugins
9.  Database
10. Languages

D.  Set pre-defined settings for specific IMAP servers

C   Turn color on
S   Save data
Q   Quit

Command >>


設定メニューより
1. Organization Preferencesを選んで

  Organization Name に組織の名前を 適当に書きます。

  rでMainMenuにもどり

2.  Server Settings を選び
       Domain名を設定する。(localhost を変更する。)

  A のUpdate IMAP Settingsで
      IMAP Server       :サーバ名
      Authentication type : cram-md5
      Secure IMAP (TLS) : false
      Server software   : courier
     
  BのUpdate SMTP Settingsで
       SMTP Server    :サーバ名
      
SMTP Authentication : cram-md5
       Secure SMTP (TLS) : false

  rでMainMenuにもどり

  8. Plugins を選び 好みにあわせて設定。片っ端セットしてみ。
 
    rでMainMenuにもどり

  10. Languages で
     Default Language : ja_JP
    
Default Charset  : iso-2022-jp
          

(2)apacheの設定

Debianでaptでsquirrelmailをインストールすると /usr/share/squirrelmailの下に
メールのサイトができます。これをhttps://ドメイン名/webmail/でアクセスできるように
apache2の設定ファイルを作成します。
/etc/apache2/conf.d/ の下に squirrelmail.config という名前で以下の内容のファイルを
作成します。

Alias /webmail /usr/share/squirrelmail
<Location /webmail>
SSLRequireSSL
</Location>
これでapache2を再起動するとアクセスできます。
URL  http://ドメイン名/webmail