NEWS 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. [1.5.0]
  2. Changed default config & state locations to follow the XDG basedir spec.
  3. The old locations remain supported.
  4. The reference point for relative local paths in the configuration file
  5. is now the file's containing directory.
  6. Placeholders will be now created for messages exceeding MaxSize even if
  7. they are flagged on the source side.
  8. Renamed the ReNew/--renew/-N options to Upgrade/--upgrade/-u
  9. and Delete/--delete/-d to Gone/--gone/-g.
  10. Superseded SSLVersions option with TLSVersions, and disabled TLS v1.0
  11. and v1.1 by default. Renamed SSLType option to TLSType.
  12. Made the Channel side to expire with MaxMessages configurable.
  13. MaxMessages and MaxSize can be used together now.
  14. Added support for IMAP mailbox names with non-ASCII characters.
  15. Added support for Maildir Paths with suffixes.
  16. The unfiltered list of mailboxes in each Store can be printed now.
  17. A proper summary is now printed prior to exiting.
  18. This includes expunges, which are now included in the progress as well.
  19. Added new sync operation 'Old'.
  20. Added support for mirroring deletions more accurately.
  21. Added --dry-run option.
  22. Added --ext-exit option.
  23. [1.4.0]
  24. The 'isync' compatibility wrapper was removed.
  25. Added support for disabling TLS v1.3 - adjust SSLVersions if you set it.
  26. Removed support for obsolete/insecure SSL v3.
  27. The IMAP '$Forwarded' / Maildir 'P' (passed) flag is supported now.
  28. Support for configuring a TLS cipher string was added.
  29. IMAP mailbox subscriptions are supported now.
  30. The IMAP user query can be scripted now.
  31. Added built-in support for macOS Keychain.
  32. Messages excluded by MaxSize will now result in placeholders.
  33. The use of Master/Slave terminology has been deprecated.
  34. [1.3.0]
  35. Network timeout handling has been added.
  36. Support for proper Maildir++ and a Maildir sub-folder naming style
  37. without extra dots have been added.
  38. Support for TLS client certificates was added.
  39. Support for recovering from baseless UID validity changes was added.
  40. The get-cert script was renamed to mbsync-get-cert.
  41. [1.2.0]
  42. The 'isync' compatibility wrapper is now deprecated.
  43. An IMAP Path/NAMESPACE rooted in INBOX won't be handled specially any more.
  44. This means that some Patterns may need adjustment.
  45. The default output is a lot less verbose now.
  46. The meanings of the -V and -D options changed significantly.
  47. The SSL/TLS configuration has been re-designed.
  48. SSL is now explicitly enabled or disabled - "use SSL if available" is gone.
  49. Notice: Tunnels are assumed to be secure and thus default to no SSL.
  50. Support for SASL (flexible authentication) has been added.
  51. Support for Windows file systems has been added.
  52. Support for compressed data transfer has been added.
  53. Folder deletions can be propagated now.
  54. [1.1.0]
  55. Support for hierarchical mailboxes in Patterns.
  56. Full support for IMAP pipelining (streaming, parallelization) added.
  57. This is considerably faster especially with high-latency networks.
  58. Faster and hopefully more reliable support for IMAP servers without the
  59. UIDPLUS extension (e.g., M$ Exchange).
  60. More automatic handling of SSL certificates.
  61. IPv6 support.
  62. IMAP password query can be scripted.
  63. Message arrival dates can be propagated.
  64. Data safety in case of system crashes was improved.
  65. MaxMessages was made vastly more useful.
  66. [1.0.0]
  67. Essentially a rewrite. Synchronization state storage concept, configuration
  68. and command line changed entirely.
  69. But you needn't to worry about the upgrade, as a fully automated migration
  70. path is provided, even for users of isync 0.7 and below.
  71. Still, you should re-read the manual to be able to take full advantage of the
  72. new features:
  73. The supported mailbox types can be freely paired.
  74. A possible application of this is using a local IMAP server to access
  75. mailboxes that are not natively supported yet.
  76. Message deletions (expunges) are now propagated both ways, so there is no need
  77. for using mutt with maildir_trash any more.
  78. Additional trash options added.
  79. `OneToOne' replaced by something more flexible.
  80. Partial support for IMAP pipelining (streaming, parallelization) added.
  81. Makes flag change propagation much faster - this affects every message that
  82. becomes Seen/Read.
  83. [0.9]
  84. Added Tunnel directive to allow the user to specify a shell command to run
  85. to set up an IMAP connection in place of a TCP socket (eg., to run over
  86. an SSH session).
  87. Added PREAUTH support (useful mostly in conjunction with Tunnel).
  88. Messages marked deleted are not uploaded when we are going to expunge.
  89. Locally generated messages are not re-fetched after uploading even if the
  90. UIDPLUS extension is not supported by the server.
  91. Added `OneToOne' configuration option: ignore any Mailbox specifications
  92. and instead pick up all mailboxes from the local MailDir and remote Folder
  93. and map them 1:1 onto each other according to their names.
  94. -C now creates both local and remote boxes; -L and -R create only local/remote.
  95. --quiet is now really quiet.
  96. [0.8]
  97. !!! IMPORTANT !!!
  98. In order to fix the problem where messages copied from one mailbox to
  99. another were not uploaded to the new mailbox, the way Isync stores the UID
  100. for each message needed to be changed. As a result, you _MUST_ delete all
  101. the messages in the local maildir box before using this version. Otherwise
  102. it will upload every message to the server thinking its a new mail.
  103. [0.7]
  104. Added `MaxMessages' configuration option to allow tracking of only the most
  105. recently added message in the local mailbox.
  106. Added --create (-C) command line option to force creation of the local
  107. maildir-style mailbox if it doesn't already exist.
  108. [0.6]
  109. Added `Delete' configuration option to correspond to the -d command line
  110. option.
  111. Added -a (--all) command line option to synchronize all mailboxes.
  112. [0.5]
  113. Updated SSL support.
  114. Added CRAM authentication support.
  115. Added MailDir configuration option to specify the default location of local
  116. mailboxes when relative paths are used.
  117. Added support for uploading local messages to the IMAP server.
  118. Added CopyDeletedTo configuration option to cause isync to move deleted
  119. messages to a particular mailbox on the server when they are expunged.
  120. [0.4]
  121. Added MaxSize configuration option to limit downloading of new messages from
  122. the server to less than some threshold.
  123. More robust --fast option works without using \Recent flags, so the previous
  124. problem with multiple accesses killing these flags is no longer a problem.
  125. RFC2060 obsoleted RFC822.PEEK, use BODY.PEEK[] instead which does the same
  126. job.
  127. Don't need to request UID in a FETCH when doing UID FETCH (RFC2060 states
  128. that its automatically returned).
  129. [0.3]
  130. Fixed to clean up temp maildir files when the fetch of a new message failed.
  131. Fixed to not assume order of the flags returned by "UID FETCH"
  132. Added support for building RPMs.
  133. [0.2]
  134. SSL support added.
  135. [0.1]
  136. Initial release.