나는 비둘기장을 운영하고 있습니다 :
$ dovecot -n
# 2.2.18: /etc/dovecot/dovecot.conf
# OS: Linux 4.1.0-x86_64-linode59 x86_64 Fedora release 22 (Twenty Two) ext4
auth_debug = yes
auth_mechanisms = plain login digest-md5 cram-md5
auth_verbose = yes
auth_verbose_passwords = yes
default_internal_user = root
imap_client_workarounds = delay-newmail tb-extra-mailbox-sep
mail_debug = yes
mail_location = maildir:/home/vmail/%d/%n/Maildir
maildir_very_dirty_syncs = yes
mbox_write_locks = fcntl
namespace {
inbox = yes
location =
prefix = INBOX.
separator = .
type = private
}
namespace inbox {
location =
mailbox Drafts {
special_use = \Drafts
}
mailbox Junk {
special_use = \Junk
}
mailbox Sent {
special_use = \Sent
}
mailbox "Sent Messages" {
special_use = \Sent
}
mailbox Trash {
special_use = \Trash
}
prefix =
}
passdb {
args = /etc/dovecot/dovecot-sql.conf.ext
driver = sql
}
postmaster_address = pmatos
protocols = imap
quota_full_tempfail = yes
service auth {
unix_listener /var/spool/postfix/private/auth {
group = postfix
mode = 0666
user = postfix
}
unix_listener auth-master {
mode = 0600
user = vmail
}
user = $default_internal_user
}
ssl = required
ssl_cert = </etc/pki/dovecot/certs/dovecot.pem
ssl_key = </etc/pki/dovecot/private/dovecot.pem
userdb {
args = uid=5000 gid=5000 home=/home/vmail/%d/%n allow_all_users=yes
driver = static
}
protocol lda {
auth_socket_path = /var/run/dovecot/auth-master
deliver_log_format = msgid=%m: %$
log_path = /home/vmail/dovecot-deliver.log
}
protocol imap {
mail_max_userip_connections = 100
}
나는 dovecot과 동일한 호스트에서 실행되는 imapfilter를 사용하여 이메일을 필터링하기 시작했습니다. 그래서 PreINBOX
imapfilter가 이메일을 정렬하고 유용한 이메일만 에 보낼 수 있도록 이름이 지정된 폴더에 이메일을 보내고 싶습니다 INBOX
.
비둘기장을 배송받은 편지함의 이름을 변경하는 방법은 무엇입니까?
답변1
비둘기장을 재구성하면 원하는 것을 얻을 수 있습니다또는 접미사.
[귀하의 댓글에 Podtfix가 언급되었습니다.]
간단한 수정은 postfix가 메일러를 사용하여 virtual
새 메시지를 /home/vmail/%d/%n/Maildir/.PreINBOX/
maildir에 전달하도록 하는 것입니다.
Postfix 가상 MAILBOX 예: 별도의 도메인, 비 UNIX 계정
[postfix를 통해 가상 메일함/maildir로 직접 전달]