naming.txt
上传用户:ycwykj01
上传日期:2007-01-04
资源大小:1819k
文件大小:3k
源码类别:

网络编程

开发平台:

Unix_Linux

  1.        Mailbox Name Conventions
  2.      Mark Crispin
  3.      19 May 1998
  4. Please refer to the file drivers.txt for related information.
  5. I. Special names
  6. Special names appear by themselves.
  7. I.a. INBOX
  8. The name INBOX is special and refers to primary incoming message
  9. mailbox on the local system.
  10. I.b. #mhinbox (UNIX only)
  11. The name #mhinbox is special and refers to the primary incoming mh
  12. format mailbox on the local system.  Don't worry about this if you
  13. don't know what mh format is.
  14. II.  Special prefixes
  15. All names which start with a "#" have a "special prefix" which
  16. identifies an alternative namespace.  Special prefixes appear in front
  17. of some additional text which constitutes a suffix.
  18. II.a. #mh/ (UNIX only)
  19. The prefix #mh/ is special and refers to the mh format mailbox named
  20. with the suffix.  For example, #mh/foo refers to the mh format mailbox
  21. named foo.  Don't worry about this if you don't know what mh format is.
  22. II.b. #news. (UNIX only)
  23. The prefix #news. is special and refers to the newsgroup named with
  24. the suffix.  For example, #news.comp.mail.misc refers to the newsgroup
  25. named comp.mail.misc.
  26. II.c. #ftp/ (UNIX only)
  27. The prefix #ftp/ is special and refers to the anonymous ftp filesystem
  28. named with the suffix.  For example, #ftp/foo/bar refers to the file
  29. /foo/bar in the anonymous FTP filesystem.  Anonymous FTP files are
  30. available to anonymous IMAP logins.
  31. II.d. #public/ (UNIX only)
  32. The prefix #publis/ is special and refers to the public files
  33. filesystem named with the suffix.  For example, #public/foo/bar refers
  34. to the file /foo/bar in the public filesystem.  Public files are
  35. available to anonymous IMAP logins.
  36. II.e. #shared/ (UNIX only)
  37. The prefix #shared/ is special and refers to the shared files
  38. filesystem named with the suffix.  For example, #shared/foo/bar
  39. frefers to the file /foo/bar in the shared filesystem.
  40. III. Remote names
  41. All names which start with "{" are remote names, and are in the form
  42. "{" remote_system_name [":" port] [flags] "}" [mailbox_name]
  43. where:
  44.  remote_system_name Internet domain name or bracketed IP address
  45.  of server.
  46.  port optional TCP port number, default is the
  47.  default port for that service
  48.  flags optional flags, one of the following:
  49.   "/service=" service mailbox access service, default is "imap"
  50.   "/user=" user remote user name for login on the server
  51.   "/anonymous" remote access as anonymous user
  52.   "/debug" record protocol telemetry in application's
  53.  debug log
  54.   "/secure" do not transmit a plaintext password over
  55.  the network
  56.   "/imap", "/imap2", "/imap2bis", "/imap4", "/imap4rev1"
  57. equivalent to /service=imap
  58.   "/pop3" equivalent to /service=pop3
  59.   "/nntp" equivalent to /service=nntp
  60.  mailbox_name remote mailbox name, default is INBOX
  61. For example:
  62. {imap.foo.com}INBOX
  63. opens an IMAP connection to system imap.foo.com and selects INBOX.
  64. IV. All other names
  65. All other names are treated as local file names, relative to the
  66. user's home directory.  Read drivers.txt for more details.