はじめての自宅サーバ構築 - Fedora/CentOS -
Last Update 2018/05/30
[ 更新履歴 ] [ サイト マップ ] [ 質問掲示板 ] [ 雑談掲示板 ] [ リンク ]
トップ >> Webサーバ >> WebMailの導入(SquirrelMail)
動作確認 [ FC1 / FC2 / FC3 / FC4 / FC5 / FC6 / Fedora7 / Fedora8 / Fedora9 / Fedora10 / Fedora11 / Fedora12 / Fedora13 / Fedora14 / CentOS4 / CentOS5 ]
  1. SquirrelMailとは・・・
  2. SquirrelMailのインストール
  3. SquirrelMailのプラグインの取得と配置
  4. SquirrelMailの設定
  5. SquirrelMailの動作確認

■ SquirrelMailとは・・・

SquirrelMailとはPHP4で作成されたWEB(フォームページ上)で電子メールを扱えるツールです。
出先等、クライアントメールソフトがなくても、ホームページが閲覧できる端末から電子メールを書いたり読んだりする事が可能になります。
yahoo!gooなどのホームページ上で電子メールを送信できる事をご存知ですか?
このツールを使用すれば、あなたのサーバでも使用できるようになります。

■ SquirrelMailのインストール

# yum -y install squirrelmail

■ SquirrelMailのプラグインの取得と配置

プラグインのダウンロード
*:以下の各々のプラグインバージョンは随時上がっているので、
『SquirrelMail - Webmail for Nuts!より最新のバージョンを取得して下さい。

組み込むプラグインの説明は以下となっています。
  Compatibility:プラグインを全てのバージョンのSquirrelMailで動作させる
  Empty Trash  :ユーザのTrashフォルダの中を自動的に削除する
  Secure Login :ログイン時にSSLを有効にする
  View As HTML :メール閲覧をHTML形式またはテキスト形式で行うか選択するリンクを表示する


# wget http://www.squirrelmail.org/plugins/compatibility-1.3.tar.gz
--06:19:35--  http://www.squirrelmail.org/plugins/compatibility-1.3.tar.gz
           => `compatibility-1.3.tar.gz'
www.squirrelmail.org をDNSに問いあわせています... 82.94.230.146
www.squirrelmail.org[82.94.230.146]:80 に接続しています... 接続しました。
HTTP による接続要求を送信しました、応答を待っています... 200 OK
長さ: 5,966 [application/x-tar]

100%[====================================>] 5,966         22.87K/s

06:19:36 (22.82 KB/s) - `compatibility-1.3.tar.gz' saved [5,966/5,966]

# wget http://www.squirrelmail.org/plugins/empty_trash-1.4-1.2.2.tar.gz
--06:20:53--  http://www.squirrelmail.org/plugins/empty_trash-1.4-1.2.2.tar.gz
           => `empty_trash-1.4-1.2.2.tar.gz'
www.squirrelmail.org をDNSに問いあわせています... 82.94.230.146
www.squirrelmail.org[82.94.230.146]:80 に接続しています... 接続しました。
HTTP による接続要求を送信しました、応答を待っています... 200 OK
長さ: 2,715 [application/x-tar]

100%[====================================>] 2,715         10.32K/s

06:21:01 (10.28 KB/s) - `empty_trash-1.4-1.2.2.tar.gz' saved [2,715/2,715]

# wget http://www.squirrelmail.org/plugins/secure_login-1.2-1.2.8.tar.gz
--06:22:24--  http://www.squirrelmail.org/plugins/secure_login-1.2-1.2.8.tar.gz
           => `secure_login-1.2-1.2.8.tar.gz'
www.squirrelmail.org をDNSに問いあわせています... 82.94.230.146
www.squirrelmail.org[82.94.230.146]:80 に接続しています... 接続しました。
HTTP による接続要求を送信しました、応答を待っています... 200 OK
長さ: 6,361 [application/x-tar]

100%[====================================>] 6,361         20.37K/s

06:22:26 (20.32 KB/s) - `secure_login-1.2-1.2.8.tar.gz' saved [6,361/6,361]

