ChangeLog 11 KB

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