个人工具

UbuntuHelp:Cyrus

来自Ubuntu中文

Oneleaf讨论 | 贡献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