ChangeLog 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131
  1. 2003-12-07 16:37 Oswald Buddenhagen <ossi@users.sf.net>
  2. * isyncrc.sample:
  3. add sample CertificateFile
  4. 2003-12-07 16:36 Oswald Buddenhagen <ossi@users.sf.net>
  5. * src/imap.c:
  6. add trailing space to password prompt
  7. 2003-12-07 16:34 Oswald Buddenhagen <ossi@users.sf.net>
  8. * src/main.c:
  9. make imaps: on the command line adjust the port and ssl options as well
  10. 2003-12-07 16:18 Oswald Buddenhagen <ossi@users.sf.net>
  11. * ChangeLog:
  12. regen
  13. 2003-12-07 16:15 Oswald Buddenhagen <ossi@users.sf.net>
  14. * debian/changelog:
  15. new release
  16. 2003-12-07 16:09 Oswald Buddenhagen <ossi@users.sf.net>
  17. * configure.in:
  18. bump version
  19. 2003-12-02 03:53 Oswald Buddenhagen <ossi@users.sf.net>
  20. * src/imap.c:
  21. echo the mailbox the password is for
  22. 2003-12-02 03:52 Oswald Buddenhagen <ossi@users.sf.net>
  23. * TODO:
  24. item morphed
  25. 2003-11-11 04:02 Oswald Buddenhagen <ossi@users.sf.net>
  26. * AUTHORS:
  27. be more explicit about maintainership, as people don't seem to get it.
  28. 2003-09-02 14:06 Oswald Buddenhagen <ossi@users.sf.net>
  29. * isync.1:
  30. minor additions
  31. 2003-07-02 19:18 Oswald Buddenhagen <ossi@users.sf.net>
  32. * src/imap.c:
  33. fix crash when syncing multiple mailboxes over a Tunnel
  34. 2003-05-14 15:42 Oswald Buddenhagen <ossi@users.sf.net>
  35. * isync.1:
  36. minor
  37. 2003-05-07 02:07 Oswald Buddenhagen <ossi@users.sf.net>
  38. * ChangeLog:
  39. regen
  40. 2003-05-07 02:06 Oswald Buddenhagen <ossi@users.sf.net>
  41. * .cvsignore, Makefile.am, autogen.sh, configure.in,
  42. debian/changelog, src/config.c, src/cram.c, src/dotlock.c,
  43. src/imap.c, src/isync.h, src/list.c, src/maildir.c, src/main.c,
  44. src/sync.c:
  45. - make it work without SSL
  46. - switch from -Ds in Makefile to config.h
  47. - small header cleaup
  48. 2003-05-07 02:04 Oswald Buddenhagen <ossi@users.sf.net>
  49. * isync.spec.in:
  50. make it actually work
  51. 2003-05-06 04:18 Oswald Buddenhagen <ossi@users.sf.net>
  52. * ChangeLog:
  53. regen
  54. 2003-05-06 04:17 Oswald Buddenhagen <ossi@users.sf.net>
  55. * Makefile.am, debian/Makefile.am:
  56. minors
  57. 2003-05-06 04:16 Oswald Buddenhagen <ossi@users.sf.net>
  58. * NEWS:
  59. update
  60. 2003-05-06 04:15 Oswald Buddenhagen <ossi@users.sf.net>
  61. * README:
  62. i'm bored :)
  63. 2003-05-05 19:58 Oswald Buddenhagen <ossi@users.sf.net>
  64. * src/: config.c, isync.h, main.c:
  65. don't free any config strings - who cares for a few bytes?
  66. this fixes some crashes at exit.
  67. 2003-05-05 19:17 Oswald Buddenhagen <ossi@users.sf.net>
  68. * Makefile.am:
  69. switch ChangeLog generation to cvs2cl
  70. 2003-05-05 15:43 Oswald Buddenhagen <ossi@users.sf.net>
  71. * isync.1:
  72. minor fixes
  73. 2003-05-05 15:41 Oswald Buddenhagen <ossi@users.sf.net>
  74. * configure.in:
  75. cleanup
  76. 2003-05-05 15:24 Oswald Buddenhagen <ossi@users.sf.net>
  77. * src/main.c:
  78. accumulate status over multiple mailboxes, i.e., don't abort after first
  79. failure
  80. 2003-05-05 14:54 Oswald Buddenhagen <ossi@users.sf.net>
  81. * src/imap.c:
  82. fix imaps:
  83. 2003-03-26 04:33 Oswald Buddenhagen <ossi@users.sf.net>
  84. * debian/: changelog, compat, control, dirs, rules:
  85. debian packaging update
  86. 2003-02-27 19:43 Oswald Buddenhagen <ossi@users.sf.net>
  87. * src/sync.c:
  88. ignore \Recent, as it is voided by the syncronization run itself.
  89. 2003-02-27 19:41 Oswald Buddenhagen <ossi@users.sf.net>
  90. * TODO:
  91. more to do ...
  92. 2002-12-28 16:31 Oswald Buddenhagen <ossi@users.sf.net>
  93. * src/: config.c, cram.c, imap.c, isync.h, list.c, maildir.c,
  94. main.c, sync.c:
  95. - update copyrights. 2003 didn't begin yet, but who cares? :)
  96. 2002-12-28 05:14 Oswald Buddenhagen <ossi@users.sf.net>
  97. * isync.1:
  98. - fixed typo
  99. - updated maintainer and location
  100. 2002-12-28 05:12 Oswald Buddenhagen <ossi@users.sf.net>
  101. * TODO:
  102. - ssh tunnels are supported for ages ...
  103. 2002-12-28 05:12 Oswald Buddenhagen <ossi@users.sf.net>
  104. * TODO, src/maildir.c, src/sync.c:
  105. - update isyncmaxuid properly
  106. 2002-12-28 05:04 Oswald Buddenhagen <ossi@users.sf.net>
  107. * src/config.c:
  108. - fixed two crashes
  109. 2002-12-28 05:02 Oswald Buddenhagen <ossi@users.sf.net>
  110. * src/imap.c:
  111. - handle bogus search responses more gracefully
  112. 2002-12-28 05:00 Oswald Buddenhagen <ossi@users.sf.net>
  113. * src/imap.c:
  114. - workaround imap server bug: lock files are no mailboxes
  115. 2002-12-28 04:58 Oswald Buddenhagen <ossi@users.sf.net>
  116. * src/: imap.c, sync.c:
  117. - improve console output
  118. 2002-12-28 04:11 Oswald Buddenhagen <ossi@users.sf.net>
  119. * .cvsignore:
  120. - ssht!
  121. 2002-12-28 04:07 Oswald Buddenhagen <ossi@users.sf.net>
  122. * debian/.cvsignore:
  123. - ssht!
  124. 2002-12-28 04:03 Oswald Buddenhagen <ossi@users.sf.net>
  125. * .cvsignore, AUTHORS, ChangeLog, Makefile.am, NEWS, README,
  126. autogen.sh, configure.in, isync.spec.in, debian/control,
  127. debian/copyright, debian/docs, src/.cvsignore, src/isync.h,
  128. src/Makefile.am:
  129. - took over maintenance
  130. - moved to sourceforge
  131. - reorganized cvs structure
  132. 2002-10-30 03:31 Michael Elkins <me@sigpipe.org>
  133. * isync.1, src/config.c, src/cram.c, src/dotlock.c, src/dotlock.h,
  134. src/imap.c, src/isync.h, src/list.c, src/maildir.c, src/main.c,
  135. src/sync.c:
  136. Updated the copyright notice to allow an exception for linking with OpenSSL,
  137. which has a non-GPL compatible license.
  138. 2002-10-30 03:23 Michael Elkins <me@sigpipe.org>
  139. * .cvsignore, isync.1, src/config.c, src/imap.c, src/isync.h,
  140. src/maildir.c, src/main.c, src/sync.c:
  141. Bunch 'o patches from Oswald Buddenhagen:
  142. i implemented some cool stuff (tm).
  143. first, the long missing "create server-side missing mailboxes". -C now
  144. creates both local and remote boxes; -L and -R create only local/remote.
  145. second, i implemented a 1:1 remote:local folder mapping (-1) with an
  146. optional INBOX exception (inbox/-I). the remote folder is specified with
  147. the folder keyword (or -F switch) and takes precedence over the
  148. namespace setting. the local directory with the mailboxes can now be
  149. specified on the command line, too (-M).
  150. another patch:
  151. - made the -1 switch settable permanently (OneToOne). after all, you
  152. usually define your mailbox layout once forever. removed -A, as it is
  153. semantically -a modified by -1.
  154. - cleaned up message output a bit. still, the quiet variable should be
  155. used throughout the program. at best, create some generic output
  156. function, which obeys a global verbosity level variable.
  157. - optimized + cleaned up configuration parser slightly
  158. - minor cleanups
  159. add an (almost) unique id to every uploaded message and search for it
  160. right after. i thought about using the message-id, but a) it is not
  161. guaranteed to be unique in a mailbox (imagine you edit a mail and store
  162. the dupe in the same box) and b) some mails (e.g., postponed) don't even
  163. have one. a downside of the current implementation is, that this
  164. id-header remains in the mailbox, but given that it wastes only 27 bytes
  165. per mail and removing it would mean several roundtrips more, this seems
  166. acceptable.
  167. i changed the line-counting loop to use a mmapped file instead of
  168. reading it in chunks, as it makes things simpler and is probably even
  169. faster for big mails.
  170. the amount of goto statements in my code may be scary, but c is simply
  171. lacking a multi-level break statement. :)
  172. this is the "shut up" patch. :) it makes the -q option consequent, so to
  173. say.
  174. additionally it adds an -l option which gathers all defined/found
  175. mailboxes and just outputs the list. don't ask what i need it for. ;)
  176. 2002-10-30 03:01 Michael Elkins <me@sigpipe.org>
  177. * src/maildir.c:
  178. fixed missing closedir() call (Joey Hess)
  179. 2002-06-27 05:55 Michael Elkins <me@sigpipe.org>
  180. * src/imap.c:
  181. explicitly set global.pass to NULL when getpass() returns an empty string.
  182. 2002-06-27 05:51 Michael Elkins <me@sigpipe.org>
  183. * src/imap.c:
  184. Oswald Buddenhagen <ossi@kde.org>
  185. * fix imap_open() brokeness with PREAUTH (missed hunk from previous patch)
  186. 2002-06-22 19:06 Michael Elkins <me@sigpipe.org>
  187. * src/: dotlock.c, imap.c:
  188. fixed errors introduced by ME when hand-applying Oswald Nuddenhagen's
  189. patch.
  190. 2002-06-22 03:21 Michael Elkins <me@sigpipe.org>
  191. * autogen.sh, src/dotlock.c, src/imap.c, src/isync.h, src/main.c:
  192. Patch from Oswald Buddenhagen <ossi@kde.org>
  193. - move prompt for password to imap_open()
  194. - don't ask for global password in PREAUTH state
  195. - use socketpair() to create one full-duplex fd in tunnel mode
  196. instead of two half-duplex pipes
  197. - don't set lck.l_pid in fcntl() call (its read-only)
  198. - use F_SETLK instead of F_SETLKW to avoid infinite waiting
  199. - use "$@" in autogen.sh to get proper word expansion
  200. 2002-06-21 02:26 Michael Elkins <me@sigpipe.org>
  201. * configure.in, src/isync.h:
  202. Fixed to compile under FreeBSD 4.6-RELEASE. Must include ndbm.h rather than
  203. db.h.
  204. 2002-06-21 01:33 Michael Elkins <me@sigpipe.org>
  205. * Makefile.am, src/dotlock.c, src/dotlock.h, src/maildir.c:
  206. remove debian/files
  207. move dotlocking code to dotlock.c.
  208. dotlocking code fixed to ignore whether or not the lockfile exists on
  209. open(). we only care about whether fcntl() was able to lock it.
  210. 2002-06-19 04:31 Michael Elkins <me@sigpipe.org>
  211. * src/sync.c:
  212. Don't bother uploaded messages marked deleted when we are going to expunge.
  213. 2002-06-19 03:11 Michael Elkins <me@sigpipe.org>
  214. * AUTHORS, src/imap.c, src/maildir.c:
  215. fixed unused var warning in imap_open()
  216. locking cleanups from Oswald Buddenhagen <ossi@kde.org>
  217. * don't need to stat the lockfile since it will always be size 0
  218. * only remove lockfile when we actually succeeded in locking
  219. 2002-06-19 02:44 Michael Elkins <me@sigpipe.org>
  220. * Makefile.am, debian/Makefile.am, debian/changelog:
  221. Debian package cleanups from Oswald Buddenhagen <ossi@kde.org>
  222. 2002-06-18 08:37 Michael Elkins <me@sigpipe.org>
  223. * README, isync.1, src/isync.h, src/maildir.c, src/main.c,
  224. src/sync.c:
  225. updated URL for project
  226. fixed segmentation fault caused by double free() when an error occurred
  227. during the IMAP transmission.
  228. fixed bug where isync could not handle a 0 value UIDVALIDITY
  229. 2002-04-19 23:38 Michael Elkins <me@sigpipe.org>
  230. * debian/: changelog, rules:
  231. changed debian/rules to set DESTDIR instead of `prefix' when doing a make
  232. install.
  233. 2002-04-19 21:43 Michael Elkins <me@sigpipe.org>
  234. * configure.in, isync.1, isyncrc.sample, src/config.c, src/imap.c,
  235. src/isync.h, src/main.c:
  236. PREAUTH support from Oswald Buddenhagen <ossi@kde.org>
  237. Added Tunnel directive to allow the user to specify a shell command to run
  238. to set up an IMAP connection in place of a TCP socket (eg., to run over
  239. an SSH session).
  240. 2002-01-28 20:39 Michael Elkins <me@sigpipe.org>
  241. * ChangeLog, isync.spec.in, debian/changelog:
  242. post 0.8 release commit
  243. 2002-01-28 20:34 Michael Elkins <me@sigpipe.org>
  244. * TODO, configure.in:
  245. check for dbm_open() in libc and libdb
  246. 2002-01-17 20:33 Michael Elkins <me@sigpipe.org>
  247. * src/sync.c:
  248. don't bother renaming the message file if we are about to unlink() it
  249. 2002-01-16 23:23 Michael Elkins <me@sigpipe.org>
  250. * AUTHORS, Makefile.am, NEWS, src/sync.c:
  251. remove tilde backup files for distclean
  252. fixed indentation
  253. added full name to AUTHORS
  254. reformated NEWS blurb for 0.8
  255. 2002-01-16 23:13 Michael Elkins <me@sigpipe.org>
  256. * src/: maildir.c, sync.c:
  257. sync_mailbox() did not update the msg struct when flags were changed,
  258. causing the expunge command to fail
  259. remove bogus strfcpy() line
  260. 2002-01-16 22:51 Michael Elkins <me@sigpipe.org>
  261. * ChangeLog, Makefile.am, configure.in, debian/Makefile.am:
  262. added debian build files dist target so that people can use them to build
  263. their own .deb packages without having to use CVS
  264. 2002-01-16 22:43 Michael Elkins <me@sigpipe.org>
  265. * isync.1, debian/changelog, debian/control, debian/copyright,
  266. debian/docs, debian/rules, src/maildir.c, src/sync.c:
  267. added debian build files
  268. fixed indentation
  269. added bug note to manpage about db file format not being architecture
  270. independent
  271. 2002-01-16 22:22 Michael Elkins <me@sigpipe.org>
  272. * src/: maildir.c, sync.c:
  273. remove the uid from the db when a message is deleted from the maildir
  274. optimize db fetch/store to not copy the base filename
  275. 2002-01-16 20:47 Michael Elkins <me@sigpipe.org>
  276. * ChangeLog, NEWS, TODO, configure.in, isync.1, src/config.c,
  277. src/cram.c, src/imap.c, src/isync.h, src/list.c, src/maildir.c,
  278. src/main.c, src/sync.c:
  279. updated year in copyright notice
  280. the uid for each message in the maildir is now stored in a dbm database
  281. rather than the filename. this change was necessary because isync became
  282. confused if you copied a message to another folder, in which case the uid
  283. was invalid.
  284. as a result of the above change, isync now acquires a mutex on the mailbox
  285. to protect the dbm database from concurrent access.
  286. main() was reworked to continue gracefully when an error is encountered, and
  287. to always call maildir_close() so that the lock can be disabled, and the
  288. database closed.
  289. 2001-11-20 19:28 Michael Elkins <me@sigpipe.org>
  290. * ChangeLog, Makefile.am, isync.spec.in:
  291. post 0.7-release commit
  292. 2001-11-20 19:06 Michael Elkins <me@sigpipe.org>
  293. * Makefile.am, NEWS, isync.1, src/isync.h, src/maildir.c,
  294. src/main.c:
  295. added --create/-C command line option to force creation of the local
  296. maildir-style mailbox if nonexistent
  297. debug.h was not included in isync_SOURCES in Makefile.am
  298. 2001-11-19 20:41 Michael Elkins <me@sigpipe.org>
  299. * Makefile.am, TODO, configure.in, src/config.c, src/isync.h,
  300. src/list.c, src/main.c:
  301. added memory debugging code
  302. fixed memory leak in free_list()
  303. free memory associated with global settings on exit
  304. 2001-11-16 22:23 Michael Elkins <me@sigpipe.org>
  305. * ChangeLog, src/cram.c, src/imap.c, src/isync.h, src/sync.c:
  306. remove c++ style comments
  307. use %lu and cast off_t to unsigned long in printf()
  308. 2001-11-16 00:59 Michael Elkins <me@sigpipe.org>
  309. * NEWS, isync.1, src/config.c, src/isync.h, src/main.c, src/sync.c:
  310. Added MaxMessages patch from Eivind Eklund <eivind@FreeBSD.org>.
  311. config_defaults() can just use memcpy() instead of assigning each struct
  312. member individually.
  313. config_defaults() can be declared static
  314. 2001-11-14 18:40 Michael Elkins <me@sigpipe.org>
  315. * configure.in, src/config.c:
  316. move strndup() code into config.c for less complexity
  317. change AC_REPLACE_FUNC(strndup) to AC_CHECK_FUNCS(strndup)
  318. sed expression checking for gcc-3.0 should be quoted beccause it
  319. fails under Solaris 2.7
  320. 2001-11-13 01:36 Michael Elkins <me@sigpipe.org>
  321. * src/: config.c, sync.c:
  322. strndup() could return a non-NULL terminated string
  323. size_t should be printed with %lu
  324. when expending tildes (~), an extra slash was inserted after the user's home
  325. directory
  326. 2001-11-13 00:03 Michael Elkins <me@sigpipe.org>
  327. * src/: isync.h, maildir.c, main.c:
  328. merge maildir_sync() and maildir_close(). the maxuid in a maildir still
  329. needs to be updated in --fast mode, and the sync code already checks to see
  330. if any changes were made to the mailbox.
  331. 2001-11-09 01:35 Michael Elkins <me@sigpipe.org>
  332. * README:
  333. add FreeBSD to the list of tested platforms
  334. 2001-11-09 01:23 Michael Elkins <me@sigpipe.org>
  335. * configure.in, src/config.c, src/imap.c, src/maildir.c:
  336. update version to 0.7
  337. detect short write in write_strip()
  338. fix compilation warnings with gcc-2.95.4
  339. 2001-10-31 20:50 Michael Elkins <me@sigpipe.org>
  340. * configure.in, src/imap.c, src/isync.h, src/main.c, src/sync.c:
  341. set compiler warnings for gcc-3.0 as well
  342. display message with count of uploaded messages
  343. --quiet now supresses warnings in sync_mailbox()
  344. fixed compiler warnings with -Wshadow
  345. 2001-10-31 07:06 Michael Elkins <me@sigpipe.org>
  346. * ChangeLog, NEWS, isync.1:
  347. post 0.6 commit
  348. 2001-10-30 23:57 Michael Elkins <me@sigpipe.org>
  349. * README, configure.in:
  350. add strndup replacement function for systems which lack it
  351. 2001-10-03 19:10 Michael Elkins <me@sigpipe.org>
  352. * ChangeLog, Makefile.am, src/maildir.c:
  353. fixed broken code in maildir_clean_tmp()
  354. 2001-10-03 18:48 Michael Elkins <me@sigpipe.org>
  355. * TODO, src/maildir.c:
  356. added code to clean the tmp directory in a maildir to comply with
  357. maildir(5)
  358. 2001-10-03 08:32 Michael Elkins <me@sigpipe.org>
  359. * src/config.c:
  360. forgot to add code to parse the `Delete' option
  361. 2001-10-03 08:18 Michael Elkins <me@sigpipe.org>
  362. * src/main.c:
  363. forgot conditional #if HAVE_LIBSSL around setting of .use_imaps in main()
  364. from command line arguments
  365. 2001-10-03 08:15 Michael Elkins <me@sigpipe.org>
  366. * src/main.c:
  367. update Copyright printed by --help
  368. add compile time option list to --help output
  369. 2001-10-03 07:42 Michael Elkins <me@sigpipe.org>
  370. * NEWS, TODO, isync.1, isyncrc.sample, src/config.c, src/isync.h,
  371. src/main.c, src/sync.c:
  372. added `Delete' configuration option to force -d option
  373. sync_mailbox() didn't consider MaxSize == 0 to mean "unlimited".
  374. load_config() needs to print a newline in its error messages since
  375. next_arg() kills the newline of the line that was read out of the config
  376. file.
  377. 2001-10-03 02:03 Michael Elkins <me@sigpipe.org>
  378. * TODO:
  379. update TODO list with action items
  380. 2001-10-03 02:01 Michael Elkins <me@sigpipe.org>
  381. * src/: imap.c, sync.c:
  382. fixed maildir message filenames to comply with the maildir(5) specification.
  383. fixed write_strip() and imap_fetch_message() to check the return code of
  384. write() and fsync() to comply with maildir(5) spec.
  385. 2001-10-03 01:43 Michael Elkins <me@sigpipe.org>
  386. * src/main.c:
  387. the `Expunge' config directive didn't work since only the -e command line
  388. argument was consulted.
  389. 2001-10-03 00:46 Michael Elkins <me@sigpipe.org>
  390. * src/: config.c, imap.c, isync.h:
  391. we should issue a CAPABILITY even if we aren't going to use ssl/tls so that
  392. cram-md5 auth still works.
  393. 2001-07-18 20:56 Michael Elkins <me@sigpipe.org>
  394. * src/config.c:
  395. find_box() should attempt to expand all filenames if none of the other
  396. methods found a match.
  397. 2001-07-18 20:49 Michael Elkins <me@sigpipe.org>
  398. * src/: config.c, isync.h, maildir.c:
  399. fixed to not expand filenames until they are used inside of maildir_open(),
  400. so that aliases are not required for simple filenames.
  401. [re: http://bugs.debian.org/102255]
  402. 2001-06-23 01:30 Michael Elkins <me@sigpipe.org>
  403. * src/main.c:
  404. --host option didn't check for imaps: prefix
  405. 2001-06-21 22:45 Michael Elkins <me@sigpipe.org>
  406. * src/main.c:
  407. fixed core when specifying multiple mailboxes on the command line
  408. 2001-06-18 23:38 Michael Elkins <me@sigpipe.org>
  409. * TODO, configure.in, src/imap.c, isync.1:
  410. handle untagged responses in imap_fetch_message() so that it doesn't bomb
  411. out if new mail arrives while in the process of downloading
  412. noted in BUGS section of man page that if new mail arrives after the initial
  413. message list has been retrieved from the IMAP server, that new mail will not
  414. be fetched until the next invocation of isync.
  415. 2001-06-18 19:49 Michael Elkins <me@sigpipe.org>
  416. * src/: config.c, imap.c, isync.h, main.c:
  417. isync should continue to process additional mailboxes even if there is an
  418. error with a previous mailbox.
  419. added -a (--all) flag to synchronize all mailboxes defined in ~/.isyncrc
  420. 2001-06-13 19:13 Michael Elkins <me@sigpipe.org>
  421. * NEWS:
  422. post 0.5-release commit
  423. 2001-06-13 18:57 Michael Elkins <me@sigpipe.org>
  424. * ChangeLog:
  425. updated ChangeLog. removed smtppush binary.
  426. 2001-06-12 02:32 Michael Elkins <me@sigpipe.org>
  427. * AUTHORS, README, COPYING, Makefile.am, configure.in, src/main.c:
  428. initial import
  429. 2001-02-28 02:02 Michael Elkins <me@sigpipe.org>
  430. * src/: config.c, imap.c:
  431. fixed compiler warnings under Solaris 2.7
  432. 2001-02-19 19:44 Michael Elkins <me@sigpipe.org>
  433. * ChangeLog, src/cram.c, src/imap.c, src/maildir.c:
  434. rfc2595 compliance patch from Daniel Resare <noa@metamatrix.se>
  435. - CAPABILITY should be reissued after starting TLS since the
  436. previous call was not protected
  437. 2001-02-14 21:46 Michael Elkins <me@sigpipe.org>
  438. * isync.1, src/config.c, src/imap.c, src/main.c, src/sync.c:
  439. patch from Daniel Resare <noa@metamatrix.se>:
  440. 1 giving a path to a nonexistant rc-file with the -c argument dumps core
  441. The patch adds a check to ensure that the given rc-file is accessible
  442. 2 the error messages given from failed openssl calls are bogus
  443. The handles the error from SSL_connect () correctly. The bug is
  444. understndable since the error handling in openssl is quite obfuscated.
  445. Good news is that the documentation manapges has been greatly updated in
  446. the latest version (0.9.6). See in particular err(3), ERR_get_error(3)
  447. and SSL_get_error(3).
  448. Please note that possible SSL_ERROR_SSL type errors from SSL_read() and
  449. SSL_write() is not handled. This should also be fixed.
  450. 3 connecting using the STARTTLS command with an imap server that is
  451. configured only to accept the TLSv1 protocol gives an error because isync
  452. sends an SSLv2 Hello message for backwards compability. (This is the case
  453. with the uw-imap 2000 that ships with redhat-7.0)
  454. I've read RFC2595 several times to see if it says something about
  455. compability SSL2/SSL3 hello messages but can't find anything. IMHO the
  456. correct thing to do is change the default to not use SSL2/3 compability
  457. hello when using the STARTTLS command but use it if the imaps port is
  458. used. The patch implements this change
  459. 4 repeated calls to SSL_CTX_set_options overwrites the old settings (the
  460. values needs to be ORed together)
  461. fixed in the patch
  462. patch from me@mutt.org:
  463. \Recent messages were put in the cur/ directory instead of new/
  464. give error message when the LOGIN command fails
  465. 2001-02-02 00:35 Michael Elkins <me@sigpipe.org>
  466. * src/imap.c:
  467. patch from Daniel Resare <noa@metamatrix.se>
  468. - don't initialize ssl support if none of use_sslv* is enabled
  469. 2001-01-26 21:21 Michael Elkins <me@sigpipe.org>
  470. * src/: imap.c, isync.h:
  471. include <sys/types.h> for off_t
  472. patch from "lorenzo martignoni" <lorenzo.martignoni@technologist.com>
  473. - fixed uploading of message to IMAP server
  474. 2001-01-24 08:09 Michael Elkins <me@sigpipe.org>
  475. * isync.1, src/config.c, src/cram.c, src/imap.c, src/list.c,
  476. src/maildir.c, src/main.c, src/sync.c:
  477. fixed cram compilation error under bsd
  478. updated man page
  479. 2001-01-16 20:45 Michael Elkins <me@sigpipe.org>
  480. * TODO, isync.1, src/config.c, src/imap.c, src/isync.h, src/main.c:
  481. added support for tilde (~) expansion in the `Mailbox' and `CertificateFile'
  482. configuration directives
  483. added `Maildir' configuration command to specify the default location of the
  484. user's mailboxes. If a relative path is used in a `Mailbox' command, this
  485. path is used as a prefix.
  486. 2001-01-11 11:21 Michael Elkins <me@sigpipe.org>
  487. * configure.in, src/imap.c, src/isync.h:
  488. set imap->prefix to be the namespace prefix
  489. update version to 0.5
  490. fixed compilation warnings in imap.c
  491. 2001-01-11 11:13 Michael Elkins <me@sigpipe.org>
  492. * Makefile.am, isync.1, isyncrc.sample, src/config.c, src/imap.c,
  493. src/isync.h, src/main.c, src/sync.c:
  494. broke config code into config.c
  495. added support for uploading local messages with no UID to the IMAP server
  496. added Expunge configuration option
  497. added CopyDeletedTo configuration option
  498. 2001-01-09 21:09 Michael Elkins <me@sigpipe.org>
  499. * src/: maildir.c, sync.c:
  500. always put changed messages in the cur/ subdirectory since they are no
  501. longer new.
  502. don't set \Seen implicitly for messages in the cur/ folder. Require the S
  503. flag on the message since Mutt will move Old (unread, but not recent)
  504. messges into cur/.
  505. 2001-01-08 10:45 Michael Elkins <me@sigpipe.org>
  506. * Makefile.am, src/main.c:
  507. patch from Hugo Haas <hugo@larve.net>
  508. -c was not specified in the getopt*() calls
  509. set global password to the one the user inputs and use that as the
  510. default for remaining mailboxes
  511. 2001-01-05 22:20 Michael Elkins <me@sigpipe.org>
  512. * configure.in:
  513. added --with-ssl-dir to specify an alternate installation of OpenSSL
  514. 2000-12-31 23:39 Michael Elkins <me@sigpipe.org>
  515. * ChangeLog, isync.spec.in:
  516. pre 0.4 commit.
  517. updated rpm spec file
  518. 2000-12-31 23:37 Michael Elkins <me@sigpipe.org>
  519. * src/sync.c:
  520. display how many messages were fetched from the server
  521. 2000-12-31 23:17 Michael Elkins <me@sigpipe.org>
  522. * src/imap.c:
  523. fixed compilation error with no libssl support ("lorenzo martignoni"
  524. <lorenzo.martignoni@technologist.com>)
  525. 2000-12-28 19:44 Michael Elkins <me@sigpipe.org>
  526. * src/main.c:
  527. fixed config parser to accept arbitrary whitespace
  528. 2000-12-27 22:16 Michael Elkins <me@sigpipe.org>
  529. * src/imap.c:
  530. use imap_close to terminate a connection in imap_open()
  531. 2000-12-27 22:14 Michael Elkins <me@sigpipe.org>
  532. * isync.1, src/imap.c, src/isync.h, src/maildir.c, src/main.c:
  533. allow leading whitespace in config files
  534. now possible to sync multiple mailboxes by specifying multiple aliases on
  535. the command line. IMAP connections are reused if possible.
  536. don't initialize ssl unless we are going to use it.
  537. 2000-12-23 22:57 Michael Elkins <me@sigpipe.org>
  538. * src/: imap.c, isync.h:
  539. don't use NAMESPACE unless the server supports it
  540. 2000-12-23 01:02 Michael Elkins <me@sigpipe.org>
  541. * Makefile.am, README, src/cram.c, src/imap.c, src/isync.h:
  542. added CRAM-MD5 authentication support.
  543. parse server capability string to determine if STARTTLS is available
  544. 2000-12-22 22:22 Michael Elkins <me@sigpipe.org>
  545. * README, isync.1, src/imap.c, src/isync.h, src/main.c:
  546. isync-brokenservers.diff (Jeremy Katz <katzj@linuxpower.org>)
  547. adds support for disabling NAMESPACE, and disable various flavors of TLS/SSL
  548. for use with some broken IMAP servers.
  549. 2000-12-22 20:30 Michael Elkins <me@sigpipe.org>
  550. * src/: imap.c, sync.c:
  551. prompt user if they wish to continue if the server's X.509 certificate can't
  552. be verified.
  553. sync_mailbox should consider uid == 0 to be "unknown"
  554. 2000-12-22 16:48 Michael Elkins <me@sigpipe.org>
  555. * src/: main.c, sync.c:
  556. fixed sync_mailbox() to correctly write new messages to the local maildir
  557. box (Thomas Roessler <roessler@does-not-exist.org>)
  558. 2000-12-22 16:24 Michael Elkins <me@sigpipe.org>
  559. * src/main.c:
  560. set default MaxSize to 0 (unlimited)
  561. invert test for password being set after getpass() call (Magnus Jonsson
  562. <bigfoot@acc.umu.se>)
  563. 2000-12-22 08:14 Michael Elkins <me@sigpipe.org>
  564. * ChangeLog, NEWS, configure.in, isync.1, isyncrc.sample,
  565. src/imap.c, src/isync.h, src/maildir.c, src/main.c, src/sync.c:
  566. added MaxSize configuration variable
  567. fixed --fast to work robustly without relying on the \Recent flag in
  568. messages
  569. 2000-12-22 00:10 Michael Elkins <me@sigpipe.org>
  570. * src/: imap.c, isync.h, maildir.c, sync.c:
  571. RFC822.PEEK is obsolete in RFC2060. Use BODY.PEEK[] instead, which does
  572. the same thing
  573. keep track of the uidvalidity so isync can detect if the mailbox on the
  574. server has changed since the last sync.
  575. 2000-12-21 21:59 Michael Elkins <me@sigpipe.org>
  576. * NEWS:
  577. updated NEWS for 0.3 release
  578. 2000-12-21 21:56 Michael Elkins <me@sigpipe.org>
  579. * Makefile.am, isync.spec.in:
  580. added support for building RPMS
  581. 2000-12-21 20:49 Michael Elkins <me@sigpipe.org>
  582. * Makefile.am, isync.1:
  583. added target for creating html version of the man page
  584. documented the imaps: prefix to the Host command
  585. 2000-12-21 20:11 Michael Elkins <me@sigpipe.org>
  586. * src/: imap.c, sync.c:
  587. can't assume flag order when fetching a message. just search for the
  588. first `{' to find the message size.
  589. 2000-12-21 19:16 Michael Elkins <me@sigpipe.org>
  590. * isync.1, src/sync.c:
  591. added BUGS section to manpage detailing the fact that we break the
  592. maildir(5) spec by parsing the filename
  593. change message delivery to use the method described in maildir(5)
  594. 2000-12-21 18:51 Michael Elkins <me@sigpipe.org>
  595. * configure.in, src/main.c, src/sync.c:
  596. use getpass() to get the user's password
  597. unlink the temp file if we are unable to fetch a new message from the
  598. server.
  599. update version to 0.3
  600. 2000-12-21 12:14 Michael Elkins <me@sigpipe.org>
  601. * isync.1:
  602. fixed typo in man page for --verbose option
  603. 2000-12-21 11:24 Michael Elkins <me@sigpipe.org>
  604. * Makefile.am, README, TODO, src/imap.c, src/isync.h, src/list.c:
  605. added generic IMAP list parser and rewrote imap_exec() to handle
  606. arbitrary data instead of hardcoded
  607. 2000-12-21 07:51 Michael Elkins <me@sigpipe.org>
  608. * Makefile.am, README, configure.in, src/main.c:
  609. fixes to compile cleanly under Solaris 2.7
  610. 2000-12-21 07:27 Michael Elkins <me@sigpipe.org>
  611. * configure.in, isync.1, src/imap.c, src/isync.h, src/main.c:
  612. added OpenSSL support
  613. 2000-12-21 01:35 Michael Elkins <me@sigpipe.org>
  614. * ChangeLog, configure.in, src/main.c:
  615. config options were not case insensitive
  616. 2000-12-21 01:30 Michael Elkins <me@sigpipe.org>
  617. * src/: imap.c, isync.h, maildir.c, main.c, sync.c:
  618. don't fetch deleted messages when expunging
  619. display number of messages that are to be deleted
  620. flags for \Recent messages were not properly fetched
  621. local messages with updated flags were not corrected renamed
  622. 2000-12-20 23:28 Michael Elkins <me@sigpipe.org>
  623. * ChangeLog, Makefile.am:
  624. updated ChangeLog
  625. added log: rule in Makefile.am
  626. 2000-12-20 23:10 Michael Elkins <me@sigpipe.org>
  627. * autogen.sh:
  628. added autogen.sh to regenerate the build environment
  629. 2000-12-20 23:00 Michael Elkins <me@sigpipe.org>
  630. * COPYING:
  631. added missing files
  632. 2000-12-20 22:41 Michael Elkins <me@sigpipe.org>
  633. * AUTHORS, ChangeLog, Makefile.am, NEWS, README, configure.in,
  634. src/isync.h, src/main.c, TODO, src/imap.c, src/maildir.c,
  635. src/sync.c, isync.1, isyncrc.sample:
  636. Initial revision
  637. 2000-12-20 22:41 Michael Elkins <me@sigpipe.org>
  638. * AUTHORS, ChangeLog, Makefile.am, NEWS, README, configure.in,
  639. src/isync.h, src/main.c, TODO, src/imap.c, src/maildir.c,
  640. src/sync.c, isync.1, isyncrc.sample:
  641. initial import