NEWS 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. [1.1.0]
  2. Support for hierarchical mailboxes in Patterns.
  3. Full support for IMAP pipelining (streaming, parallelization) added.
  4. This is considerably faster especially with high-latency networks.
  5. Faster and hopefully more reliable support for IMAP servers without the
  6. UIDPLUS extension (e.g., M$ Exchange).
  7. More automatic handling of SSL certificates.
  8. IPv6 support.
  9. IMAP password query can be scripted.
  10. Message arrival dates can be propagated.
  11. Data safety in case of system crashes was improved.
  12. MaxMessages was made vastly more useful.
  13. [1.0.0]
  14. Essentially a rewrite. Synchronization state storage concept, configuration
  15. and command line changed entirely.
  16. But you needn't to worry about the upgrade, as a fully automated migration
  17. path is provided, even for users of isync 0.7 and below.
  18. Still, you should re-read the manual to be able to take full advantage of the
  19. new features:
  20. The supported mailbox types can be freely paired.
  21. A possible application of this is using a local IMAP server to access
  22. mailboxes that are not natively supported yet.
  23. Message deletions (expunges) are now propagated both ways, so there is no need
  24. for using mutt with maildir_trash any more.
  25. Additional trash options added.
  26. `OneToOne' replaced by something more flexible.
  27. Partial support for IMAP pipelining (streaming, parallelization) added.
  28. Makes flag change propagation much faster - this affects every message that
  29. becomes Seen/Read.
  30. [0.9]
  31. Added Tunnel directive to allow the user to specify a shell command to run
  32. to set up an IMAP connection in place of a TCP socket (eg., to run over
  33. an SSH session).
  34. Added PREAUTH support (useful mostly in conjunction with Tunnel).
  35. Messages marked deleted are not uploaded when we are going to expunge.
  36. Locally generated messages are not re-fetched after uploading even if the
  37. UIDPLUS extension is not supported by the server.
  38. Added `OneToOne' configuration option: ignore any Mailbox specifications
  39. and instead pick up all mailboxes from the local MailDir and remote Folder
  40. and map them 1:1 onto each other according to their names.
  41. -C now creates both local and remote boxes; -L and -R create only local/remote.
  42. --quiet is now really quiet.
  43. [0.8]
  44. !!! IMPORTANT !!!
  45. In order to fix the problem where messages copied from one mailbox to
  46. another were not uploaded to the new mailbox, the way Isync stores the UID
  47. for each message needed to be changed. As a result, you _MUST_ delete all
  48. the messages in the local maildir box before using this version. Otherwise
  49. it will upload every message to the server thinking its a new mail.
  50. [0.7]
  51. Added `MaxMessages' configuration option to allow tracking of only the most
  52. recently added message in the local mailbox.
  53. Added --create (-C) command line option to force creation of the local
  54. maildir-style mailbox if it doesn't already exist.
  55. [0.6]
  56. Added `Delete' configuration option to correspond to the -d command line
  57. option.
  58. Added -a (--all) command line option to synchronize all mailboxes.
  59. [0.5]
  60. Updated SSL support.
  61. Added CRAM authentication support.
  62. Added MailDir configuration option to specify the default location of local
  63. mailboxes when relative paths are used.
  64. Added support for uploading local messages to the IMAP server.
  65. Added CopyDeletedTo configuration option to cause isync to move deleted
  66. messages to a particular mailbox on the server when they are expunged.
  67. [0.4]
  68. Added MaxSize configuration option to limit downloading of new messages from
  69. the server to less than some threshold.
  70. More robust --fast option works without using \Recent flags, so the previous
  71. problem with multiple accesses killing these flags is no longer a problem.
  72. RFC2060 obsoleted RFC822.PEEK, use BODY.PEEK[] instead which does the same
  73. job.
  74. Don't need to request UID in a FETCH when doing UID FETCH (RFC2060 states
  75. that its automatically returned).
  76. [0.3]
  77. Fixed to clean up temp maildir files when the fetch of a new message failed.
  78. Fixed to not assume order of the flags returned by "UID FETCH"
  79. Added support for building RPMs.
  80. [0.2]
  81. SSL support added.
  82. [0.1]
  83. Initial release.