# wget http://www.squirrelmail.org/plugins/view_as_html-3.6-1.4.x.tar.gz
--06:24:35--  http://www.squirrelmail.org/plugins/view_as_html-3.6-1.4.x.tar.gz
           => `view_as_html-3.6-1.4.x.tar.gz'
www.squirrelmail.org をDNSに問いあわせています... 82.94.230.146
www.squirrelmail.org[82.94.230.146]:80 に接続しています... 接続しました。
HTTP による接続要求を送信しました、応答を待っています... 200 OK
長さ: 8,661 [application/x-tar]

100%[====================================>] 8,661         24.34K/s

06:24:36 (24.29 KB/s) - `view_as_html-3.6-1.4.x.tar.gz' saved [8,661/8,661]


SquirrelMailのプラグインパスに移動する
# cd /usr/share/squirrelmail/plugins/

ダウンロードしたプラグインを解凍する
# tar zxvf /root/empty_trash-1.4-1.2.2.tar.gz
# tar zxvf /root/secure_login-1.2-1.2.8.tar.gz
# tar zxvf /root/compatibility-1.3.tar.gz
# tar zxvf /root/view_as_html-3.6-1.4.x.tar.gz

ダウンロードしたファイルを削除する
# rm -f /root/empty_trash-1.2-1.2.2.tar.gz
# rm -f /root/secure_login-1.2-1.2.8.tar.gz
# rm -f /root/compatibility-1.3.tar.gz
# rm -f /root/view_as_html-3.6-1.4.x.tar.gz

インストールされたSquirrelMail(PHP)を有効にする為、apacheを再起動します
# /etc/rc.d/init.d/httpd restart
httpdを停止中:                                             [  OK  ]
httpd を起動中:                                            [  OK  ]

■ SquirrelMailの設定

SquirrelMailの設定スクリプトを実行し各種設定を行なう
# /usr/share/squirrelmail/config/conf.pl
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 off
S   Save data
Q   Quit

「1.  Organization Preferences」を選択
Command >> 1

SquirrelMail Configuration : Read: config.php (1.4.0)
---------------------------------------------------------
Organization Preferences
1.  Organization Name      : SquirrelMail
2.  Organization Logo      : ../images/sm_logo.png
3.  Org. Logo Width/Height : (308/111)
4.  Organization Title     : SquirrelMail $version
5.  Signout Page           :
6.  Top Frame              : _top
7.  Provider link          : http://www.squirrelmail.org/
8.  Provider name          : SquirrelMail

R   Return to Main Menu
C   Turn color off
S   Save data
Q   Quit

「5.  Signout Page           :」を選択
Command >> 5

When users click the Sign Out button they will be logged out and
then sent to signout_page.  If signout_page is left empty,
(hit space and then return) they will be taken, as normal,
to the default and rather sparse SquirrelMail signout page.

サインアウトした時のページを指定する
[]: /webmail

SquirrelMail Configuration : Read: config.php (1.4.0)
---------------------------------------------------------
Organization Preferences
1.  Organization Name      : SquirrelMail
2.  Organization Logo      : ../images/sm_logo.png
3.  Org. Logo Width/Height : (308/111)
4.  Organization Title     : SquirrelMail $version
5.  Signout Page           : /webmail
6.  Top Frame              : _top
7.  Provider link          : http://www.squirrelmail.org/
8.  Provider name          : SquirrelMail

R   Return to Main Menu
C   Turn color off
S   Save data
Q   Quit

メインメニューに戻る
Command >> r

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 off
S   Save data
Q   Quit

「2.  Server Settings」を選択
Command >> 2

SquirrelMail Configuration : Read: config.php (1.4.0)
---------------------------------------------------------
Server Settings

General
-------
1.  Domain                 : localhost
2.  Invert Time            : false
3.  Sendmail or SMTP       : Sendmail

A.  Update IMAP Settings   : localhost:143 (uw)
B.  Change Sendmail Config : /usr/sbin/sendmail

R   Return to Main Menu
C   Turn color off
S   Save data
Q   Quit

「1.  Domain                 : localhost」を選択
Command >> 1

The domain name is the suffix at the end of all email addresses.  If
for example, your email address is jdoe@example.com, then your domain
would be example.com.

ドメイン名を設定する(メールアドレスの@以降が送信先に表示される)
[localhost]: kajuhome.com

SquirrelMail Configuration : Read: config.php (1.4.0)
---------------------------------------------------------
Server Settings

General
-------
1.  Domain                 : kajuhome.com
2.  Invert Time            : false
3.  Sendmail or SMTP       : Sendmail

