Apa nama folder khusus default untuk akun IMAP di Mail.app (seperti Draf, Sampah, Terkirim)?


11

Saya sedang menyiapkan server email saya sendiri. Klien akan terhubung ke server ini menggunakan IMAP.

Saat ini dimungkinkan untuk memetakan folder 'khusus' yang benar di server ke klien lokal (seperti Draf, Junk, dan Terkirim). Namun, karena sebagian besar perangkat yang terhubung ke server saya akan menggunakan Mail.app (atau Mail di iOS), alangkah baiknya jika nama folder default pada server sesuai dengan nama yang digunakan Mail.app (jadi saya tidak t harus memetakan ulang folder pada semua perangkat).

Oleh karena itu, pertanyaan saya adalah: apakah nama folder khusus yang digunakan Mail.app secara default?

Jawaban:


13

Internet Engineering Task Force (IETF) mendefinisikan bahwa dalam RFC yang tepat, RFC 6154 . Di sana Anda akan menemukan daftar denominasi kotak surat penggunaan khusus:

   \All
      This mailbox presents all messages in the user's message store.
      Implementations MAY omit some messages, such as, perhaps, those
      in \Trash and \Junk.  When this special use is supported, it is
      almost certain to represent a virtual mailbox.

   \Archive
        This mailbox is used to archive messages.  The meaning of an
        "archival" mailbox is server-dependent; typically, it will be
        used to get messages out of the inbox, or otherwise keep them
        out of the user's way, while still making them accessible.

   \Drafts
        This mailbox is used to hold draft messages -- typically,
        messages that are being composed but have not yet been sent.  In
        some server implementations, this might be a virtual mailbox,
        containing messages from other mailboxes that are marked with
        the "\Draft" message flag.  Alternatively, this might just be
        advice that a client put drafts here.

   \Flagged
        This mailbox presents all messages marked in some way as
        "important".  When this special use is supported, it is likely
        to represent a virtual mailbox collecting messages (from other
        mailboxes) that are marked with the "\Flagged" message flag.

   \Junk
        This mailbox is where messages deemed to be junk mail are held.
        Some server implementations might put messages here
        automatically.  Alternatively, this might just be advice to a
        client-side spam filter.

   \Sent
        This mailbox is used to hold copies of messages that have been
        sent.  Some server implementations might put messages here
        automatically.  Alternatively, this might just be advice that a
        client save sent messages here.

   \Trash
        This mailbox is used to hold messages that have been deleted or
        marked for deletion.  In some server implementations, this might
        be a virtual mailbox, containing messages from other mailboxes
        that are marked with the "\Deleted" message flag.
        Alternatively, this might just be advice that a client that
        chooses not to use the IMAP "\Deleted" model should use this as
        its trash location.  In server implementations that strictly
        expect the IMAP "\Deleted" model, this special use is likely not
        to be supported.

2
### Jawaban yang paling relevan harus sesuai dengan standar> Saya tidak memiliki reputasi yang cukup untuk memberikan suara atau komentar, tetapi jawaban ini Norman Schmidtharus jawaban yang diterima.
argon

11

Saya membuat akun IMAP kosong dan menambahkannya ke Mail.app dan Notes.app di Mac saya yang menjalankan OS X Mountain Lion. Setelah menyimpan beberapa pesan, semua folder default dibuat oleh Mail.app. Lalu saya terhubung ke server IMAP menggunakan Terminal dan mendaftar semua folder:

A1 LIST "" "%"
* LIST (\HasNoChildren) "." "Sent Messages"
* LIST (\HasNoChildren) "." "Junk"
* LIST (\HasNoChildren) "." "Archive"
* LIST (\HasNoChildren) "." "Deleted Messages"
* LIST (\HasNoChildren) "." "Notes"
* LIST (\HasNoChildren) "." "Drafts"
* LIST (\HasNoChildren) "." "INBOX"
A1 OK List completed.

Seperti yang Anda lihat di output mentah, nama folder default yang tepat adalah sebagai berikut:

  • INBOX
  • Draf
  • Pesan terkirim
  • Sampah
  • Pesan yang dihapus
  • Arsipkan
  • Catatan

Setelah memperbarui server email saya untuk membuat folder ini untuk akun IMAP baru secara default, saya menghubungkan akun baru ke Mac saya. Seperti yang diharapkan, Mail.app dan Mail di iOS secara otomatis menggunakan folder khusus ini (saya hanya perlu mengaktifkan "Simpan pesan sampah di server" di Mac).


Bagi mereka yang menggunakan Dovecot juga, ini adalah file konfigurasi yang dihasilkan dengan folder default yang disertakan ( /etc/dovecot/conf.d/15-mailboxes.conf):

namespace inbox {
  mailbox Drafts {
    auto = subscribe
    special_use = \Drafts
  }

  mailbox "Sent Messages" {
    auto = subscribe
    special_use = \Sent
  }

  mailbox Junk {
    auto = subscribe
    special_use = \Junk
  }

  mailbox "Deleted Messages" {
    auto = subscribe
    special_use = \Trash
  }

  mailbox Archive {
    auto = subscribe
    special_use = \Archive
  }

  mailbox Notes {
    auto = subscribe
  }
}
Dengan menggunakan situs kami, Anda mengakui telah membaca dan memahami Kebijakan Cookie dan Kebijakan Privasi kami.
Licensed under cc by-sa 3.0 with attribution required.