要在Linux上搭建SquirrelMail,您需要按照以下步驟進(jìn)行操作:
sudo apt-get update
sudo apt-get install squirrelmail
sudo squirrelmail-configure
在配置向?qū)е校枰x擇要使用的Web服務(wù)器(例如Apache),選擇配置文件的位置(默認(rèn)情況下在/etc/squirrelmail
目錄中),以及配置主機(jī)名和域名等設(shè)置。
/etc/apache2/sites-available/default
文件,添加以下配置:Alias /squirrelmail /usr/share/squirrelmail
<Directory /usr/share/squirrelmail>
Options FollowSymLinks
<IfModule mod_php5.c>
AddType application/x-httpd-php .php
php_flag magic_quotes_gpc Off
php_flag track_vars On
php_value include_path .
</IfModule>
<IfModule mod_dir.c>
DirectoryIndex index.php
</IfModule>
AllowOverride None
Order allow,deny
Allow from all
</Directory>
保存并關(guān)閉文件。
sudo service apache2 restart
在Web瀏覽器中輸入服務(wù)器的IP地址或域名,然后添加/squirrelmail
路徑(例如http://localhost/squirrelmail
),然后按照配置向?qū)е械闹甘具M(jìn)行進(jìn)一步設(shè)置。
按照配置向?qū)е械闹甘就瓿稍O(shè)置,包括創(chuàng)建管理員賬戶、配置SMTP服務(wù)器和IMAP服務(wù)器等。
完成上述步驟后,您應(yīng)該能夠在Linux上成功搭建SquirrelMail,并通過Web瀏覽器訪問它以進(jìn)行電子郵件處理。