个人工具

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

来自Ubuntu中文

跳转至: 导航, 搜索
(New page: {{From|https://help.ubuntu.com/community/Cyrus}} {{Languages|php5}} == Introduction == Cyrus is one of the most widely used IMAP/POP servers. Cyrus is apreciated for virtualisation of mai...)
 
第1行: 第1行:
 
{{From|https://help.ubuntu.com/community/Cyrus}}
 
{{From|https://help.ubuntu.com/community/Cyrus}}
{{Languages|php5}}
+
{{Languages|UbuntuHelp:Cyrus}}
 
== Introduction ==
 
== Introduction ==
  
第34行: 第34行:
 
<pre><nowiki>
 
<pre><nowiki>
 
8<----------------------------------------
 
8<----------------------------------------
# UNIX Hierarchy Convention
 
# Set to yes, and cyrus will accept dots in names, and use the forward
 
# slash "/" to delimit levels of the hierarchy. This is done by converting
 
# internally all dots to "^", and all "/" to dots. So the "rabbit.holes"
 
# mailbox of user "helmer.fudd" is stored in "user.elmer<sup>fud.rabbit</sup>holes"
 
 
unixhierarchysep: no
 
unixhierarchysep: no
 
8<----------------------------------------
 
8<----------------------------------------
第47行: 第42行:
 
<pre><nowiki>
 
<pre><nowiki>
 
8<----------------------------------------
 
8<----------------------------------------
# Uncomment the following and add the space-separated users who
 
# have admin rights for all services.
 
 
admins: cyrus
 
admins: cyrus
 
8<----------------------------------------
 
8<----------------------------------------
第57行: 第50行:
 
<pre><nowiki>
 
<pre><nowiki>
 
8<----------------------------------------
 
8<----------------------------------------
# Do note that, since sasl will be run as user cyrus, you may have a lot of
 
# trouble to set this up right.
 
 
sasl_pwcheck_method: saslauthd
 
sasl_pwcheck_method: saslauthd
 
8<----------------------------------------
 
8<----------------------------------------
第68行: 第59行:
  
 
<pre><nowiki>
 
<pre><nowiki>
# This needs to be uncommented before saslauthd will be run automatically
 
 
START=yes
 
START=yes
  
# You must specify the authentication mechanisms you wish to use.
 
# This defaults to "pam" for PAM support, but may also include
 
# "shadow" or "sasldb", like this:
 
 
MECHANISMS="pam"
 
MECHANISMS="pam"
 
</nowiki></pre>
 
</nowiki></pre>
第82行: 第69行:
  
 
<pre><nowiki>
 
<pre><nowiki>
# /etc/init.d/saslauthd start
 
 
</nowiki></pre>
 
</nowiki></pre>
  
第102行: 第88行:
 
On Ubuntu installation, the transport <code><nowiki>cyrus</nowiki></code> is NOT already configured in <code><nowiki>/etc/postfix/master.cf</nowiki></code>. You must add manually at the end of <code><nowiki>master.cf</nowiki></code> the following lines:
 
On Ubuntu installation, the transport <code><nowiki>cyrus</nowiki></code> is NOT already configured in <code><nowiki>/etc/postfix/master.cf</nowiki></code>. You must add manually at the end of <code><nowiki>master.cf</nowiki></code> the following lines:
 
<pre><nowiki>
 
<pre><nowiki>
# The Cyrus deliver program has changed incompatibly, multiple times.
 
 
cyrus    unix  -  n  n  -  -  pipe
 
cyrus    unix  -  n  n  -  -  pipe
 
   flags=R user=cyrus argv=/usr/sbin/cyrdeliver -e -m "${extension}" ${user}
 
   flags=R user=cyrus argv=/usr/sbin/cyrdeliver -e -m "${extension}" ${user}
第133行: 第118行:
 
First, you have define a "password" for the user admin for the cyrusadm. With root make this:
 
First, you have define a "password" for the user admin for the cyrusadm. With root make this:
 
<pre><nowiki>
 
<pre><nowiki>
# saslpasswd2 -c cyrus
 
 
Password: TYPE YOUR CYRUS PASSWORD HERE
 
Password: TYPE YOUR CYRUS PASSWORD HERE
 
Again (for verification): RETYPE YOUR CYRUS PASSWORD
 
Again (for verification): RETYPE YOUR CYRUS PASSWORD
第160行: 第144行:
  
 
<pre><nowiki>
 
<pre><nowiki>
# telnet localhost imap
 
 
Trying 127.0.0.1...
 
Trying 127.0.0.1...
 
Connected to localhost.
 
Connected to localhost.
第177行: 第160行:
 
[http://www.tldp.org/HOWTO/Postfix-Cyrus-Web-cyradm-HOWTO/ Postfix Cyrus Web cyradm HOWTO]
 
[http://www.tldp.org/HOWTO/Postfix-Cyrus-Web-cyradm-HOWTO/ Postfix Cyrus Web cyradm HOWTO]
 
----
 
----
CategoryNetworking CategoryDocumentation
+
[[category:CategoryNetworking]] [[category:CategoryDocumentation]]
  
 
[[category:UbuntuHelp]]
 
[[category:UbuntuHelp]]

2007年5月14日 (一) 11:49的版本

Introduction

Cyrus is one of the most widely used IMAP/POP servers. Cyrus is apreciated for virtualisation of mailboxes and cool stuff like server side filtering (sieve) or shared folders. It is frequently used in universities. In this howto, a basic installation of Cyrus with authentication on PAM will be explained.

Installation

Cyrus is in the main repository of Ubuntu (and as a consequence benefit from canonical security support). Install the following packages: cyrus21-admin cyrus21-clients cyrus21-imapd sasl2-bin (see InstallingSoftware).

If you dot not have a MTA yet, this step will install postfix. Please refer to the UbuntuHelp:Postfix page for details.

Configuration

Cyrus

Cyrus configuration is done in two configurations files: /etc/imapd.conf and /etc/cyrus.conf.

First, edit the /etc/cyrus.conf to activate the protocols you want. Here, imap and imaps will be activated:

8<----------------------------------------
SERVICES {
        # --- Normal cyrus spool, or Murder backends ---
        # add or remove based on preferences
        imap            cmd="imapd -U 30" listen="imap" prefork=0 maxchild=100
        imaps           cmd="imapd -s -U 30" listen="imaps" prefork=0 maxchild=100
        #pop3           cmd="pop3d -U 30" listen="pop3" prefork=0 maxchild=50
        #pop3s          cmd="pop3d -s -U 30" listen="pop3s" prefork=0 maxchild=50
8<----------------------------------------

Then edit /etc/imapd.conf (do not believe the name, it concerns general Cyrus stuff configuration). Only some parameters will be focused as most of options will match most of the needs.

8<----------------------------------------
unixhierarchysep: no
8<----------------------------------------

By default, unixhierarchysep if set to no which means that the separator is "." and not "/". You will have to turn in to yes if you want your mailbox to contains "." for example if you use mail addresses for naming your mailboxes.

8<----------------------------------------
admins: cyrus
8<----------------------------------------

This parameter define an administrator for all the services. It will be require for administration operations like mailbox creation.

8<----------------------------------------
sasl_pwcheck_method: saslauthd
8<----------------------------------------

Indicates the method used for user authentication. saslauthd can also be used for Postfix authentication, as detailed in UbuntuHelp:Postfix page.

Last, change the /etc/default/saslauthd:

START=yes

MECHANISMS="pam"

Your authentication will be based on PAM. Probabily PAM is correctly setup on your machine.

Just launch saslauthd daemon:


Mail Transfert Agent

You have to configure your mail transfert agent to deliver your messages in your cyrus mailbox. In this howto, Postfix MTA will be presented. Feel free to add you favorite MTA.

Postfix

With postfix, there are two ways of delivering messages in you mailbox: with a special transport named cyrus, or via lmtp (which is a protocol more or less similar to smtp). Choose the one you prefer. The cyrus transport is the simplest, lmtp is the most powerfull (you can communicate with lmtp between machines).

cyrus transport

In your postfix main.cf configuration file, add the following line:

mailbox_transport = cyrus

On Ubuntu installation, the transport cyrus is NOT already configured in /etc/postfix/master.cf. You must add manually at the end of master.cf the following lines:

cyrus     unix  -   n   n   -   -   pipe
  flags=R user=cyrus argv=/usr/sbin/cyrdeliver -e -m "${extension}" ${user}
lmtp

In your postfix main.cf configuration file, add the following line:

mailbox_transport = lmtp:unix:/var/run/lmtp

By default, on Ubuntu, the Unix socket lmtp is opened. Make sure the socket matches the socket specified in your /etc/cyrus.conf and /etc/imapd.conf.

In your postfix master.cf configuration file, edit the following line:

lmtp      unix  -       -       -       -       -       lmtp

to

lmtp      unix  -       -       n       -       -       lmtp

Otherwise, "No such file or directory" errors will be logged in the /var/log/mail.log as postfix tries to look for the socket in a chrooted environment.

Mailbox creation

First, you have define a "password" for the user admin for the cyrusadm. With root make this:

Password: TYPE YOUR CYRUS PASSWORD HERE
Again (for verification): RETYPE YOUR CYRUS PASSWORD

You also have to create the mailboxes for the users. User the cyradm utility for that:

cyradm --user cyrus localhost
IMAP Password:
localhost>

You can have the full description of the commands available by typing help. We will give more details in the section Administration & Maintenance.

Mailbox creation is done like this:

localhost>cm user.toto

Dot not forget the prefix user. or the mailbox created will be considered as a shared mailbox.

Test

Test that your installation works correctly:

Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
* OK hostname Cyrus IMAP4 v2.1.18-IPv6-Debian-2.1.18-2ubuntu2 server ready
imap login user password
imap OK User logged in

Where user and password are your login and password on the server. If it does not work check /var/log/mail.log for evidence.

Administration / Maintenance

Links

Postfix Cyrus Web cyradm HOWTO