X

Dovecot Otomatik Klasör Oluşturma

Dovecot kullanımında, bir hesap açtıktan sonra, otomatik olarak klasör (spam, gönderilmiş öğeler vs. gibi) oluşturmak için aşağıdaki adımları izleriz.

dovecot.conf dosyasını açalım. (linuxlarda /etc/dovecot dizininde, unixlerde /usr/local/etc/dovecot dizinindedir.

namespace { ibaresini gördüğüm yerin altına aşağıdaki satırları yapıştırıp, kendi isteğimize göre değiştirelim.

namespace {
type = private
separator = .
prefix = INBOX.
inbox = yes

}

inbox = yes
location =
prefix =
mailbox “Deleted Items” {
auto = create
special_use = \Trash
}
mailbox “Drafts” {
auto = create
special_use = \Drafts
}
mailbox “Archive” {
auto = create
special_use = \Archive
}
mailbox “Sent Items” {
auto = create
special_use = \Sent
}
mailbox “Junk Mail” {
auto = create
special_use = \Junk
}
}

admin: