ChangeLog 8.9 KB

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