| 2007/10/31 | BETA2 |
| 2007/11/14 | RC1 |
| 2007/11/28 | RC2 |
| 2007/12/12 | RELEASE |
| 2007/11/7 | BETA2 |
| 2007/11/21 | RC1 |
| 2007/12/5 | RC2 |
| 2007/12/19 | RELEASE |
出荷日: 2007/10/24と書いてあります。Apple Store の注文履歴でも
お届け予定日: 2007/10/25 までに
となっています。
出荷完了
出荷日:: 2007/10/24
お届け予定日: 2007/10/25
# make install
とするだけです。/usr/local/www/squirrelmail/ にインストールされます。インストールが終了したら# cd /usr/local/www/squirrelmail/
l# ./configure
SquirrelMail Configuration : Read: config.php (1.4.0)となりますので、Courier IMAP を利用している私は、まず D から courier を選択しました。後は、2 を選択して、
---------------------------------------------------------
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. Domain : kncn.netDomain と IMAP Settings を設定しました。自宅サーバでは IMAPS を利用していますので、IMAP Settings の port を 993、Secure IMAP (TLS) を trueとしています。
2. Invert Time : false
3. Sendmail or SMTP : SMTP
A. Update IMAP Settings : localhost:993 (courier)
B. Update SMTP Settings : localhost:25
Language preferencesとしておきました。ついでに、ログアウト後のページを 1 -> 5 で指定しておきました。
1. Default Language : ja_JP
2. Default Charset : iso-2022-jp
3. Enable lossy encoding : false
# Include etc/apache22/extra/httpd-vhosts.confとコメントアウトされているところを有効にしました。また、Web メールですので、SSL を使うようにしたいと思い、
# Include etc/apache22/extra/httpd-ssl.confのコメントも外しておきました。
#cd /usr/local/etc/apache22/
# openssl genrsa -out server.key 1024
Generating RSA private key, 1024 bit long modulus
.....++++++
..................................................++++++
e is 65537 (0x10001)
# openssl req -new -key server.key -out server.csr
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [AU]:JP
State or Province Name (full name) [Some-State]:Hiroshima
Locality Name (eg, city) []:Hiroshima
Organization Name (eg, company) [Internet Widgits Pty Ltd]:kncn
Organizational Unit Name (eg, section) []:
Common Name (eg, YOUR name) []:ippo
Email Address []:webmaster@kncn.net
Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []:
An optional company name []:
# openssl x509 -in server.csr -out server.crt -req -signkey server.key -days 365
Signature ok
subject=/C=JP/ST=Hiroshima/L=Hiroshima/・・・・
Getting Private key
DocumentRoot "/usr/local/www/squirrelmail"くらいです。これで、https://xxx.kncn.net/ で SquirrelMail に SSL でアクセスできるようになります。勿論、DNS は適切に設定しております。
ServerName xxx.kncn.net:443
ServerAdmin webmaster@kncn.net