ChangeLog 21 KB

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