A.  Update IMAP Settings   : localhost:143 (uw)
B.  Change Sendmail Config : /usr/sbin/sendmail

R   Return to Main Menu
C   Turn color off
S   Save data
Q   Quit

メインメニューに戻る
Command >> r

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 off
S   Save data
Q   Quit

「4.  General Options」を選択
Command >> 4

SquirrelMail Configuration : Read: config.php (1.4.0)
---------------------------------------------------------
General Options
1.  Data Directory              : /var/lib/squirrelmail/prefs/
2.  Attachment Directory        : /var/spool/squirrelmail/attach/
3.  Directory Hash Level        : 0
4.  Default Left Size           : 150
5.  Usernames in Lowercase      : false
6.  Allow use of priority       : true
7.  Hide SM attributions        : false
8.  Allow use of receipts       : true
9.  Allow editing of identity   : true/true
10. Allow server thread sort    : true
11. Allow server-side sorting   : true
12. Allow server charset search : true
13. Enable UID support          : true
14. PHP session name            : SQMSESSID

R   Return to Main Menu
C   Turn color off
S   Save data
Q   Quit

「7.  Hide SM attributions        : false」を選択
Command >> 7


Hide SM attributions (y/n) [n]: y

SquirrelMail Configuration : Read: config.php (1.4.0)
---------------------------------------------------------
General Options
1.  Data Directory              : /var/lib/squirrelmail/prefs/
2.  Attachment Directory        : /var/spool/squirrelmail/attach/
3.  Directory Hash Level        : 0
4.  Default Left Size           : 150
5.  Usernames in Lowercase      : false
6.  Allow use of priority       : true
7.  Hide SM attributions        : true
8.  Allow use of receipts       : true
9.  Allow editing of identity   : true/true
10. Allow server thread sort    : true
11. Allow server-side sorting   : true
12. Allow server charset search : true
13. Enable UID support          : true
14. PHP session name            : SQMSESSID

R   Return to Main Menu
C   Turn color off
S   Save data
Q   Quit

メインメニューに戻る
Command >> r

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 off
S   Save data
Q   Quit

「10. Languages」を選択
Command >> 10

SquirrelMail Configuration : Read: config.php (1.4.0)
---------------------------------------------------------
Language preferences
1.  Default Language       : en_US
2.  Default Charset        : iso-8859-1
3.  Enable lossy encoding  : false

R   Return to Main Menu
C   Turn color off
S   Save data
Q   Quit

「1.  Default Language       : en_US」を選択
Command >> 1

SquirrelMail attempts to set the language in many ways.  If it
can not figure it out in another way, it will default to this
language.  Please use the code for the desired language.

言語を日本語に設定する
[en_US]: ja_JP

SquirrelMail Configuration : Read: config.php (1.4.0)
---------------------------------------------------------
Language preferences
1.  Default Language       : ja_JP
2.  Default Charset        : iso-8859-1
3.  Enable lossy encoding  : false

R   Return to Main Menu
C   Turn color off
S   Save data
Q   Quit

「2.  Default Charset        : iso-8859-1」を選択
Command >> 2

This option controls what character set is used when sending
mail and when sending HTML to the browser.

This option is used only when default language is 'en_US'.


文字コード体系をEUC-JPに設定する
[iso-8859-1]: EUC-JP

SquirrelMail Configuration : Read: config.php (1.4.0)
---------------------------------------------------------
Language preferences
1.  Default Language       : ja_JP
2.  Default Charset        : EUC-JP
3.  Enable lossy encoding  : false

R   Return to Main Menu
C   Turn color off
S   Save data
Q   Quit

メインメニューに戻る
Command >> r

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 off
S   Save data
Q   Quit

「8.  Plugins」を選択
Command >> 8

SquirrelMail Configuration : Read: config.php (1.4.0)
---------------------------------------------------------
Plugins
  Installed Plugins
    1. delete_move_next
    2. squirrelspell
    3. newmail

  Available Plugins:
    4. spamcop
    5. mail_fetch
    6. bug_report
    7. info
    8. compatibility
    9. listcommands
    10. administrator
    11. translate
    12. sent_subfolders
    13. message_details
    14. empty_trash
    15. view_as_html
    16. fortune
    17. abook_take
    18. secure_login
    19. calendar
    20. filters

