个人工具

“UbuntuHelp:OpenWebMail”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
 
(未显示同一用户的3个中间版本)
第2行: 第2行:
 
{{Languages|UbuntuHelp:OpenWebMail}}
 
{{Languages|UbuntuHelp:OpenWebMail}}
 
== Introduction ==
 
== Introduction ==
Webmail is software which allows you to view email from any computer, anywhere in the world, through your web browser. [[UbuntuHelp:OpenWebMail|OpenWebMail]] is a simple, fast and popular webmail package. The website is [http://openwebmail.org/ here]. This guide will enable you to setup webmail on your own server, for use either within your home network, or outside.
+
Webmail is software which allows you to view email from any computer, anywhere in the world, through your web browser. OpenWebMail is a simple, fast and popular webmail package. The website is [http://openwebmail.org/ here]. This guide will enable you to setup webmail on your own server, for use either within your home network, or outside.
 
== Preparation ==
 
== Preparation ==
 
In order to run, you need to first set up a number of things:
 
In order to run, you need to first set up a number of things:
 
* A working Mail Transfer Engine, see [[UbuntuHelp:MailServer|MailServer]]
 
* A working Mail Transfer Engine, see [[UbuntuHelp:MailServer|MailServer]]
 
== Installation ==
 
== Installation ==
Simple, install the package [[UbuntuHelp:OpenWebMail|OpenWebMail]].
+
OpenWebMail depended on Perl module. If you did not install Perl, install Perl first:
<code><nowiki> sudo apt-get install openwebmail </nowiki></code>
+
<pre><nowiki>
SORRY BUT YOU MUST PRECISE THAT. NO OPENWEBMAIL PACKAGE FOUND
+
sudo apt-get install perl
I have to agree with this. apt-cache search doesn't seem to know about anything like it either. --starkruzr (6/6/06)
+
</nowiki></pre>
Works on 6.10 X86_64 desktop install, but not on i386 6.10 server install.
+
Additional packages that are required after the above is installed, can be found in the Synaptic Package Manager.
 +
Search for and install the following if not previously installed:
 +
<pre><nowiki>
 +
libauthen-pam-perl (0.16-1.1)
 +
libconvert-asn1-perl (0.22-1)
 +
libmd5-perl (2.03-1)
 +
libnet-ldap-perl (1:0.39-lubuntul)
 +
perl-suid (5.10.0-19ubuntu1.1)
 +
wwwconfig-common (0.2.1)
 +
libpg-perl (1:2.1.1-4)
 +
</nowiki></pre>
 +
The OpenWebmail package is dependent on these packages and they must be installed or will result in a broken package.
 +
OpenWebMail is not currently in the [[UbuntuHelp:Repositories/Ubuntu|Ubuntu repositories]]. You can get the latest deb package at http://openwebmail.org/openwebmail/download/debian/.
 +
Install it with:
 +
<pre><nowiki>
 +
sudo dpkg -i <package_name>
 +
</nowiki></pre>
 +
For example, at the time of this writing, the latest version is 2.53-2:
 +
<pre><nowiki>
 +
sudo dpkg -i owm2.53-2.deb
 +
</nowiki></pre>
 
== Configuration ==
 
== Configuration ==
[[UbuntuHelp:OpenWebMail|OpenWebMail]] is ready to be used!  Every user account on the server has an email account with the same username/password.  To add more email users, simply create more users on the system.
+
OpenWebMail is ready to be used!  Every user account on the server has an email account with the same username/password.  To add more email users, simply create more users on the system.
 +
make default link for openwebmail
 +
<pre><nowiki>
 +
sudo rm /var/www/openwebmail/index.html
 +
sudo ln -s /var/www/openwebmail/redirect.html /var/www/openwebmail/index.html
 +
</nowiki></pre>
 
== Check it works! ==
 
== Check it works! ==
Open a webbrowser, and go to the address <code><nowiki>http://localhost/openwebmail</nowiki></code>. Change <code><nowiki>localhost</nowiki></code> for the address of your server.  You should see the [[UbuntuHelp:OpenWebMail|OpenWebMail]] login box!
+
Open a webbrowser, and go to the address <code><nowiki>http://localhost/openwebmail</nowiki></code>. Change <code><nowiki>localhost</nowiki></code> for the address of your server.  You should see the OpenWebMail login box!
[[category:CategoryDocumentation]] [[category:CategoryCleanup]]
+
  
 
[[category:UbuntuHelp]]
 
[[category:UbuntuHelp]]

2009年11月17日 (二) 20:17的最新版本

Introduction

Webmail is software which allows you to view email from any computer, anywhere in the world, through your web browser. OpenWebMail 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.

Preparation

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

Installation

OpenWebMail depended on Perl module. If you did not install Perl, install Perl first:

sudo apt-get install perl

Additional packages that are required after the above is installed, can be found in the Synaptic Package Manager. Search for and install the following if not previously installed:

libauthen-pam-perl (0.16-1.1)
libconvert-asn1-perl (0.22-1)
libmd5-perl (2.03-1)
libnet-ldap-perl (1:0.39-lubuntul)
perl-suid (5.10.0-19ubuntu1.1)
wwwconfig-common (0.2.1)
libpg-perl (1:2.1.1-4)

The OpenWebmail package is dependent on these packages and they must be installed or will result in a broken package. OpenWebMail is not currently in the Ubuntu repositories. You can get the latest deb package at http://openwebmail.org/openwebmail/download/debian/. Install it with:

sudo dpkg -i <package_name>

For example, at the time of this writing, the latest version is 2.53-2:

sudo dpkg -i owm2.53-2.deb

Configuration

OpenWebMail is ready to be used! Every user account on the server has an email account with the same username/password. To add more email users, simply create more users on the system. make default link for openwebmail

sudo rm /var/www/openwebmail/index.html
sudo ln -s /var/www/openwebmail/redirect.html /var/www/openwebmail/index.html

Check it works!

Open a webbrowser, and go to the address http://localhost/openwebmail. Change localhost for the address of your server. You should see the OpenWebMail login box!