ChangeLog 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545
  1. 2002-01-28 me <me@sigpipe.org>
  2. * TODO, configure.in:
  3. check for dbm_open() in libc and libdb
  4. 2002-01-17 me <me@sigpipe.org>
  5. * sync.c:
  6. don't bother renaming the message file if we are about to unlink() it
  7. 2002-01-16 me <me@sigpipe.org>
  8. * AUTHORS, Makefile.am, NEWS, sync.c:
  9. remove tilde backup files for distclean
  10. fixed indentation
  11. added full name to AUTHORS
  12. reformated NEWS blurb for 0.8
  13. * sync.c, maildir.c:
  14. sync_mailbox() did not update the msg struct when flags were changed,
  15. causing the expunge command to fail
  16. remove bogus strfcpy() line
  17. * ChangeLog, Makefile.am, configure.in, debian/Makefile.am:
  18. added debian build files dist target so that people can use them to build
  19. their own .deb packages without having to use CVS
  20. * debian/changelog, debian/control, debian/copyright, debian/dirs, debian/docs, debian/files, debian/rules, isync.1, maildir.c, sync.c:
  21. added debian build files
  22. fixed indentation
  23. added bug note to manpage about db file format not being architecture
  24. independent
  25. * sync.c, maildir.c:
  26. remove the uid from the db when a message is deleted from the maildir
  27. optimize db fetch/store to not copy the base filename
  28. * NEWS, TODO, config.c, configure.in, cram.c, debug.c, debug.h, imap.c, isync.1, isync.h, list.c, maildir.c, main.c, sync.c, ChangeLog:
  29. updated year in copyright notice
  30. the uid for each message in the maildir is now stored in a dbm database
  31. rather than the filename. this change was necessary because isync became
  32. confused if you copied a message to another folder, in which case the uid
  33. was invalid.
  34. as a result of the above change, isync now acquires a mutex on the mailbox
  35. to protect the dbm database from concurrent access.
  36. main() was reworked to continue gracefully when an error is encountered, and
  37. to always call maildir_close() so that the lock can be disabled, and the
  38. database closed.
  39. 2001-11-20 me <me@sigpipe.org>
  40. * ChangeLog, Makefile.am, isync.spec:
  41. post 0.7-release commit
  42. * Makefile.am, NEWS, isync.1, isync.h, maildir.c, main.c:
  43. added --create/-C command line option to force creation of the local
  44. maildir-style mailbox if nonexistent
  45. debug.h was not included in isync_SOURCES in Makefile.am
  46. 2001-11-19 me <me@sigpipe.org>
  47. * config.c, configure.in, debug.c, debug.h, isync.h, list.c, main.c, Makefile.am, TODO:
  48. added memory debugging code
  49. fixed memory leak in free_list()
  50. free memory associated with global settings on exit
  51. 2001-11-16 me <me@sigpipe.org>
  52. * isync.h, sync.c, ChangeLog, cram.c, imap.c:
  53. remove c++ style comments
  54. use %lu and cast off_t to unsigned long in printf()
  55. 2001-11-15 me <me@sigpipe.org>
  56. * NEWS, config.c, isync.1, isync.h, main.c, sync.c:
  57. Added MaxMessages patch from Eivind Eklund <eivind@FreeBSD.org>.
  58. config_defaults() can just use memcpy() instead of assigning each struct
  59. member individually.
  60. config_defaults() can be declared static
  61. 2001-11-14 me <me@sigpipe.org>
  62. * config.c, configure.in, strndup.c:
  63. move strndup() code into config.c for less complexity
  64. change AC_REPLACE_FUNC(strndup) to AC_CHECK_FUNCS(strndup)
  65. sed expression checking for gcc-3.0 should be quoted beccause it
  66. fails under Solaris 2.7
  67. 2001-11-13 me <me@sigpipe.org>
  68. * config.c, strndup.c, sync.c:
  69. strndup() could return a non-NULL terminated string
  70. size_t should be printed with %lu
  71. when expending tildes (~), an extra slash was inserted after the user's home
  72. directory
  73. 2001-11-12 me <me@sigpipe.org>
  74. * isync.h, maildir.c, main.c:
  75. merge maildir_sync() and maildir_close(). the maxuid in a maildir still
  76. needs to be updated in --fast mode, and the sync code already checks to see
  77. if any changes were made to the mailbox.
  78. 2001-11-09 me <me@sigpipe.org>
  79. * README: add FreeBSD to the list of tested platforms
  80. * config.c, configure.in, imap.c, maildir.c:
  81. update version to 0.7
  82. detect short write in write_strip()
  83. fix compilation warnings with gcc-2.95.4
  84. 2001-10-31 me <me@sigpipe.org>
  85. * configure.in, imap.c, isync.h, main.c, sync.c:
  86. set compiler warnings for gcc-3.0 as well
  87. display message with count of uploaded messages
  88. --quiet now supresses warnings in sync_mailbox()
  89. fixed compiler warnings with -Wshadow
  90. * ChangeLog, NEWS, isync.1:
  91. post 0.6 commit
  92. 2001-10-30 me <me@sigpipe.org>
  93. * README, configure.in, strndup.c:
  94. add strndup replacement function for systems which lack it
  95. 2001-10-03 me <me@sigpipe.org>
  96. * ChangeLog, Makefile.am, maildir.c:
  97. fixed broken code in maildir_clean_tmp()
  98. * TODO, maildir.c:
  99. added code to clean the tmp directory in a maildir to comply with
  100. maildir(5)
  101. * config.c:
  102. forgot to add code to parse the `Delete' option
  103. * main.c:
  104. forgot conditional #if HAVE_LIBSSL around setting of .use_imaps in main()
  105. from command line arguments
  106. * main.c: update Copyright printed by --help
  107. add compile time option list to --help output
  108. * NEWS, TODO, config.c, isync.1, isync.h, main.c, sample.isyncrc, sync.c:
  109. added `Delete' configuration option to force -d option
  110. sync_mailbox() didn't consider MaxSize == 0 to mean "unlimited".
  111. load_config() needs to print a newline in its error messages since
  112. next_arg() kills the newline of the line that was read out of the config
  113. file.
  114. * TODO: update TODO list with action items
  115. * imap.c, sync.c:
  116. fixed maildir message filenames to comply with the maildir(5) specification.
  117. fixed write_strip() and imap_fetch_message() to check the return code of
  118. write() and fsync() to comply with maildir(5) spec.
  119. 2001-10-02 me <me@sigpipe.org>
  120. * main.c:
  121. the `Expunge' config directive didn't work since only the -e command line
  122. argument was consulted.
  123. * config.c, imap.c, isync.h:
  124. we should issue a CAPABILITY even if we aren't going to use ssl/tls so that
  125. cram-md5 auth still works.
  126. 2001-07-18 me <me@sigpipe.org>
  127. * config.c:
  128. find_box() should attempt to expand all filenames if none of the other
  129. methods found a match.
  130. * isync.h, maildir.c, config.c:
  131. fixed to not expand filenames until they are used inside of maildir_open(),
  132. so that aliases are not required for simple filenames.
  133. [re: http://bugs.debian.org/102255]
  134. 2001-06-22 me <me@sigpipe.org>
  135. * main.c: --host option didn't check for imaps: prefix
  136. 2001-06-21 me <me@sigpipe.org>
  137. * main.c:
  138. fixed core when specifying multiple mailboxes on the command line
  139. 2001-06-18 me <me@sigpipe.org>
  140. * isync.1, TODO, configure.in, imap.c:
  141. handle untagged responses in imap_fetch_message() so that it doesn't bomb
  142. out if new mail arrives while in the process of downloading
  143. noted in BUGS section of man page that if new mail arrives after the initial
  144. message list has been retrieved from the IMAP server, that new mail will not
  145. be fetched until the next invocation of isync.
  146. * config.c, imap.c, isync.h, main.c:
  147. isync should continue to process additional mailboxes even if there is an
  148. error with a previous mailbox.
  149. added -a (--all) flag to synchronize all mailboxes defined in ~/.isyncrc
  150. 2001-06-13 me <me@sigpipe.org>
  151. * NEWS: post 0.5-release commit
  152. * ChangeLog, smtppush:
  153. updated ChangeLog. removed smtppush binary.
  154. 2001-06-12 me <me@sigpipe.org>
  155. * Makefile, config.cache, config.log, config.status:
  156. auto generated files should not be part of the CVS tree
  157. * Makefile, config.cache, config.status, smtppush:
  158. New file.
  159. * Makefile, config.cache, config.status, smtppush:
  160. initial import
  161. * config.log: New file.
  162. * COPYING, INSTALL, Makefile.am, config.log, configure, configure.in, install-sh, main.c, missing, mkinstalldirs, AUTHORS, Makefile.in, README:
  163. initial import
  164. 2001-02-28 me <me@sigpipe.org>
  165. * config.c, imap.c:
  166. fixed compiler warnings under Solaris 2.7
  167. 2001-02-19 me <me@sigpipe.org>
  168. * ChangeLog, cram.c, imap.c, maildir.c:
  169. rfc2595 compliance patch from Daniel Resare <noa@metamatrix.se>
  170. - CAPABILITY should be reissued after starting TLS since the
  171. previous call was not protected
  172. 2001-02-14 me <me@sigpipe.org>
  173. * config.c, imap.c, isync.1, main.c, sync.c:
  174. patch from Daniel Resare <noa@metamatrix.se>:
  175. 1 giving a path to a nonexistant rc-file with the -c argument dumps core
  176. The patch adds a check to ensure that the given rc-file is accessible
  177. 2 the error messages given from failed openssl calls are bogus
  178. The handles the error from SSL_connect () correctly. The bug is
  179. understndable since the error handling in openssl is quite obfuscated.
  180. Good news is that the documentation manapges has been greatly updated in
  181. the latest version (0.9.6). See in particular err(3), ERR_get_error(3)
  182. and SSL_get_error(3).
  183. Please note that possible SSL_ERROR_SSL type errors from SSL_read() and
  184. SSL_write() is not handled. This should also be fixed.
  185. 3 connecting using the STARTTLS command with an imap server that is
  186. configured only to accept the TLSv1 protocol gives an error because isync
  187. sends an SSLv2 Hello message for backwards compability. (This is the case
  188. with the uw-imap 2000 that ships with redhat-7.0)
  189. I've read RFC2595 several times to see if it says something about
  190. compability SSL2/SSL3 hello messages but can't find anything. IMHO the
  191. correct thing to do is change the default to not use SSL2/3 compability
  192. hello when using the STARTTLS command but use it if the imaps port is
  193. used. The patch implements this change
  194. 4 repeated calls to SSL_CTX_set_options overwrites the old settings (the
  195. values needs to be ORed together)
  196. fixed in the patch
  197. patch from me@mutt.org:
  198. \Recent messages were put in the cur/ directory instead of new/
  199. give error message when the LOGIN command fails
  200. 2001-02-01 me <me@sigpipe.org>
  201. * imap.c: patch from Daniel Resare <noa@metamatrix.se>
  202. - don't initialize ssl support if none of use_sslv* is enabled
  203. 2001-01-26 me <me@sigpipe.org>
  204. * imap.c, isync.h:
  205. include <sys/types.h> for off_t
  206. patch from "lorenzo martignoni" <lorenzo.martignoni@technologist.com>
  207. - fixed uploading of message to IMAP server
  208. 2001-01-24 me <me@sigpipe.org>
  209. * config.c, cram.c, imap.c, isync.1, list.c, maildir.c, main.c, sync.c:
  210. fixed cram compilation error under bsd
  211. updated man page
  212. 2001-01-16 me <me@sigpipe.org>
  213. * TODO, config.c, imap.c, isync.1, isync.h, main.c:
  214. added support for tilde (~) expansion in the `Mailbox' and `CertificateFile'
  215. configuration directives
  216. added `Maildir' configuration command to specify the default location of the
  217. user's mailboxes. If a relative path is used in a `Mailbox' command, this
  218. path is used as a prefix.
  219. 2001-01-11 me <me@sigpipe.org>
  220. * configure.in, imap.c, isync.h:
  221. set imap->prefix to be the namespace prefix
  222. update version to 0.5
  223. fixed compilation warnings in imap.c
  224. * Makefile.am, config.c, imap.c, isync.1, isync.h, main.c, sample.isyncrc, sync.c:
  225. broke config code into config.c
  226. added support for uploading local messages with no UID to the IMAP server
  227. added Expunge configuration option
  228. added CopyDeletedTo configuration option
  229. 2001-01-09 me <me@sigpipe.org>
  230. * maildir.c, sync.c:
  231. always put changed messages in the cur/ subdirectory since they are no
  232. longer new.
  233. don't set \Seen implicitly for messages in the cur/ folder. Require the S
  234. flag on the message since Mutt will move Old (unread, but not recent)
  235. messges into cur/.
  236. 2001-01-08 me <me@sigpipe.org>
  237. * Makefile.am, main.c:
  238. patch from Hugo Haas <hugo@larve.net>
  239. -c was not specified in the getopt*() calls
  240. set global password to the one the user inputs and use that as the
  241. default for remaining mailboxes
  242. 2001-01-05 me <me@sigpipe.org>
  243. * configure.in:
  244. added --with-ssl-dir to specify an alternate installation of OpenSSL
  245. 2000-12-31 me <me@sigpipe.org>
  246. * ChangeLog, isync.spec:
  247. pre 0.4 commit.
  248. updated rpm spec file
  249. * sync.c:
  250. display how many messages were fetched from the server
  251. * imap.c:
  252. fixed compilation error with no libssl support ("lorenzo martignoni"
  253. <lorenzo.martignoni@technologist.com>)
  254. 2000-12-28 me <me@sigpipe.org>
  255. * main.c:
  256. fixed config parser to accept arbitrary whitespace
  257. 2000-12-27 me <me@sigpipe.org>
  258. * imap.c:
  259. use imap_close to terminate a connection in imap_open()
  260. * imap.c, isync.1, isync.h, maildir.c, main.c:
  261. allow leading whitespace in config files
  262. now possible to sync multiple mailboxes by specifying multiple aliases on
  263. the command line. IMAP connections are reused if possible.
  264. don't initialize ssl unless we are going to use it.
  265. 2000-12-23 me <me@sigpipe.org>
  266. * imap.c, isync.h:
  267. don't use NAMESPACE unless the server supports it
  268. * Makefile.am, README, cram.c, imap.c, isync.h:
  269. added CRAM-MD5 authentication support.
  270. parse server capability string to determine if STARTTLS is available
  271. 2000-12-22 me <me@sigpipe.org>
  272. * README, imap.c, isync.1, isync.h, main.c:
  273. isync-brokenservers.diff (Jeremy Katz <katzj@linuxpower.org>)
  274. adds support for disabling NAMESPACE, and disable various flavors of TLS/SSL
  275. for use with some broken IMAP servers.
  276. * imap.c, sync.c:
  277. prompt user if they wish to continue if the server's X.509 certificate can't
  278. be verified.
  279. sync_mailbox should consider uid == 0 to be "unknown"
  280. * main.c, sync.c:
  281. fixed sync_mailbox() to correctly write new messages to the local maildir
  282. box (Thomas Roessler <roessler@does-not-exist.org>)
  283. * main.c: set default MaxSize to 0 (unlimited)
  284. invert test for password being set after getpass() call (Magnus Jonsson
  285. <bigfoot@acc.umu.se>)
  286. * ChangeLog, NEWS, configure.in, imap.c, isync.1, isync.h, maildir.c, main.c, sample.isyncrc, sync.c:
  287. added MaxSize configuration variable
  288. fixed --fast to work robustly without relying on the \Recent flag in
  289. messages
  290. 2000-12-21 me <me@sigpipe.org>
  291. * imap.c, isync.h, maildir.c, sync.c:
  292. RFC822.PEEK is obsolete in RFC2060. Use BODY.PEEK[] instead, which does
  293. the same thing
  294. keep track of the uidvalidity so isync can detect if the mailbox on the
  295. server has changed since the last sync.
  296. * NEWS: updated NEWS for 0.3 release
  297. * Makefile.am, isync.spec:
  298. added support for building RPMS
  299. * Makefile.am, isync.1:
  300. added target for creating html version of the man page
  301. documented the imaps: prefix to the Host command
  302. * imap.c, sync.c:
  303. can't assume flag order when fetching a message. just search for the
  304. first `{' to find the message size.
  305. * isync.1, sync.c:
  306. added BUGS section to manpage detailing the fact that we break the
  307. maildir(5) spec by parsing the filename
  308. change message delivery to use the method described in maildir(5)
  309. * configure.in, main.c, sync.c:
  310. use getpass() to get the user's password
  311. unlink the temp file if we are unable to fetch a new message from the
  312. server.
  313. update version to 0.3
  314. * isync.1: fixed typo in man page for --verbose option
  315. * Makefile.am, README, TODO, imap.c, isync.h, list.c:
  316. added generic IMAP list parser and rewrote imap_exec() to handle
  317. arbitrary data instead of hardcoded
  318. * Makefile.am, README, configure.in, main.c:
  319. fixes to compile cleanly under Solaris 2.7
  320. * configure.in, imap.c, isync.1, isync.h, main.c:
  321. added OpenSSL support
  322. * ChangeLog, configure.in, main.c:
  323. config options were not case insensitive
  324. * imap.c, isync.h, maildir.c, main.c, sync.c:
  325. don't fetch deleted messages when expunging
  326. display number of messages that are to be deleted
  327. flags for \Recent messages were not properly fetched
  328. local messages with updated flags were not corrected renamed
  329. 2000-12-20 me <me@sigpipe.org>
  330. * ChangeLog, Makefile.am:
  331. updated ChangeLog
  332. added log: rule in Makefile.am
  333. * configure: forgot to remove configure script
  334. * INSTALL, Makefile.in, aclocal.m4, autogen.sh, install-sh, missing, mkinstalldirs:
  335. added autogen.sh to regenerate the build environment
  336. * COPYING, INSTALL, install-sh, missing, mkinstalldirs:
  337. added missing files
  338. * isync.1, sample.isyncrc: New file.
  339. * isync.1, sample.isyncrc:
  340. initial import
  341. * TODO, configure, imap.c, maildir.c, sync.c:
  342. New file.
  343. * TODO, configure, imap.c, maildir.c, sync.c:
  344. initial import
  345. * AUTHORS, ChangeLog, INSTALL, Makefile.am, Makefile.in, NEWS, README, aclocal.m4, configure.in, isync.h, main.c:
  346. New file.
  347. * AUTHORS, ChangeLog, INSTALL, Makefile.am, Makefile.in, NEWS, README, aclocal.m4, configure.in, isync.h, main.c:
  348. initial import