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

网络编程

开发平台:

Unix_Linux

  1.        .imaprc secrets revealed!
  2.     Mark Crispin, December 31, 1997
  3. The following information describes the format of the /etc/c-client.cf
  4. and ~/.imaprc file.  The Columbia MM ~/.mminit file is also read by
  5. c-client; however, the only command that ~/.mminit has in common is
  6. set keywords.
  7. **********************************************************************
  8. *      DANGER!  BEWARE!  TAKE CARE!      *
  9. **********************************************************************
  10. *      *
  11. *  These files, and this documentation, are for internal UW usage    *
  12. * only.  This capability is for UW experimental tinkering, and most  *
  13. * emphatically *not* for sorcerer's apprentices at other sites who   *
  14. * feel that if a config file capability exists, they must write a    *
  15. * config file whether or not there is any need for one.      *
  16. *      *
  17. *  This information is subject to change without notice.  Commands   *
  18. * may be added, removed, or altered.  The behavior of comamnds may   *
  19. * change.  Do not use any of this information without consulting me  *
  20. * first.  c-client's defaults have been carefully chosen to be right *
  21. * for general-purpose and most special-purpose configurations.  If   *
  22. * you tinker with these defaults, all hell may break loose.      *
  23. *      *
  24. *  This is not an idle threat.  There have been several instances of *
  25. * people who ignored these warnings and have gotten burned.      *
  26. *      *
  27. *  Don't even trust this file to work.  Many of the things which can *
  28. * be changed by this file can also be changed by the application,    *
  29. * and it is totally unpredictable which will take precedence.  It    *
  30. * all depends upon how the application is coded.  Not only that, you *
  31. * may cause the application to crash.                                *
  32. *      *
  33. *  In other words, keep your cotton-pickin' hands off my defaults.   *
  34. * If it crashes and erases your mail, I don't want to hear about it. *
  35. * Consider 'em ``mandatory defaults''.  Got a nice ring, eh?  :-) If *
  36. * you must tinker with defaults, play with the .pinerc and pine.conf *
  37. * files in Pine.  It's got options galore, all supported for you to  *
  38. * have fun.  They're also documented; so well documented, it takes   *
  39. * two strong men to carry around all the documentation.  ;-) ;-)     *
  40. *      *
  41. *  Joking aside, you really shouldn't be fooling around with this    *
  42. * capability.  It's dangerous, and you can shoot yourself in the     *
  43. * foot easily.  If you need custom changes, you are better off with  *
  44. * local source code modifications.  Seriously.      *
  45. *      *
  46. *  One last warning: don't believe anything that you read in this    *
  47. * document.  Every effort has been made to ensure that this document *
  48. * is incomplete and inaccurate, and I take no responsibility for any *
  49. * glimmers of correct information that may, by some fluke, be here.  *
  50. *      *
  51. **********************************************************************
  52. The files are read in order: /etc/c-client.cf, ~/.mminit, ~/.imaprc,
  53. and an entry in a later file overrides the setting of an earlier file
  54. except as noted below.  This ordering and overriding behavior may
  55. change without notice.
  56. Almost all of these facilities can also be set via the mail_parameters()
  57. call in the program.  Whether the file overrides mail_parameters(), or
  58. mail_parameters() overrides the file, is indeterminate.  It will vary
  59. from program to program, and it may be one way in one version and the
  60. other way in the next version.  It's completely unpredictable, and so
  61. anything you do with these files has to be in complete knowledge of what
  62. the version of each program you're running is going to do.  This is
  63. because the files do something for testing, but the real capability for
  64. configurability is put in the program instead.  Are you getting the
  65. feeling that you shouldn't be messing with these files yet?
  66. The very first line of the file MUST be the exact string "I accept the
  67. risk for IMAP toolkit 4.1."  This ensures that you have checked the
  68. file for correctness against this version of the IMAP toolkit.  This
  69. enable string will change without notice in future versions, and the
  70. new string may or may not be accurately described in an updated
  71. version of this file.  So any time you install software that uses the
  72. IMAP toolkit, you need to check the new version against these files
  73. (if you have insisted upon creating them in spite of all warnings).
  74. If two pieces of software use different versions of the IMAP toolkit
  75. with incompatible requirements, one of them won't work.  Re-read the
  76. warning above about why you should not use these files.
  77. Subsequent lines are read from the file one at a time.  Case does not
  78. matter.  Unrecognized commands are ignored.
  79. 1) set new-folder-format
  80.    sets what format new mailboxes are created in.  This also controls
  81.    default delivery via tmail and dmail.
  82.    a) set new-folder-format same-as-inbox
  83.       Folder is created using the same mailbox format as INBOX.  If
  84.       INBOX is empty, it defaults to system standard.
  85.    b) set new-folder-format system-standard
  86.       This is the default.  Folder is created using the wired-in system
  87.       standard format, which on most UNIX systems is ordinary UNIX
  88.       /bin/mail format.  On SCO systems, this is MMDF.
  89.    c) set new-folder-format <driver name>
  90.       Folder is created using the given driver name, e.g. mbx, unix,
  91.       mmdf, etc.
  92.    There is no protection against setting this to a silly value (e.g.
  93.    news, nntp, dummy) and doing so is a great way to screw things up.
  94.    Setting this to mh does not do what you think it does.  Setting this
  95.    to tenex or mtx isn't particularly useful.
  96. 2) set empty-folder-format
  97.    sets what format data is written into an empty mailbox file using
  98.    mail_copy() or mail_append().  This also controls default delivery
  99.    via tmail.
  100.    a) set empty-folder-format same-as-inbox
  101.       Data is written using the same mailbox format as INBOX.  If
  102.       INBOX is empty, it defaults to system standard.
  103.    b) set empty-folder-format system-standard
  104.       This is the default.  Data is written using the wired-in system
  105.       standard format, which on most UNIX systems is ordinary UNIX
  106.       /bin/mail format.  On SCO systems, this is MMDF.
  107.    c) set-empty-folder-format <driver name>
  108.       Data is written using the given driver name, e.g. tenex, unix,
  109.       mmdf, etc.
  110.    There is no protection against setting this to a silly value (e.g.
  111.    news, nntp, dummy) and doing so is a great way to screw things up.
  112.    Setting this to mh, mbx, or mx does not work.
  113. 3) set keywords <word1>, <word2>, ... <wordn>
  114.    Sets the list of keyword flags (supported by tenex and mtx) to the
  115.    given list.  Up to 30 flags may be given.  Since these names
  116.    correspond to numeric bits, the order of the keywords can not be
  117.    changed, nor can keywords be removed or inserted (you can append
  118.    new keywords, up to the limit of 30).
  119.    Set keywords is a deprecated command.  It may not appear in
  120.    future versions, or it may appear in a changed form.  It exists
  121.    only for compatibility with MM, and should only appear in ~/.mminit
  122.    and not in the other files.  It is likely to disappear entirely in
  123.    IMAP4.
  124.    There is no protection against setting these to silly values, and
  125.    doing so is a great way to cause a crash.
  126. 4) set from-widget header-only
  127.    Sets smart insertion of the > character in front of lines that
  128.    begin with ``From ''.  Only such lines that are also in UNIX mbox
  129.    header file format will have a > character inserted.  The default
  130.    is to insert the > character in front of all lines which begin with
  131.    ``From '', for the benefit of legacy tools that get confused
  132.    otherwise.
  133. 5) set black-box-directory <directory name>
  134.    Sets the directory in which the user's data can be found.  A user's
  135.    folders can be found in a subdirectory of the black box directory
  136.    named with the user's username.  For example, if the blackbox
  137.    directory is /usr/spool/folders/, user jones' data can be found
  138.    in /usr/spool/folders/jones/.  The user's black-box directory is
  139.    the location of folders, .mminit, .imaprc, .newsrc, and all other
  140.    files used by c-client; internally, it sets c-client's idea of the
  141.    user's ``home directory'', overriding /etc/passwd.
  142.    This command may not appear in ~/.mminit or ~/.imaprc
  143.    In black-box mode, it is not permitted to access any folders
  144.    outside of the user's personal blackbox directory.  The breakouts
  145.    ``/'', ``~'', and ``..'' are not permitted.
  146.    There is no protection against setting this to a silly value, and
  147.    doing so is a great way to cause a crash.
  148. 6) set local-host <host name>
  149.    Sets c-client's idea of the local host name.
  150.    There is no protection against setting this to a silly value, and
  151.    doing so is a great way to cause a crash.
  152. 7) set news-active-file <file name>
  153.    Sets the location of the news active file, if it is not in the
  154.    standard place.
  155.    It is recommended to use a courtesy symbolic link instead.
  156.    There is no protection against setting this to a silly value, and
  157.    doing so is a great way to cause a crash.
  158. 8) set news-spool-directory <directory name>
  159.    Sets the location of the news spool, if it is not in the standard
  160.    place.
  161.    It is recommended to use a courtesy symbolic link instead.
  162.    There is no protection against setting this to a silly value, and
  163.    doing so is a great way to cause a crash.
  164. 9) set news-state-file <file name>
  165.    Sets the location of the news state file (normally $(USER)/.newsrc).
  166.    This is not very useful in /etc/c-client.cf because it is a file name.
  167.    Setting this in /etc/c-client.cf would set all users to the same file
  168.    as their newsrc, which is probably not what you want.
  169.    There is no protection against setting this to a silly value, and
  170.    doing so is a great way to cause a crash.
  171. 10) set system-inbox <file name>
  172.    Sets the location of the "system inbox", if it is not in the standard
  173.    place.  This is the default location of INBOX, or the mail drop point
  174.    from which mail is snarfed (e.g. in tenex, mtx, mbox, mh formats).
  175.    This is not very useful in /etc/c-client.cf because it is a file name.
  176.    Setting this in /etc/c-client.cf would set all users to the same file
  177.    as their system inbox, which is probably not what you want.
  178.    There is no protection against setting this to a silly value, and
  179.    doing so is a great way to cause a crash.
  180. 11) set tcp-open-timeout <number>
  181.     Sets the number of seconds that the TCP routines will block on opening
  182.     a TCP connection before timing out.  If a timeout occurs, the connection
  183.     attempt is aborted.
  184.     The default is zero, meaning use the operating system default (75
  185.     seconds on most UNIX systems).
  186.     There is no protection against setting this to an excessively small
  187.     value, such as 1, and doing so is a great way to cause users extreme
  188.     grief.
  189. 12) set tcp-read-timeout <number>
  190.     Sets the number of seconds that the TCP routines will block on reading
  191.     data before calling the timeout routine.  If no timeout routine is set
  192.     by the program, the connection will be aborted on a timeout.
  193.     The default is zero, meaning infinite.
  194.     There is no protection against setting this to an excessively small
  195.     value, such as 1, and doing so is a great way to cause users extreme
  196.     grief.
  197. 13) set tcp-write-timeout <number>
  198.     Sets the number of seconds that the TCP routines will block on sending
  199.     data before calling the timeout routine.  If no timeout routine is set
  200.     by the program, the connection will be aborted on a timeout.
  201.     The default is zero, meaning infinite.
  202.     There is no protection against setting this to an excessively small
  203.     value, such as 1, and doing so is a great way to cause users extreme
  204.     grief.
  205. 14) set rsh-timeout <number>
  206.     Sets the number of seconds that the rsh routines will block on opening
  207.     an rimapd connection before timing out.  If a timeout occurs, the
  208.     rsh connection attempt is aborted.  A zero timeout will disable rsh.
  209.     The default is 15 seconds.
  210.     There is no protection against setting this to an excessively small
  211.     value, such as 1, and doing so is a great way to cause users extreme
  212.     grief.
  213. 15) set maximum-login-trials <number>
  214.     Sets the number of iterations of asking the user, via mm_login(), for
  215.     a user name and password, before cancelling the attempt.
  216.     The default is 3.
  217.     There is no protection against setting this to zero, and doing so is
  218.     a great way to cause users extreme grief.
  219. 16) set lookahead <number>
  220.     Sets the number of envelopes that are looked ahead in IMAP, in
  221.     mail_fetchstructure().  This is based on the guess that in such
  222.     operations as drawing browser lines, if you get data for message n
  223.     you are likely to want it for message n+1, n+2,... in short order.
  224.     Lookahead preloads the c-client  cache and saves unnecessary RTTs.
  225.     The default is 20, a good number for a browser on a 24x80 screen, and
  226.     small enough to usually have no significant real-time difference from
  227.     a single message fetch.
  228.     Setting it to 0 turns off lookahead.
  229.     There is no protection against setting this ridiculously high and
  230.     incurring performance penalties as a result.
  231. 17) set prefetch <number>
  232.     Sets the number of envelops which are automatically fetched for the
  233.     messages which match in a search.  This is based on the guess that
  234.     in a browser that is "zoomed" on the results of a search, you are
  235.     likely to want the envelope data for each of those messages in
  236.     short order.  Prefetching reloads the c-client cache, saves
  237.     unnecessary RTTs, and avoids loading undesired envelopes due to
  238.     lookahead (see above).
  239.     The default is 20.
  240.     Setting it to 0 turns off prefetch.
  241.     There is no protection against setting this ridiculously high and
  242.     incurring performance penalties as a result.
  243. 18) set close-on-error <number>
  244.     If non-zero, IMAP connections are closed if an EXAMINE or SELECT
  245.     command fails.  Otherwise, they are left half-open, and can be used
  246.     again to select some other mailbox.  The mailbox name in the stream
  247.     is set to {serverhost}<no_mailbox>
  248.     The default is zero (do not close on error).
  249. 19) set imap-port <number>
  250.     Set the TCP/IP contact port to use for IMAP.  This overrides the
  251.     wired-in setting and the setting from /etc/services, and can in
  252.     turn be overridden by an explicit user specification in the mailbox
  253.     name, e.g. {serverhost:143}foo
  254.     The default is zero (use setting from /etc/services or the wired-in
  255.     setting (143).
  256.     There is no protection against setting this to a silly value, and
  257.     doing so is a great way to cause users extreme grief.
  258. 20) set pop3-port <number>
  259.     Set the TCP/IP contact port to use for POP3.  This overrides the
  260.     wired-in setting and the setting from /etc/services, and can in
  261.     turn be overridden by an explicit user specification in the mailbox
  262.     name, e.g. {serverhost:110/pop3}
  263.     The default is zero (use setting from /etc/services or the wired-in
  264.     setting (110).
  265.     There is no protection against setting this to a silly value, and
  266.     doing so is a great way to cause users extreme grief.
  267. 21) set uid-lookahead <number>
  268.     Sets the number of UIDs that are looked ahead in IMAP in mail_uid().
  269.     Lookahead preloads the c-client cache and saves unnecessary RTTs.
  270.     The default is 1000, small enough to usually have no significant
  271.     real-time difference from a single message UID fetch.
  272.     Setting it to 0 turns off lookahead.
  273.     There is no protection against setting this ridiculously high and
  274.     incurring performance penalties as a result.
  275. 22) set mailbox-protection <number>
  276.     Set the default protection for newly-created mailbox files.
  277.     The default is 384.
  278.     There is no protection against setting this to a silly value, and
  279.     doing so is a great way to screw things up massively.
  280. 23) set directory-protection <number>
  281.     Set the default protection for newly-created directories.
  282.     The default is 448.
  283.     There is no protection against setting this to a silly value, and
  284.     doing so is a great way to screw things up massively.
  285. 24) set lock-protection <number>
  286.     Set the default protection for lock files
  287.     The default is 438, which is necessary if locks are to be respected
  288.     by processes running as other UIDs.
  289.     There is no protection against setting this to a silly value, and
  290.     contrary to what you may think just about any value other than 438
  291.     turns out to be a silly value.
  292. 25) set disable-fcntl-locking <number>
  293.     This only applies to SVR4 systems.
  294.     If non-zero, fnctl() locking is not attempted.  In the past, this
  295.     was used to avoid locking NFS files.  If NFS is involved, the evil
  296.     lockd/statd daemons get invoked.  These daemons supposedly work over
  297.     NFS, but really don't.
  298.     You probably don't really want to do this, though, because now the
  299.     flock() emulator (which calls fcntl()) now checks to see if the file
  300.     is accessed via NFS and no-ops the lock.  This is compatible with
  301.     BSD.
  302.     Disabling fcntl() locking loses a great deal of locking protection
  303.     on local files as well as NFS files (which now never have locking
  304.     protection).
  305.     The default is zero (fcntl() locking is enabled).
  306.     It is HIGHLY RECOMMENDED that you build c-client using the
  307.     -DSVR4_DISABLE_FLOCK build option instead.  You should probably
  308.     also enable EACCES errors (see below).
  309. 26) set lock-EACCES-error <number>
  310.     If non-zero, a warning message is given if an attempt to create a
  311.     lock file fails.  Otherwise, EACCES is treated as a "silent failure",
  312.     and it proceeds without trying to use the lock file.  This is for
  313.     the benefit of users on systems with paranoid /usr/spool/mail
  314.     protections which don't let users create /usr/spool/mail/$(USER).lock
  315.     files; these unfortunate users would be harassed with a flood of
  316.     error messages otherwise.  The problem is that on SVR4, if EACCES
  317.     remains disabled and fcntl() locking is also disabled, then there is
  318.     no locking at all which is doubleplus-ungood.
  319.     If the site is paranoid on /usr/spool/mail protections AND if there
  320.     is no fcntl() locking (SVR4) or usable flock() locking (e.g. NFS),
  321.     then there is no way to win.  Find a different system to use.
  322.     The default is non-zero (report EACCESS as an error).
  323.     It is HIGHLY RECOMMENDED that you build c-client using the
  324.     -DIGNORE_LOCK_EACCES_ERRORS build option instead.
  325. 27) set list-maximum-level <number>
  326.     Sets the maximum depth of recursion that a * wildcard list will go
  327.     down the directory tree.  0 means that no recursion is permitted,
  328.     and * becomes like %.
  329.     The default is 20.
  330.     There is no protection against setting this to a ridiculously high
  331.     value.  Since LIST will follow symbolic links, it can effectively
  332.     recurse infinitely, until the name strings get large enough that
  333.     some name limit is exceeded.
  334. 28) set anonymous-home-directory <directory name>
  335.    Sets the location of the anonymous home directory, if it is not in
  336.    the standard  place.
  337.    It is recommended to use a courtesy symbolic link instead.
  338.    There is no protection against setting this to a silly value, and
  339.    doing so is a great way to cause a crash.