Які імена спеціальних папок для облікових записів IMAP у Mail.app (як Drafts, Junk, Sent)?


11

Я налаштовую власний сервер електронної пошти. Клієнти підключаться до цього сервера за допомогою IMAP.

На сьогоднішній день можна зіставити правильні "спеціальні" папки на сервері з локальним клієнтом (як Drafts, Junk і Sent). Однак, оскільки більшість пристроїв, що підключаються до мого сервера, використовуватимуть Mail.app (або Mail на iOS), було б непогано, якщо назви папок за замовчуванням на сервері відповідають іменам, які використовує Mail.app (тому я не не доведеться перезавантажувати папки на всіх пристроях).

Тому моє запитання таке: які імена спеціальних папок Mail.app використовує за замовчуванням?

Відповіді:


13

Робоча група з Інтернет-інженерії (IETF) визначає, що у відповідному RFC - RFC 6154 . Там ви знайдете список найменувань поштової скриньки спеціального користування:

   \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
### Найвідповідніша відповідь повинна відповідати стандартам> У мене недостатньо репутації для голосування або коментарів, але ця відповідь Norman Schmidtмає бути прийнятою відповіддю.
аргон

11

Я створив порожній обліковий запис IMAP і додав його до Mail.app і Notes.app на моєму Mac з ОС X X Mountain Lion. Після збереження деяких повідомлень всі папки за замовчуванням були створені Mail.app. Потім я підключився до сервера IMAP за допомогою терміналу та перерахував усі папки:

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.

Як ви бачите у вихідному вихідному описі, точні назви папок за замовчуванням такі:

  • INBOX
  • Чернетки
  • Надіслані повідомлення
  • Небажана
  • Видалені повідомлення
  • Архів
  • Примітки

Після оновлення сервера електронної пошти для створення цих папок для нових облікових записів IMAP за замовчуванням я підключив новий обліковий запис до свого Mac. Як і сподівалося, Mail.app і Mail на iOS автоматично використовували ці спеціальні папки (мені потрібно було лише ввімкнути "Зберігати непотрібні повідомлення на сервері" на Mac).


Для тих, хто також використовує Dovecot, це конфігураційний файл, що містить папки за замовчуванням ( /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
  }
}
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.