Mail.app'daki IMAP hesapları için varsayılan özel klasör adları nelerdir (Taslaklar, Önemsiz, Gönderilmiş gibi)?


11

Kendi e-posta sunucumu kuruyorum. İstemciler IMAP kullanarak bu sunucuya bağlanacak.

Günümüzde, sunucudaki doğru 'özel' klasörleri yerel istemciye (Taslaklar, Önemsiz ve Gönderilmiş gibi) eşlemek mümkündür. Ancak, sunucuma bağlanan cihazların çoğunluğu Mail.app (veya iOS'ta Mail) kullanacağından, sunucudaki varsayılan klasör adlarının Mail.app'ın kullandığı adlara karşılık gelmesi iyi olur (bu yüzden t Klasörleri tüm cihazlarda yeniden eşlemeniz gerekir).

Bu nedenle, sorum şu: Mail.app varsayılan olarak kullanılan özel klasörler nelerdir?

Yanıtlar:


13

İnternet Mühendisliği Görev Gücü (IETF) uygun bir RFC'de RFC 6154'ü tanımlar . Orada özel kullanım posta kutusu mezheplerinin bir listesini bulacaksınız:

   \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
### En uygun cevap standartlara uygun olmalıdır> Yukarı oylama veya yorum yapmak için yeterli itibarım yok, ancak bu cevap Norman Schmidtkabul edilen cevap olmalı.
argon

11

Boş bir IMAP hesabı oluşturdum ve Mac OS X Mountain Lion çalıştıran Mac'imde Mail.app ve Notes.app'a ekledim. Bazı mesajları kaydettikten sonra, tüm varsayılan klasörler Mail.app tarafından oluşturuldu. Sonra Terminal kullanarak IMAP sunucusuna bağlandım ve tüm klasörleri listeledim:

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.

Ham çıktıda görebileceğiniz gibi, tam varsayılan klasör adları aşağıdaki gibidir:

  • GELEN KUTUSU
  • Taslaklar
  • Gönderilmiş Mesajlar
  • Önemsiz
  • Silinen mesajlar
  • Arşiv
  • notlar

Varsayılan olarak yeni IMAP hesapları için bu klasörü oluşturmak üzere e-posta sunucumu güncelledikten sonra Mac bilgisayarıma yeni bir hesap bağladım. Umulduğu gibi, iOS'ta Mail.app ve Mail bu özel klasörleri otomatik olarak kullandı (Mac'te yalnızca "Önemsiz iletileri sunucuda depola" yı etkinleştirmek zorunda kaldım).


Dovecot kullanan kişiler için bu, varsayılan klasörleri içeren ( /etc/dovecot/conf.d/15-mailboxes.conf) sonuçta ortaya çıkan yapılandırma dosyasıdır :

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
  }
}
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.