R   Return to Main Menu
C   Turn color off
S   Save data
Q   Quit

「compatibility」を選択(番号が順不同なので注意)
Command >> 8

SquirrelMail Configuration : Read: config.php (1.4.0)
---------------------------------------------------------
Plugins
  Installed Plugins
    1. delete_move_next
    2. squirrelspell
    3. newmail
    4. compatibility

  Available Plugins:
    5. spamcop
    6. mail_fetch
    7. bug_report
    8. info
    9. listcommands
    10. administrator
    11. translate
    12. sent_subfolders
    13. message_details
    14. empty_trash
    15. view_as_html
    16. fortune
    17. abook_take
    18. secure_login
    19. calendar
    20. filters

R   Return to Main Menu
C   Turn color off
S   Save data
Q   Quit

「empty_trash」を選択(番号が順不同なので注意)
Command >> 14

SquirrelMail Configuration : Read: config.php (1.4.0)
---------------------------------------------------------
Plugins
  Installed Plugins
    1. delete_move_next
    2. squirrelspell
    3. newmail
    4. compatibility
    5. empty_trash

  Available Plugins:
    6. spamcop
    7. mail_fetch
    8. bug_report
    9. info
    10. listcommands
    11. administrator
    12. translate
    13. sent_subfolders
    14. message_details
    15. view_as_html
    16. fortune
    17. abook_take
    18. secure_login
    19. calendar
    20. filters

R   Return to Main Menu
C   Turn color off
S   Save data
Q   Quit

「view_as_html」を選択(番号が順不同なので注意)
Command >> 15

SquirrelMail Configuration : Read: config.php (1.4.0)
---------------------------------------------------------
Plugins
  Installed Plugins
    1. delete_move_next
    2. squirrelspell
    3. newmail
    4. compatibility
    5. empty_trash
    6. view_as_html

  Available Plugins:
    7. spamcop
    8. mail_fetch
    9. bug_report
    10. info
    11. listcommands
    12. administrator
    13. translate
    14. sent_subfolders
    15. message_details
    16. fortune
    17. abook_take
    18. secure_login
    19. calendar
    20. filters

R   Return to Main Menu
C   Turn color off
S   Save data
Q   Quit

「secure_login」を選択(番号が順不同なので注意)
Command >> 18

SquirrelMail Configuration : Read: config.php (1.4.0)
---------------------------------------------------------
Plugins
  Installed Plugins
    1. delete_move_next
    2. squirrelspell
    3. newmail
    4. compatibility
    5. empty_trash
    6. view_as_html
    7. secure_login

  Available Plugins:
    8. spamcop
    9. mail_fetch
    10. bug_report
    11. info
    12. listcommands
    13. administrator
    14. translate
    15. sent_subfolders
    16. message_details
    17. fortune
    18. abook_take
    19. calendar
    20. filters

R   Return to Main Menu
C   Turn color off
S   Save data
Q   Quit

「Q   Quit」を選択
Command >> q

You have not saved your data.
設定内容を保存する
Save?  [Y/n]: y
Data saved in config.php

Exiting conf.pl.
You might want to test your configuration by browsing to
http://your-squirrelmail-location/src/configtest.php
Happy SquirrelMailing!


ログインサンプルコピー
# cp /usr/share/squirrelmail/plugins/secure_login/config.php.sample /usr/share/squirrelmail/plugins/secure_login/config.php
プラグインである「secure_login」のバージョンによっては、
コピー元ファイル名が「config.sample.php」の様にファイル名が変わっている場合があります。cp: cannot stat `/usr/share/squirrelmail/plugins/secure_login/config.php.sample': そのようなファイルやディレクトリはありません上記の様に出力された場合は、下記のコマンドを実施します。
# cp /usr/share/squirrelmail/plugins/secure_login/config.sample.php /usr/share/squirrelmail/plugins/secure_login/config.php

変更を有効にする為、apacheを再起動します
# /etc/rc.d/init.d/httpd restart
httpdを停止中:                                             [  OK  ]
httpd を起動中:                                            [  OK  ]

■ SquirrelMailの動作確認

クライアントより[http://サーバのアドレス/webmail/]でアクセスし下記の画面が表示されれば動作しています。

■ コンテンツ関連

■ その他

ページ先頭へ

Copyright(©)2004-2018 First home server construction. All Right Reserved.