ChangeLog 12 KB

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