ChangeLog 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. 2001-02-14 Michael Elkins <me@sigipe.org>
  2. * config.c, imap.c, isync.1, main.c, sync.c:
  3. patch from Daniel Resare <noa@metamatrix.se>:
  4. 1 giving a path to a nonexistant rc-file with the -c argument dumps core
  5. The patch adds a check to ensure that the given rc-file is accessible
  6. 2 the error messages given from failed openssl calls are bogus
  7. The handles the error from SSL_connect () correctly. The bug is
  8. understndable since the error handling in openssl is quite obfuscated.
  9. Good news is that the documentation manapges has been greatly updated in
  10. the latest version (0.9.6). See in particular err(3), ERR_get_error(3)
  11. and SSL_get_error(3).
  12. Please note that possible SSL_ERROR_SSL type errors from SSL_read() and
  13. SSL_write() is not handled. This should also be fixed.
  14. 3 connecting using the STARTTLS command with an imap server that is
  15. configured only to accept the TLSv1 protocol gives an error because isync
  16. sends an SSLv2 Hello message for backwards compability. (This is the case
  17. with the uw-imap 2000 that ships with redhat-7.0)
  18. I've read RFC2595 several times to see if it says something about
  19. compability SSL2/SSL3 hello messages but can't find anything. IMHO the
  20. correct thing to do is change the default to not use SSL2/3 compability
  21. hello when using the STARTTLS command but use it if the imaps port is
  22. used. The patch implements this change
  23. 4 repeated calls to SSL_CTX_set_options overwrites the old settings (the
  24. values needs to be ORed together)
  25. fixed in the patch
  26. patch from me@mutt.org:
  27. \Recent messages were put in the cur/ directory instead of new/
  28. give error message when the LOGIN command fails
  29. 2001-02-01 Michael Elkins <me@sigipe.org>
  30. * imap.c: patch from Daniel Resare <noa@metamatrix.se>
  31. - don't initialize ssl support if none of use_sslv* is enabled
  32. 2001-01-26 Michael Elkins <me@sigipe.org>
  33. * imap.c, isync.h:
  34. include <sys/types.h> for off_t
  35. patch from "lorenzo martignoni" <lorenzo.martignoni@technologist.com>
  36. - fixed uploading of message to IMAP server
  37. 2001-01-24 Michael Elkins <me@sigipe.org>
  38. * config.c, cram.c, imap.c, isync.1, list.c, maildir.c, main.c, sync.c:
  39. fixed cram compilation error under bsd
  40. updated man page
  41. 2001-01-16 Michael Elkins <me@sigipe.org>
  42. * TODO, config.c, imap.c, isync.1, isync.h, main.c:
  43. added support for tilde (~) expansion in the `Mailbox' and `CertificateFile'
  44. configuration directives
  45. added `Maildir' configuration command to specify the default location of the
  46. user's mailboxes. If a relative path is used in a `Mailbox' command, this
  47. path is used as a prefix.
  48. 2001-01-11 Michael Elkins <me@sigipe.org>
  49. * configure.in, imap.c, isync.h:
  50. set imap->prefix to be the namespace prefix
  51. update version to 0.5
  52. fixed compilation warnings in imap.c
  53. * Makefile.am, config.c, imap.c, isync.1, isync.h, main.c, sample.isyncrc, sync.c:
  54. broke config code into config.c
  55. added support for uploading local messages with no UID to the IMAP server
  56. added Expunge configuration option
  57. added CopyDeletedTo configuration option
  58. 2001-01-09 Michael Elkins <me@sigipe.org>
  59. * maildir.c, sync.c:
  60. always put changed messages in the cur/ subdirectory since they are no
  61. longer new.
  62. don't set \Seen implicitly for messages in the cur/ folder. Require the S
  63. flag on the message since Mutt will move Old (unread, but not recent)
  64. messges into cur/.
  65. 2001-01-08 Michael Elkins <me@sigipe.org>
  66. * Makefile.am, main.c:
  67. patch from Hugo Haas <hugo@larve.net>
  68. -c was not specified in the getopt*() calls
  69. set global password to the one the user inputs and use that as the
  70. default for remaining mailboxes
  71. 2001-01-05 Michael Elkins <me@sigipe.org>
  72. * configure.in:
  73. added --with-ssl-dir to specify an alternate installation of OpenSSL
  74. 2000-12-31 Michael Elkins <me@sigipe.org>
  75. * ChangeLog, isync.spec:
  76. pre 0.4 commit.
  77. updated rpm spec file
  78. * sync.c:
  79. display how many messages were fetched from the server
  80. * imap.c:
  81. fixed compilation error with no libssl support ("lorenzo martignoni"
  82. <lorenzo.martignoni@technologist.com>)
  83. 2000-12-28 Michael Elkins <me@sigipe.org>
  84. * main.c:
  85. fixed config parser to accept arbitrary whitespace
  86. 2000-12-27 Michael Elkins <me@sigipe.org>
  87. * imap.c:
  88. use imap_close to terminate a connection in imap_open()
  89. * imap.c, isync.1, isync.h, maildir.c, main.c:
  90. allow leading whitespace in config files
  91. now possible to sync multiple mailboxes by specifying multiple aliases on
  92. the command line. IMAP connections are reused if possible.
  93. don't initialize ssl unless we are going to use it.
  94. 2000-12-23 Michael Elkins <me@sigipe.org>
  95. * imap.c, isync.h:
  96. don't use NAMESPACE unless the server supports it
  97. * Makefile.am, README, cram.c, imap.c, isync.h:
  98. added CRAM-MD5 authentication support.
  99. parse server capability string to determine if STARTTLS is available
  100. 2000-12-22 Michael Elkins <me@sigipe.org>
  101. * README, imap.c, isync.1, isync.h, main.c:
  102. isync-brokenservers.diff (Jeremy Katz <katzj@linuxpower.org>)
  103. adds support for disabling NAMESPACE, and disable various flavors of TLS/SSL
  104. for use with some broken IMAP servers.
  105. * imap.c, sync.c:
  106. prompt user if they wish to continue if the server's X.509 certificate can't
  107. be verified.
  108. sync_mailbox should consider uid == 0 to be "unknown"
  109. * main.c, sync.c:
  110. fixed sync_mailbox() to correctly write new messages to the local maildir
  111. box (Thomas Roessler <roessler@does-not-exist.org>)
  112. * main.c: set default MaxSize to 0 (unlimited)
  113. invert test for password being set after getpass() call (Magnus Jonsson
  114. <bigfoot@acc.umu.se>)
  115. * ChangeLog, NEWS, configure.in, imap.c, isync.1, isync.h, maildir.c, main.c, sample.isyncrc, sync.c:
  116. added MaxSize configuration variable
  117. fixed --fast to work robustly without relying on the \Recent flag in
  118. messages
  119. 2000-12-21 Michael Elkins <me@sigipe.org>
  120. * imap.c, isync.h, maildir.c, sync.c:
  121. RFC822.PEEK is obsolete in RFC2060. Use BODY.PEEK[] instead, which does
  122. the same thing
  123. keep track of the uidvalidity so isync can detect if the mailbox on the
  124. server has changed since the last sync.
  125. * NEWS: updated NEWS for 0.3 release
  126. * Makefile.am, isync.spec:
  127. added support for building RPMS
  128. * Makefile.am, isync.1:
  129. added target for creating html version of the man page
  130. documented the imaps: prefix to the Host command
  131. * imap.c, sync.c:
  132. can't assume flag order when fetching a message. just search for the
  133. first `{' to find the message size.
  134. * isync.1, sync.c:
  135. added BUGS section to manpage detailing the fact that we break the
  136. maildir(5) spec by parsing the filename
  137. change message delivery to use the method described in maildir(5)
  138. * configure.in, main.c, sync.c:
  139. use getpass() to get the user's password
  140. unlink the temp file if we are unable to fetch a new message from the
  141. server.
  142. update version to 0.3
  143. * isync.1: fixed typo in man page for --verbose option
  144. * Makefile.am, README, TODO, imap.c, isync.h, list.c:
  145. added generic IMAP list parser and rewrote imap_exec() to handle
  146. arbitrary data instead of hardcoded
  147. * Makefile.am, README, configure.in, main.c:
  148. fixes to compile cleanly under Solaris 2.7
  149. * configure.in, imap.c, isync.1, isync.h, main.c:
  150. added OpenSSL support
  151. * ChangeLog, configure.in, main.c:
  152. config options were not case insensitive
  153. * imap.c, isync.h, maildir.c, main.c, sync.c:
  154. don't fetch deleted messages when expunging
  155. display number of messages that are to be deleted
  156. flags for \Recent messages were not properly fetched
  157. local messages with updated flags were not corrected renamed
  158. 2000-12-20 Michael Elkins <me@sigipe.org>
  159. * ChangeLog, Makefile.am:
  160. updated ChangeLog
  161. added log: rule in Makefile.am
  162. * configure: forgot to remove configure script
  163. * INSTALL, Makefile.in, aclocal.m4, autogen.sh, install-sh, missing, mkinstalldirs:
  164. added autogen.sh to regenerate the build environment
  165. * COPYING, INSTALL, install-sh, missing, mkinstalldirs:
  166. added missing files
  167. * isync.1, sample.isyncrc: New file.
  168. * isync.1, sample.isyncrc:
  169. initial import
  170. * TODO, configure, imap.c, maildir.c, sync.c:
  171. New file.
  172. * TODO, configure, imap.c, maildir.c, sync.c:
  173. initial import
  174. * AUTHORS, ChangeLog, INSTALL, Makefile.am, Makefile.in, NEWS, README, aclocal.m4, configure.in, isync.h, main.c:
  175. New file.
  176. * AUTHORS, ChangeLog, INSTALL, Makefile.am, Makefile.in, NEWS, README, aclocal.m4, configure.in, isync.h, main.c:
  177. initial import