This tutorial is available in other languages. Help translate more

English /

共享邮箱(将 IMAP 目录共享给其他用户)

Note

共享邮箱

要开启邮箱共享功能,请确保 acl 插件已在Dovecot 的配置文件 /etc/dovecot/dovecot.conf 里启用。以下是配置示例:

# Part of file: /etc/dovecot/dovecot.conf

protocol lda {
    mail_plugins = ... acl
}

protocol imap {
    mail_plugins = ... acl imap_acl
}
# Part of file: /etc/dovecot/dovecot.conf

mail_plugins = ... acl

protocol imap {
    mail_plugins = ... imap_acl
}

修改后需重启 Dovecot 服务,以使配置生效。

测试共享目录

示例:将用户 from@domain.ltdSent 目录共享给用户 testing@domain.ltd

注意:不要遗漏 IMAP 命令前面的点 . 号。

# telnet localhost 143                # <- 输入此命令
* OK [...] Dovecot ready.

. login from@domain.ltd passwd        # <- 输入此命令
                                      # 使用完整邮件地址和密码登陆
. OK [... ACL ..] Logged in

. SETACL Sent testing@domain.ltd rli  # <- 输入此命令
                                      # 将 Sent 目录共享给 testing@domain.ltd,
                                      # 具体权限为:读(r, read),查询(l, lookup),插入新邮件(i, insert)。
. OK Setacl complete.

^]                                    # <- 按 `Ctrl + ]` 组合键退出 telnet 程序。
telnet> quit

以用户 testing@domain.ltd 身份登录 Roundcube 或 SOGo webmail,即可看到共享的目录。

额外信息:

# mysql -uroot -p
mysql> USE vmail;
mysql> SELECT * FROM share_folder;
+-----------------+--------------------+-------+
| from_user       | to_user            | dummy |
+-----------------+--------------------+-------+
| from@domain.ltd | testing@domain.ltd | 1     |
+-----------------+--------------------+-------+

参考资料