个人工具

Squirrelmail

来自Ubuntu中文

58.251.136.103讨论2009年4月2日 (四) 11:16的版本 Preparation

跳转至: 导航, 搜索


Introduction(简介)

Webmail is software which allows you to view email from any computer, anywhere in the world, through your web browser. Squirrelmail is a simple, fast and popular webmail package. The website is here. This guide will enable you to setup webmail on your own server, for use either within your home network, or outside.

Webmail是一种让你通过web浏览器查看邮件的软件,无论你身处何方使用什么样的计算机。Squirrelmail是一个简单,快速而且非常流行的webmail软件包。这里是网址链接。这个指导可以让你在自己的服务器上建立起一个即可以在家庭网络也可以在外面使用的webmail。

Preparation(准备)

In order to run, you need to first set up a number of things:

  • A working Mail Transfer Engine, see MailServer
  • A working (IMAP) Mail Delivery Agent, see MailServer
  • A working Apache installation with PHP, see the Apache page.
  • Squirrel mail does not require MySQL, so you can run it on a server without MySQL installed. However if you wish, you can use MySQL for addressbooks, to set up MySQL, see the Apache page.

Installation

Install the following packages: squirrelmail (see InstallingSoftware).

Configuration

Squirrelmail Configuration

Squirrelmail has a very simple configuration menu. To run it, type:

sudo squirrelmail-configure

You can use the numbers and letters to browse through the configuration menu. You don't need to edit all the options. In fact, it is a good idea just to edit the necessary options, until you have squirrelmail working, because it is easier to see what might be wrong. After squirrelmail is working, you can customise all the options! It is a good idea to check the following options though:

  • In Menu 2 (mail server settings), although you shouldn't have to edit these, just check they are correct. You can use an imaps server if you like, but if squirrelmail is running on the same machine as your mail server, it is faster and perfectly safe to use imap (you can configure your imap server to ensure that it only listens on localhost if you like). Check that your mail settings are:
A.  Update IMAP Settings   : localhost:143 (other)
B.  Update SMTP Settings   : localhost:25
  • In Menu 4 (general settings), it is a good idea to enable option 11 (Allow server-side sorting).

Go on to configure Apache, and then come back and explore the other options!

Apache Configuration

Squirrelmail comes with a sample apache configuration file in /etc/squirrelmail/apache.conf. You can copy this file to /etc/apache2/sites-available/squirrelmail with the command:

sudo cp /etc/squirrelmail/apache.conf /etc/apache2/sites-available/squirrelmail
then link it to the sites-enabled directory with the command:
 
sudo cp -s /etc/apache2/sites-available/squirrelmail /etc/apache2/sites-enabled/squirrelmail
You shouldn't have to edit anything else.

Alternatively, if you wish to use a virtual server setup instead, you can. For setting up SSL, uncomment the last section from the configuration file. For more details on how to use apache, see the Apache page.

Restart Apache:

sudo /etc/init.d/apache2 restart

If you ever wish to disable squirrelmail, you may simply delete the link in the site-enabled directory and restart Apache.

Check it works!

Open a webbrowser, and go to the address http://localhost/squirrelmail. Change localhost for the address of your server, or your virtualhost, if you have used that Apache setup. You should see the Squirrelmail login box!

Add plugins

On of the strength of squirrelmail is the large amount of plugins that can be added to the webmail. You can find a list of the plugins available here. Installation is very easy, just unpack the plugins in /usr/share/squirrelmail/plugins/ and look for a README or an INSTALL file in the plugin directory.

For plugin activation, you have to launch the configuration utility of squirrelmail as described in squirrelmail configuration section by typing sudo squirrelmail-configure


等待翻译