InterviewSolution
| 1. |
What Is Maildir ? |
|
Answer» Maildir is a mailbox format created by Dan Bernstein to address the shortcomings of the mbox format. A maildir mailbox is a directory containing three subdirectories, NEW, cur, and tmp. Each MESSAGE in a maildir mailbox is in a separate file in one of the subdirectories, DEPENDING upon its status: new is for unread messages, cur is for messages that have been SEEN, and tmp is for messages in the PROCESS of being delivered. Maildir is a mailbox format created by Dan Bernstein to address the shortcomings of the mbox format. A maildir mailbox is a directory containing three subdirectories, new, cur, and tmp. Each message in a maildir mailbox is in a separate file in one of the subdirectories, depending upon its status: new is for unread messages, cur is for messages that have been seen, and tmp is for messages in the process of being delivered. |
|