Quali sono i nomi delle cartelle speciali predefinite per gli account IMAP in Mail.app (come Bozze, Posta indesiderata, Posta inviata)?

10

Sto configurando il mio server di posta elettronica. I client si collegheranno a questo server utilizzando IMAP.

Al giorno d'oggi è possibile mappare le cartelle "speciali" corrette sul server sul client locale (come Bozze, Posta indesiderata e Posta inviata). Tuttavia, poiché la maggior parte dei dispositivi che si collegano al mio server utilizzeranno Mail.app (o Mail su iOS), sarebbe bello se i nomi delle cartelle predefinite sul server corrispondessero ai nomi utilizzati da Mail.app (quindi non lo faccio) t devono rimappare le cartelle su tutti i dispositivi).

Pertanto, la mia domanda è: quali sono i nomi delle cartelle speciali che Mail.app utilizza di default?

    
posta Jonathan 13.10.2013 - 14:16
fonte

2 risposte

10

Ho creato un account IMAP vuoto e l'ho aggiunto a Mail.app e Notes.app sul mio Mac con OS X Mountain Lion. Dopo aver salvato alcuni messaggi, tutte le cartelle predefinite sono state create da Mail.app. Poi mi sono collegato al server IMAP utilizzando Terminal e elencato tutte le cartelle:

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.

Come puoi vedere nell'output grezzo, i nomi esatti delle cartelle predefinite sono i seguenti:

  • Posta in arrivo
  • Bozze
  • Messaggi inviati
  • Junk
  • Messaggi eliminati
  • Archivia
  • Note

Dopo aver aggiornato il mio server di posta elettronica per creare questa cartella per i nuovi account IMAP per impostazione predefinita, ho collegato un nuovo account al mio Mac. Come speravo, Mail.app e Mail su iOS utilizzavano automaticamente queste cartelle speciali (dovevo solo abilitare "Memorizza messaggi indesiderati sul server" su Mac).

Anche per quelli che usano Dovecot, questo è il file di configurazione risultante con le cartelle predefinite incluse ( /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
  }
}
    
risposta data 13.10.2013 - 14:16
fonte
9

L'Internet Engineering Task Force (IETF) definisce che in una RFC corretta, la RFC 6154 . Lì troverai un elenco di denominazioni della cassetta postale per uso speciale:

   \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.
    
risposta data 21.08.2015 - 16:21
fonte

Leggi altre domande sui tag