-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog
1445 lines (820 loc) · 36.9 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2005-03-28 12:43 Oswald Buddenhagen <[email protected]>
* src/drv_imap.c:
quote CREATE argument
2005-03-28 12:26 Oswald Buddenhagen <[email protected]>
* configure.in:
bump version
2005-03-28 12:26 Oswald Buddenhagen <[email protected]>
* src/drv_maildir.c:
fix inverted condition leading to endless loop when message is changed
while isync is running.
2004-11-13 10:19 Oswald Buddenhagen <[email protected]>
* src/sync.c:
cope with out-of-disk-space halfways gracefully (that is, don't clobber
the sync state including the journal, but exit immediately).
2004-10-17 18:31 Oswald Buddenhagen <[email protected]>
* AUTHORS:
sf.net -> sourceforge.net. otherwise the list-post is different from the
actual address, which makes mutt add two to addresses on list-reply ...
2004-10-17 17:34 Oswald Buddenhagen <[email protected]>
* src/drv_imap.c:
ignore user-defined flags (for now).
also, split off the backslash from the "core" flag names.
2004-10-17 11:00 Oswald Buddenhagen <[email protected]>
* src/drv_imap.c:
fix segfault due to wrong pointer being passed to parse_response_code.
inspired by Raimar Döffinger
2004-10-17 10:30 Oswald Buddenhagen <[email protected]>
* src/drv_imap.c:
remove spurious crlf during cram auth. not sure that this instance of
socket_write should be (re)moved, but as long as the .cont callback is
used only for this ...
investigation & patch by Mike Delaney.
2004-09-24 10:45 Oswald Buddenhagen <[email protected]>
* Makefile.am:
install supplementary doc files.
REF: [email protected]
2004-09-20 13:31 Oswald Buddenhagen <[email protected]>
* src/drv_maildir.c:
use legacy flock() only on linux. at least on OS X flock aliases to
fcntl.
2004-09-20 13:28 Oswald Buddenhagen <[email protected]>
* src/: drv_imap.c, isync.h, util.c, compat/main.c:
stdarg.h at the right places
2004-09-15 11:33 Oswald Buddenhagen <[email protected]>
* README:
update c-client compatibility
2004-09-15 11:06 Oswald Buddenhagen <[email protected]>
* src/drv_maildir.c:
when storing \seen messages, don't set the \recent flag on them. could
well be that this is incorrect, but some mailers need it that way.
when trashing messages, preserve their \recent status as well.
2004-09-15 10:44 Oswald Buddenhagen <[email protected]>
* configure.in:
whoops, wrong define
2004-09-08 18:40 Oswald Buddenhagen <[email protected]>
* configure.in:
don't encode maturity in version number
2004-09-08 18:38 Oswald Buddenhagen <[email protected]>
* Makefile.am:
optimize rpms for i686
2004-09-08 18:28 Oswald Buddenhagen <[email protected]>
* configure.in:
sanitize the OpenSSL detection
2004-09-08 18:14 Oswald Buddenhagen <[email protected]>
* src/drv_imap.c:
stddef.h for offsetof
2004-09-08 16:52 Oswald Buddenhagen <[email protected]>
* src/drv_maildir.c:
first check _both_ bounds, then compare ...
2004-09-07 13:59 Oswald Buddenhagen <[email protected]>
* src/sync.c:
print name of mailbox being opened.
2004-08-13 13:03 Oswald Buddenhagen <[email protected]>
* src/drv_imap.c:
fix -C for imap mailboxes:
- SELECT does not return [TRYCREATE]
- fix bit field truncation
2004-06-17 15:44 Oswald Buddenhagen <[email protected]>
* configure.in:
A{C,S}_HELP_STRING aliasing tricks.
2004-05-23 18:39 Oswald Buddenhagen <[email protected]>
* src/drv_maildir.c:
store new UIDVALIDITY immediately after initializing it
2004-04-27 22:23 Oswald Buddenhagen <[email protected]>
* src/compat/main.c:
old -l is new -l -C
2004-04-26 16:48 Oswald Buddenhagen <[email protected]>
* src/compat/: config.c, isync.h, main.c:
full support for absolute paths in Mailboxes
2004-04-26 16:09 Oswald Buddenhagen <[email protected]>
* src/compat/config.c:
strip $HOME and ~ from Mailbox paths
2004-03-30 00:32 Oswald Buddenhagen <[email protected]>
* src/: util.c, compat/util.c:
fix return values of asprintf replacement.
2004-03-29 08:52 Oswald Buddenhagen <[email protected]>
* src/compat/: config.c, isync.1, isync.h, main.c:
unscrew --delete by merging it into the config file. merge --expunge as
well for symmetry.
2004-03-27 17:07 Oswald Buddenhagen <[email protected]>
* .cvsignore, Makefile.am, README, configure.in, isync.1,
isync.spec.in, isyncrc.sample, src/.cvsignore, src/Makefile.am,
src/config.c, src/cram.c, src/dotlock.c, src/dotlock.h,
src/drv_imap.c, src/drv_maildir.c, src/imap.c, src/isync.h,
src/list.c, src/maildir.c, src/main.c, src/mbsync.1,
src/mbsyncrc.sample, src/mdconvert.1, src/mdconvert.c,
src/sync.c, src/util.c, src/compat/.cvsignore,
src/compat/Makefile.am, src/compat/config.c,
src/compat/convert.c, src/compat/isync.1, src/compat/isync.h,
src/compat/isyncrc.sample, src/compat/main.c, src/compat/util.c:
The Big Rewrite. too many change to list them all.
as opposed to earlier threats, BerkDB was not entirely dropped; i
suppose the isync 0.7 -> 0.8 change had a reason, so i added an
alternative UID storage scheme.
note that BDB 4.0 is not sufficient, as the db->open function changed in
an incompatible way ...
i updated the debian packaging except for a changelog entry.
note that i removed the upgrade blurb, as upstream now has a smooth
upgrade path down to at least isync 0.4.
2004-03-26 17:34 Oswald Buddenhagen <[email protected]>
* get-cert:
excessively secure temp file creation.
more user friendliness.
2004-03-23 16:52 Oswald Buddenhagen <[email protected]>
* src/sync.c:
be cygwin-compliant: don't use link()
2004-03-22 17:51 Oswald Buddenhagen <[email protected]>
* src/sync.c:
unscrew file naming scheme
2004-02-07 16:36 Oswald Buddenhagen <[email protected]>
* src/dotlock.c:
portability: don't rely on struct flock layout
2004-02-01 17:44 Oswald Buddenhagen <[email protected]>
* .cvsignore:
shht
2004-02-01 17:27 Oswald Buddenhagen <[email protected]>
* src/: main.c, sync.c:
once again: (slightly) better output.
make maildir flag setting failure non-fatal. maildir sucks ...
2004-01-31 02:01 Oswald Buddenhagen <[email protected]>
* src/: imap.c, isync.h:
more sophisticated CAPABILITY handling. also, don't issue the command if
the initial response already had it in the status code.
2004-01-31 00:39 Oswald Buddenhagen <[email protected]>
* src/imap.c:
don't ask for NAMESPACE if Folder was specified
2004-01-31 00:35 Oswald Buddenhagen <[email protected]>
* src/: imap.c, isync.h:
following the "screw murphy" principle and commiting untested patch:
obey LOGINDISABLED
2004-01-27 22:01 Oswald Buddenhagen <[email protected]>
* src/imap.c:
PREAUTH cannot come out of the blue
2004-01-27 21:58 Oswald Buddenhagen <[email protected]>
* src/imap.c:
cleanup around parse_fetch
2004-01-27 21:50 Oswald Buddenhagen <[email protected]>
* src/: imap.c, isync.h, main.c:
make Tag int, move it to imap.c
2004-01-27 01:11 Nicolas Boullis <[email protected]>
* acinclude.m4, configure.in:
Add a --disable-maintainer-mode option to configure.
2004-01-20 02:55 Oswald Buddenhagen <[email protected]>
* src/imap.c:
don't use STARTTLS for PREAUTH connections. uw-imap doesn't seem to like
it, and it does not make too much sense anyway - i think - state converse
opinions now.
2004-01-20 02:27 Oswald Buddenhagen <[email protected]>
* Makefile.am:
exclude ChangeLog (do'h), NEWS and TODO when creating ChangeLog. exclude
debian/ as well, based on the fact that it already has a detailed log -
is that ok with everybody?
2004-01-18 03:22 Oswald Buddenhagen <[email protected]>
* isync.1, src/imap.c, src/isync.h, src/maildir.c, src/main.c,
src/sync.c:
another message output cleanup, still not perfect (info messages will be
interleaved with progress dots).
support specifying -q twice to suppress warnings as well.
2004-01-17 12:38 Oswald Buddenhagen <[email protected]>
* isync.1:
document mua interaction
2004-01-16 11:11 Oswald Buddenhagen <[email protected]>
* AUTHORS:
credit where credit is due. are the comments satisfactory for everybody?
2004-01-15 04:51 Theodore Ts'o <[email protected]>
* get-cert:
Script that can be used to extract the server's certificate from an IMAP
server.
2004-01-15 03:23 Oswald Buddenhagen <[email protected]>
* configure.in:
remove useless define and more verbose error message.
2004-01-13 04:56 Theodore Ts'o <[email protected]>
* configure.in:
Use a more sophisticated test for the existence of libdb that works for
berk_db 4.0.
2004-01-12 02:49 Oswald Buddenhagen <[email protected]>
* configure.in:
bah, forgot to remove debian/Makefile.in from AC_OUTPUT. :}
kde's overly sophisticated build system does that automatically ...
2004-01-12 02:24 Theodore Ts'o <[email protected]>
* src/: imap.c, isync.h, main.c:
Optimized isync by not fetching the sizes of messages if they are
unneeded (i.e., if MaxSize is not specified in the config file).
Patch and idea originally from Nicolas Boullis <[email protected]>,
modified/polished by Theodore Ts'o per comments by Oswald Buddenhagen.
2004-01-12 01:52 Oswald Buddenhagen <[email protected]>
* configure.in, src/isync.h, src/maildir.c, src/sync.c:
sync uid database after every message. this is accompanied by a dbm ->
db4 migration. patch by theodore, with some final polishing by me.
2004-01-12 01:38 Oswald Buddenhagen <[email protected]>
* Makefile.am:
use ../CVSROOT/accounts for UID mapping in ChangeLog.
2004-01-12 01:36 Oswald Buddenhagen <[email protected]>
* AUTHORS:
be more explicit about contact address
2004-01-11 13:38 Oswald Buddenhagen <[email protected]>
* .cvsignore:
new stuff
2004-01-11 13:35 Oswald Buddenhagen <[email protected]>
* Makefile.am:
getting rid of Makefile.am in debian/ - it seems to be non-standard and
is a pita to maintain anyway. instead, make distdir and distclean depend
on a partial debian-clean.
2004-01-11 12:53 Oswald Buddenhagen <[email protected]>
* autogen.sh:
don't call configure
2004-01-09 21:43 Oswald Buddenhagen <[email protected]>
* src/main.c:
ignore anything that does not look remotely like a maildir when
collecting mailboxes for OneToOne.
2003-12-07 16:37 Oswald Buddenhagen <[email protected]>
* isyncrc.sample:
add sample CertificateFile
2003-12-07 16:36 Oswald Buddenhagen <[email protected]>
* src/imap.c:
add trailing space to password prompt
2003-12-07 16:34 Oswald Buddenhagen <[email protected]>
* src/main.c:
make imaps: on the command line adjust the port and ssl options as well
2003-12-07 16:09 Oswald Buddenhagen <[email protected]>
* configure.in:
bump version
2003-12-02 03:53 Oswald Buddenhagen <[email protected]>
* src/imap.c:
echo the mailbox the password is for
2003-11-11 04:02 Oswald Buddenhagen <[email protected]>
* AUTHORS:
be more explicit about maintainership, as people don't seem to get it.
2003-09-02 14:06 Oswald Buddenhagen <[email protected]>
* isync.1:
minor additions
2003-07-02 19:18 Oswald Buddenhagen <[email protected]>
* src/imap.c:
fix crash when syncing multiple mailboxes over a Tunnel
2003-05-14 15:42 Oswald Buddenhagen <[email protected]>
* isync.1:
minor
2003-05-07 02:06 Oswald Buddenhagen <[email protected]>
* .cvsignore, Makefile.am, autogen.sh, configure.in, src/config.c,
src/cram.c, src/dotlock.c, src/imap.c, src/isync.h, src/list.c,
src/maildir.c, src/main.c, src/sync.c:
- make it work without SSL
- switch from -Ds in Makefile to config.h
- small header cleaup
2003-05-07 02:04 Oswald Buddenhagen <[email protected]>
* isync.spec.in:
make it actually work
2003-05-06 04:17 Oswald Buddenhagen <[email protected]>
* Makefile.am:
minors
2003-05-06 04:15 Oswald Buddenhagen <[email protected]>
* README:
i'm bored :)
2003-05-05 19:58 Oswald Buddenhagen <[email protected]>
* src/: config.c, isync.h, main.c:
don't free any config strings - who cares for a few bytes?
this fixes some crashes at exit.
2003-05-05 19:17 Oswald Buddenhagen <[email protected]>
* Makefile.am:
switch ChangeLog generation to cvs2cl
2003-05-05 15:43 Oswald Buddenhagen <[email protected]>
* isync.1:
minor fixes
2003-05-05 15:41 Oswald Buddenhagen <[email protected]>
* configure.in:
cleanup
2003-05-05 15:24 Oswald Buddenhagen <[email protected]>
* src/main.c:
accumulate status over multiple mailboxes, i.e., don't abort after first
failure
2003-05-05 14:54 Oswald Buddenhagen <[email protected]>
* src/imap.c:
fix imaps:
2003-02-27 19:43 Oswald Buddenhagen <[email protected]>
* src/sync.c:
ignore \Recent, as it is voided by the syncronization run itself.
2002-12-28 16:31 Oswald Buddenhagen <[email protected]>
* src/: config.c, cram.c, imap.c, isync.h, list.c, maildir.c,
main.c, sync.c:
- update copyrights. 2003 didn't begin yet, but who cares? :)
2002-12-28 05:14 Oswald Buddenhagen <[email protected]>
* isync.1:
- fixed typo
- updated maintainer and location
2002-12-28 05:12 Oswald Buddenhagen <[email protected]>
* src/: maildir.c, sync.c:
- update isyncmaxuid properly
2002-12-28 05:04 Oswald Buddenhagen <[email protected]>
* src/config.c:
- fixed two crashes
2002-12-28 05:02 Oswald Buddenhagen <[email protected]>
* src/imap.c:
- handle bogus search responses more gracefully
2002-12-28 05:00 Oswald Buddenhagen <[email protected]>
* src/imap.c:
- workaround imap server bug: lock files are no mailboxes
2002-12-28 04:58 Oswald Buddenhagen <[email protected]>
* src/: imap.c, sync.c:
- improve console output
2002-12-28 04:11 Oswald Buddenhagen <[email protected]>
* .cvsignore:
- ssht!
2002-12-28 04:03 Oswald Buddenhagen <[email protected]>
* .cvsignore, AUTHORS, Makefile.am, README, autogen.sh,
configure.in, isync.spec.in, src/.cvsignore, src/isync.h,
src/Makefile.am:
- took over maintenance
- moved to sourceforge
- reorganized cvs structure
2002-10-30 03:31 Michael Elkins <[email protected]>
* 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:
Updated the copyright notice to allow an exception for linking with OpenSSL,
which has a non-GPL compatible license.
2002-10-30 03:23 Michael Elkins <[email protected]>
* .cvsignore, isync.1, src/config.c, src/imap.c, src/isync.h,
src/maildir.c, src/main.c, src/sync.c:
Bunch 'o patches from Oswald Buddenhagen:
i implemented some cool stuff (tm).
first, the long missing "create server-side missing mailboxes". -C now
creates both local and remote boxes; -L and -R create only local/remote.
second, i implemented a 1:1 remote:local folder mapping (-1) with an
optional INBOX exception (inbox/-I). the remote folder is specified with
the folder keyword (or -F switch) and takes precedence over the
namespace setting. the local directory with the mailboxes can now be
specified on the command line, too (-M).
another patch:
- made the -1 switch settable permanently (OneToOne). after all, you
usually define your mailbox layout once forever. removed -A, as it is
semantically -a modified by -1.
- cleaned up message output a bit. still, the quiet variable should be
used throughout the program. at best, create some generic output
function, which obeys a global verbosity level variable.
- optimized + cleaned up configuration parser slightly
- minor cleanups
add an (almost) unique id to every uploaded message and search for it
right after. i thought about using the message-id, but a) it is not
guaranteed to be unique in a mailbox (imagine you edit a mail and store
the dupe in the same box) and b) some mails (e.g., postponed) don't even
have one. a downside of the current implementation is, that this
id-header remains in the mailbox, but given that it wastes only 27 bytes
per mail and removing it would mean several roundtrips more, this seems
acceptable.
i changed the line-counting loop to use a mmapped file instead of
reading it in chunks, as it makes things simpler and is probably even
faster for big mails.
the amount of goto statements in my code may be scary, but c is simply
lacking a multi-level break statement. :)
this is the "shut up" patch. :) it makes the -q option consequent, so to
say.
additionally it adds an -l option which gathers all defined/found
mailboxes and just outputs the list. don't ask what i need it for. ;)
2002-10-30 03:01 Michael Elkins <[email protected]>
* src/maildir.c:
fixed missing closedir() call (Joey Hess)
2002-06-27 05:55 Michael Elkins <[email protected]>
* src/imap.c:
explicitly set global.pass to NULL when getpass() returns an empty string.
2002-06-27 05:51 Michael Elkins <[email protected]>
* src/imap.c:
Oswald Buddenhagen <[email protected]>
* fix imap_open() brokeness with PREAUTH (missed hunk from previous patch)
2002-06-22 19:06 Michael Elkins <[email protected]>
* src/: dotlock.c, imap.c:
fixed errors introduced by ME when hand-applying Oswald Nuddenhagen's
patch.
2002-06-22 03:21 Michael Elkins <[email protected]>
* autogen.sh, src/dotlock.c, src/imap.c, src/isync.h, src/main.c:
Patch from Oswald Buddenhagen <[email protected]>
- move prompt for password to imap_open()
- don't ask for global password in PREAUTH state
- use socketpair() to create one full-duplex fd in tunnel mode
instead of two half-duplex pipes
- don't set lck.l_pid in fcntl() call (its read-only)
- use F_SETLK instead of F_SETLKW to avoid infinite waiting
- use "$@" in autogen.sh to get proper word expansion
2002-06-21 02:26 Michael Elkins <[email protected]>
* configure.in, src/isync.h:
Fixed to compile under FreeBSD 4.6-RELEASE. Must include ndbm.h rather than
db.h.
2002-06-21 01:33 Michael Elkins <[email protected]>
* Makefile.am, src/dotlock.c, src/dotlock.h, src/maildir.c:
remove debian/files
move dotlocking code to dotlock.c.
dotlocking code fixed to ignore whether or not the lockfile exists on
open(). we only care about whether fcntl() was able to lock it.
2002-06-19 04:31 Michael Elkins <[email protected]>
* src/sync.c:
Don't bother uploaded messages marked deleted when we are going to expunge.
2002-06-19 03:11 Michael Elkins <[email protected]>
* AUTHORS, src/imap.c, src/maildir.c:
fixed unused var warning in imap_open()
locking cleanups from Oswald Buddenhagen <[email protected]>
* don't need to stat the lockfile since it will always be size 0
* only remove lockfile when we actually succeeded in locking
2002-06-19 02:44 Michael Elkins <[email protected]>
* Makefile.am:
Debian package cleanups from Oswald Buddenhagen <[email protected]>
2002-06-18 08:37 Michael Elkins <[email protected]>
* README, isync.1, src/isync.h, src/maildir.c, src/main.c,
src/sync.c:
updated URL for project
fixed segmentation fault caused by double free() when an error occurred
during the IMAP transmission.
fixed bug where isync could not handle a 0 value UIDVALIDITY
2002-04-19 21:43 Michael Elkins <[email protected]>
* configure.in, isync.1, isyncrc.sample, src/config.c, src/imap.c,
src/isync.h, src/main.c:
PREAUTH support from Oswald Buddenhagen <[email protected]>
Added Tunnel directive to allow the user to specify a shell command to run
to set up an IMAP connection in place of a TCP socket (eg., to run over
an SSH session).
2002-01-28 20:39 Michael Elkins <[email protected]>
* isync.spec.in:
post 0.8 release commit
2002-01-28 20:34 Michael Elkins <[email protected]>
* configure.in:
check for dbm_open() in libc and libdb
2002-01-17 20:33 Michael Elkins <[email protected]>
* src/sync.c:
don't bother renaming the message file if we are about to unlink() it
2002-01-16 23:23 Michael Elkins <[email protected]>
* AUTHORS, Makefile.am, src/sync.c:
remove tilde backup files for distclean
fixed indentation
added full name to AUTHORS
reformated NEWS blurb for 0.8
2002-01-16 23:13 Michael Elkins <[email protected]>
* src/: maildir.c, sync.c:
sync_mailbox() did not update the msg struct when flags were changed,
causing the expunge command to fail
remove bogus strfcpy() line
2002-01-16 22:51 Michael Elkins <[email protected]>
* Makefile.am, configure.in:
added debian build files dist target so that people can use them to build
their own .deb packages without having to use CVS
2002-01-16 22:43 Michael Elkins <[email protected]>
* isync.1, src/maildir.c, src/sync.c:
added debian build files
fixed indentation
added bug note to manpage about db file format not being architecture
independent
2002-01-16 22:22 Michael Elkins <[email protected]>
* src/: maildir.c, sync.c:
remove the uid from the db when a message is deleted from the maildir
optimize db fetch/store to not copy the base filename
2002-01-16 20:47 Michael Elkins <[email protected]>
* 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:
updated year in copyright notice
the uid for each message in the maildir is now stored in a dbm database
rather than the filename. this change was necessary because isync became
confused if you copied a message to another folder, in which case the uid
was invalid.
as a result of the above change, isync now acquires a mutex on the mailbox
to protect the dbm database from concurrent access.
main() was reworked to continue gracefully when an error is encountered, and
to always call maildir_close() so that the lock can be disabled, and the
database closed.
2001-11-20 19:28 Michael Elkins <[email protected]>
* Makefile.am, isync.spec.in:
post 0.7-release commit
2001-11-20 19:06 Michael Elkins <[email protected]>
* Makefile.am, isync.1, src/isync.h, src/maildir.c, src/main.c:
added --create/-C command line option to force creation of the local
maildir-style mailbox if nonexistent
debug.h was not included in isync_SOURCES in Makefile.am
2001-11-19 20:41 Michael Elkins <[email protected]>
* Makefile.am, configure.in, src/config.c, src/isync.h, src/list.c,
src/main.c:
added memory debugging code
fixed memory leak in free_list()
free memory associated with global settings on exit
2001-11-16 22:23 Michael Elkins <[email protected]>
* src/: cram.c, imap.c, isync.h, sync.c:
remove c++ style comments
use %lu and cast off_t to unsigned long in printf()
2001-11-16 00:59 Michael Elkins <[email protected]>
* isync.1, src/config.c, src/isync.h, src/main.c, src/sync.c:
Added MaxMessages patch from Eivind Eklund <[email protected]>.
config_defaults() can just use memcpy() instead of assigning each struct
member individually.
config_defaults() can be declared static
2001-11-14 18:40 Michael Elkins <[email protected]>
* configure.in, src/config.c:
move strndup() code into config.c for less complexity
change AC_REPLACE_FUNC(strndup) to AC_CHECK_FUNCS(strndup)
sed expression checking for gcc-3.0 should be quoted beccause it
fails under Solaris 2.7
2001-11-13 01:36 Michael Elkins <[email protected]>
* src/: config.c, sync.c:
strndup() could return a non-NULL terminated string
size_t should be printed with %lu
when expending tildes (~), an extra slash was inserted after the user's home
directory
2001-11-13 00:03 Michael Elkins <[email protected]>
* src/: isync.h, maildir.c, main.c:
merge maildir_sync() and maildir_close(). the maxuid in a maildir still
needs to be updated in --fast mode, and the sync code already checks to see
if any changes were made to the mailbox.
2001-11-09 01:35 Michael Elkins <[email protected]>
* README:
add FreeBSD to the list of tested platforms
2001-11-09 01:23 Michael Elkins <[email protected]>
* configure.in, src/config.c, src/imap.c, src/maildir.c:
update version to 0.7
detect short write in write_strip()
fix compilation warnings with gcc-2.95.4
2001-10-31 20:50 Michael Elkins <[email protected]>
* configure.in, src/imap.c, src/isync.h, src/main.c, src/sync.c:
set compiler warnings for gcc-3.0 as well
display message with count of uploaded messages
--quiet now supresses warnings in sync_mailbox()
fixed compiler warnings with -Wshadow
2001-10-31 07:06 Michael Elkins <[email protected]>
* isync.1:
post 0.6 commit
2001-10-30 23:57 Michael Elkins <[email protected]>
* README, configure.in:
add strndup replacement function for systems which lack it
2001-10-03 19:10 Michael Elkins <[email protected]>
* Makefile.am, src/maildir.c:
fixed broken code in maildir_clean_tmp()
2001-10-03 18:48 Michael Elkins <[email protected]>
* src/maildir.c:
added code to clean the tmp directory in a maildir to comply with
maildir(5)
2001-10-03 08:32 Michael Elkins <[email protected]>
* src/config.c:
forgot to add code to parse the `Delete' option
2001-10-03 08:18 Michael Elkins <[email protected]>
* src/main.c:
forgot conditional #if HAVE_LIBSSL around setting of .use_imaps in main()
from command line arguments
2001-10-03 08:15 Michael Elkins <[email protected]>
* src/main.c:
update Copyright printed by --help
add compile time option list to --help output
2001-10-03 07:42 Michael Elkins <[email protected]>
* isync.1, isyncrc.sample, src/config.c, src/isync.h, src/main.c,
src/sync.c:
added `Delete' configuration option to force -d option
sync_mailbox() didn't consider MaxSize == 0 to mean "unlimited".
load_config() needs to print a newline in its error messages since
next_arg() kills the newline of the line that was read out of the config
file.
2001-10-03 02:01 Michael Elkins <[email protected]>