72233c443c99bc088bdd87d6f345a30dde2caacd
[claws.git] / ChangeLog.claws
1 2002-01-11 [christoph]  0.6.6claws47
2
3         * src/compose.c
4                 select account from account ids if possible and
5                 correctly set save folder for copy in reedit
6
7 2002-01-10 [paul]       0.6.6claws46
8
9         * sync with sylpheed 0.7.0 release
10                 see ChangeLog entries 2002-01-07, 2002-01-08 and
11                 2002-01-09
12
13 2002-01-09 [alfons]
14
15         * src/summaryview.c
16                 remove more dirt traces...
17
18 2002-01-09 [alfons]
19         
20         * src/summaryview.c
21                 clean up some traces of my debugging stuff
22
23 2002-01-09 [alfons]     0.6.6claws45
24
25         * src/filtering.c
26                 break up filteringprop_apply() in three separate pieces
27                 so we can drop messages that failed processing in the
28                 inbox
29
30         * src/summaryview.c
31                 fix bug #469598 "no refresh of inbox after filter" which 
32                 was introduced by the new summary view locking, and which 
33                 prevented the summary view to update after a manual filter 
34                 message. claw's filter message requires a summary_show().
35                 (aargh, summary_show() again! :-)
36                 
37 2002-01-07 [alfons]     0.6.6claws44
38
39         * src/headerwindow.c
40         * src/logwindow.c
41         * src/messageview.c
42         * src/sourcewindow.c
43                 bring in Hiro's last 0.7.0 wm class fixes
44
45         * tools/sylprint.pl
46                 bring in Ricardo's fix for sylprint script
47
48         * AUTHORS       
49         * src/rfc2015.[ch]
50         * src/prefs_common.[ch]
51         * src/prefs_account.[ch]
52         * src/compose.c
53                 clean up account preference poison in rfc2015,
54                 and preparation to fix double sign bug 
55                 (patch submitted by Simon 'corecode' Schubert) 
56
57 2002-01-07 [christoph]  0.6.6claws43
58
59         * src/mh.c
60                 search for free message number, do not only rely
61                 on last_num
62         * src/send.c
63                 fix smtp auth and use extra account information
64                 if available, if not use pop3 data instead
65                 (closes bug #500341)            
66         * src/ssl.[ch]
67                 match coding style
68
69 2002-01-06 [alfons]     0.6.6claws42
70
71         * src/mainwindow.c
72                 try making the separate windows work again...
73
74 2002-01-06 [alfons]     0.6.6claws41
75
76         * src/mainwindow.c
77                 adapt Hiro's separate window menu (to get rid of the funny
78                 duplicate menu items), and make it work again
79
80 2002-01-06 [alfons]     0.6.6claws40
81
82         * tools/Makefile.am
83         * tools/sylprint.rc
84         * tools/sylprint.pl
85         * tools/README.sylprint
86                 add sylprint script for printing mails from Sylpheed
87                 (contributed by Ricardo Mones Lastra)
88
89         * src/acount.c
90                 clean up
91
92 2002-01-06 [melvin]     0.6.6claws39
93
94         * src/mainwindow.c
95         * src/summaryview.c
96                 Fixed crash introduced in 0.6.6claws38 by the menu
97                 reorganisation (Hide read messages)
98         
99         * ChangeLog.claws 
100                 Fixed typo (we are now in 2002, alfons ;) )
101
102 2002-01-05 [alfons]     0.6.6claws38
103
104         * sync with sylpheed 0.6.6cvs10-17
105                 (last stuff marked as LAST_STABLE)
106
107 2002-01-04 [melvin]     0.6.6claws37
108
109         * src/account.c
110                 Made account selection code use strcasestr again instead of
111                 g_strcasecmp (fixes bug where reediting queued messages
112                 did not select proper account reported by T. Link).
113         
114         * src/folderview.c
115                 Fix bug where folder icons are not shown when 'hide read messages'
116                 is on.
117         
118         * src/stock_pixmaps.[ch]
119                 Added folder icons for 'hide read messages'.
120         
121         * src/compose.c
122                 Fixed bug where 'Enter' in a header entry will send the message 
123                 if 'CTL-Enter' was chosen as a shorcut for sendind. 
124
125 2002-01-03 [melvin]     0.6.6claws36
126         
127         * src/prefs.[ch]
128                 Added popup menu for common preferences and
129                 account preferences (right click on tab displays
130                                 a menu of all tabs.)
131
132 2002-01-02 [melvin]     0.6.6claws35
133
134         * src/gtkspell.[ch]
135                 Made spelling code compatible with undo/redo feature.
136                 Added creation of suggestion mode menu for the general
137                         preferences.
138         
139         * src/prefs_common.[ch]
140                 Added option menu for the speller's suggestion mode.
141                 Added missing spaces in "..." buttons and made a "..."
142                         button non translatable!
143         
144         * src/compose.c
145                 Made speller use the default suggestion mode.
146                 Hack to make it possible to choose 'CTRL-Enter' as a
147                         shortcut for sending (and only for sending).
148
149         * src/prefs_folder_item.c
150                 Changing subject simplification does not update cache 
151                         anymore (because it is unnecessary).
152                 Fixed bug where changing subject simplification updated the 
153                         summaryview even when the viewed folder is not the
154                         folder which properties are being changed. (E.g. 
155                                         viewing folder A and changing
156                                         the subject simplification of 
157                                         folder B -not being viewed- updated the 
158                                         summaryview of folder A with data of
159                                         folder B). (Hope this is clear... )
160
161 2001-12-31 [alfons]     0.6.6claws34
162         
163         * src/ldif.c
164         * src/mutt.c
165                 fgetc() returns a signed integer which doesn't
166                 fit in a char. so c truncates this to a char
167                 but we may lose significant bits. i.e. we may
168                 comparing 0xFF which may not be equal to -1
169                 unless properly casted to signed char which
170                 we won't do because fgetc() returns a signed
171                 integer which doesn't fit in a char. so c 
172                 truncates this to a char but we may lose 
173                 significat bits. (you got the idea, thanks
174                 to Gustavo Noronha Silva <kov@debian.org>
175                 and the Debian folks!)
176
177 2001-12-30 [alfons]     0.6.6claws33
178
179         * src/prefs_common.c
180                 add #ifdef USE_PSPELLs that Melvin forgot               
181
182 2001-12-30 [melvin]     0.6.6claws32
183         
184         * src/prefs_common.[ch]
185                 Added configurable color for misspelled words.
186
187         * src/gtkspell.[ch]
188                 Fixed bug of foreground text color (reported by David
189                                 Mehrmann)
190                 Added configurable color for misspelled words.
191
192 2001-12-30 [alfons]     0.6.6claws31
193
194         * src/folder.c
195                 remove unnecessary things someone put there
196
197         * src/mh.c
198         * src/folder.[ch]
199                 make folder properties (like threading and sorting) persistent
200                 (closes bug #497424 "rescan folder tree resets proprieties")
201                 currently this is only for MH folders. 
202
203 2001-12-29 [melvin]     0.6.6claws30
204
205         * src/string_match.[ch]
206                 Optimized a bit: regexp pattern buffer compiled only once, and
207                   one subroutine call removed. Fixed ^ regexp search: Now, 
208                   "(^Re: )|(^Hello)" removes only "Re: " from "Re: Hello".
209         
210         * src/summaryview.c
211                 Subject filtering changed to filter summary columns and
212                   not directly the messages subject cache. The loss in 
213                   performance is balanced by the improvement of string_match.
214                 Added an alert panel if there is an error in the regexp.
215
216         * src/src/prefs_folder_item.h
217                 Added a regexp pattern buffer.
218
219 2001-12-28 [alfons]     0.6.6claws29
220
221         * src/string_match.[ch]
222                 clean up name space
223                 allow compilation *BSD
224
225 2001-12-27 [alfons]     0.6.6claws28
226
227         * src/filter.c
228                 sync the Hiro's bug fix for BSD
229
230 2001-12-27 [melvin]     0.6.6claws27
231         
232         * src/compose.c
233                 Simplify focus to subject entry code.
234
235 2001-12-27 [darko]      0.6.6claws26
236
237         * src/filtering.c
238         * src/mbox_folder.c
239         * src/messageview.c
240         * src/mh.c
241         * src/procheader.[ch]
242         * src/procmsg.h
243         * src/stock_pixmap.[ch]
244         * src/summaryview.c
245                 Show key icon for encrypted mails in summary view
246
247         * src/pixmaps/clip.xpm
248         * src/pixmaps/clipkey.xpm
249         * src/pixmaps/key.xpm
250                 New/modified icons for the above
251
252 2001-12-27 [melvin]     0.6.6claws25
253
254         * src/prefs_common.c
255                 Put spell checker options in a separate tab to decrease
256                 the Common Preferences window height.
257
258         * README.claws  
259                 Update spell checker usage instruction about its options
260                 location.
261
262 2001-12-27 [melvin]     0.6.6claws24
263
264         * src/compose.c
265                 Changed subject entry widget position. Initial focus is
266                 on the To header instead of the subject entry.
267                 Creating a new header scrolls the header list to make the
268                 created one visible. Nevertheless, when automatically filling
269                 headers, the first one is shown.
270                 A Tab key press in the last empty header entry zips the 
271                 focus to the subject entry.
272                 (I did not change the combo boxes, yet)
273
274 2001-12-26 [alfons]     0.6.6claws23
275
276         * src/prefs_account.c
277         * src/inc.c
278                 allow default inbox to reside in another mailbox (only
279                 works for POP3 accounts)
280
281 2001-12-26 [alfons]     0.6.6claws22
282         
283         * src/textview.c
284                 make reply-on-click work with the account of the selected folder
285         * src/compose.c
286                 put a fixme here to remind me to fix finding correct default
287                 account for nested folders
288
289 2001-12-25 [alfons]     0.6.6claws21
290
291         * src/summaryview.c
292                 make column headers display locked and mark pixmaps (idea by Melvin) 
293                 fix bug by adding score and locked column type to sort array
294
295 2001-12-25 [alfons]     0.6.6claws20
296         
297         * src/summaryview.c
298                 catch a *potentially* inadvertent write back of  
299                 the message cache(s) introduced by 0.6.5claws37
300
301 2001-12-25 [christoph]  0.6.6claws19
302
303         * src/stock_pixmap.[ch]
304         * src/summaryview.c
305                 add ignore thread pixmap
306                 (can someone draw a better icon for this?)
307
308 2001-12-24 [alfons]     0.6.6claws18
309
310         * src/prefs_folder_item.c
311                 make address completion actually work for the
312                 Default To address in the Folder Property dialog.
313
314 2001-12-24 [alfons]     0.6.6claws17
315         
316         * src/summaryview.c
317                 use new style regexp for subject stripping 
318                 (patch submitted by Thomas Link <t.link.tmp200101@gmx.net>)
319
320 2001-12-24 [darko]      0.6.6claws16
321
322         * src/pgptext.c
323         * src/rfc2015.c
324                 move GPG related informational messages to debug mode
325
326 2001-12-23 [alfons]     0.6.6claws15
327
328         * src/stock_pixmap.[ch]
329         * src/summaryview.c
330                 add the forgotten Claws' locked pixmap
331
332 2001-12-23 [alfons]     0.6.6claws14
333
334         * src/filesel.c
335                 accept file name typed in entry in multi file
336                 selector (patch submitted by Gustavo Noronha Silva 
337                 <kov@debian.org>)
338
339 2001-12-23 [alfons]     0.6.6claws13
340
341         * src/prefs_filter.c
342         * src/prefs_filtering.c
343         * src/matcher.c
344         * src/importmutt.c
345                 clean up a little bit
346         
347         * src/string_match.c
348                 validate input strings a little bit more
349
350 2001-12-23 [alfons]     0.6.6claws12
351
352         * src/Makefile.am
353         * src/summaryview.c
354         * src/string_match.[ch]         ** NEW **
355         * src/folderview.[ch]
356         * src/headerview.h
357         * src/folder.[ch]
358         * src/prefs_folder_item.[ch]
359                 add subject simplification to strip out strings from
360                 a subject line (esp. handy for mailing lists). 
361                 (original patch by by Thomas Link <t.link.tmp200101@gmx.net>,
362                 but slightly changed things for better integration.)
363
364 2001-12-23 [alfons]     0.6.6claws11
365
366         * src/mainwindow.c
367                 fix bug introduced by submission included in 0.6.5claws52.
368                 ideally this submission should clean the trash if any trash
369                 folder has a message. however, the hasTrash variable was
370                 set to false whenever a trash folder was empty (discarding
371                 a previously found *filled* trash folder.)
372
373                 also edited the code a little bit and made it more safe.
374
375 2001-12-22 [alfons]     0.6.6claws10
376
377         * src/imap.c
378                 quick fix for Martin Pool's omission of an account
379                 specific SSL setting
380
381 2001-12-22 [alfons]     0.6.6claws9
382
383         * src/compose.c
384         * src/messageview.c
385         * src/mimeview.c
386         * src/pgptext.c
387         * src/procmime.[ch]
388                 better support for multipart/digest (submitted
389                 by Fredrik <e98fo@efd.lth.se>)
390
391 2001-12-22 [alfons]     0.6.6claws8
392
393         * src/addressbook.c
394                 correct function signature
395         * src/socket.[ch]
396         * src/imap.[ch]
397         * src/prefs_account.[ch]
398                 allow IMAP over SSH tunnel (patch submitted by 
399                 Martin Pool <mbp@samba.org>)
400
401 2001-12-21 [alfons]     0.6.6claws7
402
403         * sync with sylpheed 0.6.6cvs4-9
404                 (may have forgotten something: LAST_STABLE is 0.6.6claws6)
405
406 2001-12-21 [christoph]  0.6.6claws6
407
408         * src/compose.c
409         * src/prefs_folder_item.[ch]
410                 implement saving of outgoing messages to current folder.
411                 fix segfault when no default outbox is available
412                 (closes bug #495683)
413
414 2001-12-21 [carsten]    0.6.6claws5
415         * src/folderview.c
416         * src/summaryview.c
417                 pressing CTRL while DND does now the expected thing and
418                 copies the mail (moving is still the default, as this
419                 seam more appropriate for handling mails by DND)
420
421 2001-12-18 [paul]       0.6.6claws4
422
423         * sync with sylpheed 0.6.6cvs3
424                 see ChangeLog entries 2001-12-18
425
426 2001-12-18 [hiro]       0.6.6claws3
427
428         * src/undo.c
429                 fix for multibyte characters (obtain the number of letters
430                 instead of bytes).
431
432 2001-12-17 [paul]       0.6.6claws2
433
434         * sync with sylpheed 0.6.6cvs1
435                 see ChangeLog entry 2001-12-16
436
437 2000-12-17 [alfons]     0.6.6claws1
438
439         * src/filtering.c
440                 clean up
441
442 2001-12-16 [paul]       0.6.6claws
443 2001-12-15
444
445         * Release version 0.6.6claws, cvs tag: rel_0_6_6
446
447         * src/mimeview.c
448                 last minute sync with main 0.6.6
449
450         * po/es.po
451                 updated by Ricardo Mones Lastra
452                 update for last minute sync
453         * po/fr.po
454         * po/nl.po
455                 update for last minute sync
456         * po/de.po
457                 updated by Jens Oberender
458         * po/pt_BR.po
459                 updated by Fabio Junior Beneditto
460
461         * src/prefs_common.[ch]
462         * src/undo.c
463                 number of undo levels is user configurable
464                 (squeeze it into the release in the dying
465                 moments) Submitted by Jens Oberender    
466
467 2001-12-15 [melvin]
468
469         * po/fr.po
470                 updated french translation
471
472 2001-12-15 [paul]       0.6.5claws92
473
474         * sync with sylpheed 0.6.5cvs28
475                 see ChangeLog entry 2001-12-14 (src/prefs_account.c)
476
477         * po/nl.po
478                 update to allow for sync
479
480 2001-12-15 [alfons]
481         
482         * po/nl.po
483                 update dutch translation
484
485 2001-12-14 [carsten]    0.6.5claws91
486         * src/summaryview.c
487                 fixed bug #473785; also after changing the column order
488                 the same message will be selected and displayed as before
489                 the reordering
490
491 2001-12-14 [carsten]    0.6.5claws90
492         * src/folderview.c
493                 probably found the bug reported by wwb opening or closing
494                 a folder tree just before dnd (found the solution in the
495                 balsa source -- thanks to them)
496
497 2001-12-14 [carsten]    0.6.5claws89
498         * src/gtkutils.c
499         * src/account.c
500                 moved gtk_clist_moveto to the right place, so that
501                 only the accounts dialog is effected on opening
502
503 2001-12-14 [carsten]    0.6.5claws88
504         * src/gtkutils.c
505                 gtkut_clist_set_focus_row does a gtk_clist_moveto
506                 now, so that the focused row will be seen in any case
507                 (reported by wwp on sf-claws-user)
508
509 2001-12-14 [darko]      0.6.5claws87
510
511         * src/compose.c
512                 remove unnecessary line
513
514 2001-12-14 [paul]       0.6.5claws86
515
516         * sync with sylpheed 0.6.5cvs27
517                 see ChangeLog entries 2001-12-14
518
519 2001-12-14 [carsten]    0.6.5claws85
520         * src/mainwindow.c
521                 following a suggestion of Melvin the rcoabm pops up
522                 right under the button now and the button is reliefed
523                 while the popup is open
524
525 2001-12-14 [darko]      0.6.5claws84
526
527         * src/compose.c
528                 fix crash when wrapping long lines if linewrap quotation
529                 is disabled and wrapper encounters a word spanning more
530                 than one line
531
532 2001-12-13 [paul]       0.6.5claws83
533
534         * src/compose.c
535                 prefer 'Reply-To' header over mailing list header when
536                 replying to a message. Finally prevent all those confirmation 
537                 messages being sent to the list itself.
538
539         * src/summaryview.c
540                 remove unused summary_set_menu_sensitive() entry
541
542 2001-12-13 [paul]       0.6.5claws82
543
544         * src/folderview.c
545         * src/pixmaps/inbox-hrm.xpm     ** NEW FILE **
546         * src/pixmaps/outbox-hrm.xpm    ** NEW FILE **
547         * src/pixmaps/trash-hrm.xpm     ** NEW FILE **
548                 improvements to 'Hide read messages': Inbox, Outbox,
549                 Trash, Queue, and Draft icons now reveal presence of hidden 
550                 messages
551
552 2001-12-12 [alfons]     0.6.5claws81
553
554         0.6.5claws80 was tagged as LAST_STABLE
555
556         * src/filtering.[ch]
557         * src/matcher.[ch]
558         * src/matcher_parser_lex.c
559                 fix the filtering; my last attempt to get it right, 
560                 if it does not work, it's Hoa's turn. ;-)
561
562                 for my honourable peers:
563                 
564                 the code now makes a clear distinction between
565                 rules as they are displayed (probably escaped),
566                 and as they are executed (probably unescaped). the
567                 parser does *NOT* do any unescaping, this is
568                 the task of the matcher.c (which breaks up a
569                 rule into condition) and the filtering.c (which
570                 breaks up the rule's action). to make this
571                 run happily we provide an unescaped copy of
572                 crucial strings to the MatcherProp and 
573                 FilteringAction structures. note that the only
574                 exception to this is any REGEXP string. those
575                 are directly passed to regcomp() and regexp()
576                 (who have much more powerful unescape functions).
577                 
578                 for everyone else:
579         
580                 you can escape tab (\t), carriage return (\r),
581                 linefeed (\n), form feed (\f), quote (\"), 
582                 single quote (\'), bell (\b) in all the entry
583                 lines in the scoring & filtering dialogs.
584                 as an added bonus this should not affect
585                 existing filtering rules.
586
587 2001-12-12 [carsten]    0.6.5claws80
588
589         * src/summaryview.c
590         * po/de.po
591                 "item(s) selected" is now sensitive to 1 or more
592                 than one selected (nice for language where simple
593                 adding of a "s" is not possible as German (Eintrag
594                 ->Eintr"age)
595                 
596                 the "forward as attachment" entry from the right
597                 click menu removed, "forward" acts following the
598                 prefs
599         
600         * src/textview.c
601                 reverted my former changes; so compiler warning again
602                 but there's more GTK_TEXT/GTK_STEXT mixing on other places
603                 nevertheless
604
605         * src/messageview.c
606                 "search in message" does now *not* only work in MVIEW_TEXT
607                 messages, but also in a MIMEVIEW_TEXT part of MVIEW_MIME
608                 message
609
610         * src/mainwindow.c
611                 removed "/File/_Close" as it was the same as "/File/E_xit"
612                 and we don't need it two times
613
614                 the separate folder view and message view now get a distinct
615                 WMCLASS, just in case someone is using sawfish ;-)
616
617                 as the menu entries "/View/Message view" and "/View/Folder tree"
618                 are only doing something when SEPARATE_MESSAGE or SEPARATE_FOLDER
619                 make them sensitive accordingly and as these two are "shown"
620                 after startup anytime check this menuitem at startup
621
622 2001-12-12 [paul]       0.6.5claws79
623
624         * src/folderview.c
625                 fix sensitivity of 'Search folder...', broken in
626                 0.6.5claws75
627
628         * src/mainwindow.c
629                 fix dodgy English
630
631 2001-12-11 [carsten]    0.6.5claws78
632         * src/filtering.c
633                 fixed two typos returning a wrong FALSE/TRUE
634         * src/mainwindow.[ch]
635                 extra menu for email/news button removed
636
637 2001-12-11 [alfons]     0.6.5claws77
638         
639         * src/matcher.c                 (1.3)
640         * src/matcher_parser_lex.l      (1.28)
641                 revert for another attempt
642                 mark 0.6.5claws77 as LAST_STABLE
643
644 2001-12-11 [christoph]  0.6.5claws76
645
646         * po/de.po
647                 fixed wrong translation for prev. unread msg
648
649 2001-12-11 [paul]       0.6.5claws75
650
651         * src/folder.[ch]
652         * src/folderview.c
653         * src/mainwindow.c
654         * src/summaryview.[ch]
655         * src/pixmaps/dir-open-hrm.xpm  ** NEW FILE **
656                 enable ability to hide read messages on per folder basis via 
657                 '/Summary/Hide read messages'; when selected, a folder will 
658                 have a red open folder icon, instead of a blue icon, if the 
659                 folder contains hidden messges
660                 submitted by Thomas Link <t.link.tmp200101.gmx.net> 
661
662         * src/mainwindow.c
663                 remove '/Message/Forward as attachment' from 
664                 main_window_set_menu_sensitive() to prevent debug warning
665
666         * src/folderview.c
667         * src/mainwindow.c
668                 Clean up some of the English
669
670         * tools/newscache_clean.pl
671                 allow for new 'hidereadmsgs' entry in folderlist.xml
672
673         * po/es.po
674                 updated translation, submitted by Ricardo Mones Lastra
675
676 2001-12-11 [paul]       0.6.5claws74
677
678         * sync with sylpheed 0.6.5cvs25
679                 see ChangeLog entry 2001-12-11
680
681 2001-12-10 [alfons]     0.6.5claws73
682
683         * src/matcher.c
684                 add more control characters
685         * src/matcher_parser_lex.l
686                 make escaping / unescaping work again
687
688 2001-12-10 [alfons]     0.6.5claws72
689
690         * src/imap.c
691                 clean up warnings "returning value for void function" 
692         * src/prefs_filtering.c
693                 make info button for execute action sensitive
694
695 2001-12-10 [paul]       0.6.5claws71
696
697         * src/compose.c
698         * src/imap.[ch]
699         * src/summaryview.c
700                 fix: imap server now gets informed of MARKED, UNMARKED
701                 and REPLY events. Now people can use different IMAP-Mail
702                 clients and have the exact same information about MARKED,
703                 UNMARKED and REPLY status with all of them. Especially
704                 useful for imap servers with a web-frontend.
705                 submitted by Tobias Sandhaas <medlor@web.de>
706
707 2001-12-09 [melvin]     0.6.5claws70
708         
709         * src/textview.[ch]
710                 fixed bug #490076 (hunted down by Alfons who implemented
711                 a workaround in 0.6.5claws65)
712
713 2001-12-09 [christoph]  0.6.5claws69
714
715         * src/summaryview.c
716                 set pointer to string in LOCKED column to NULL
717                 (might fix bug #490800)
718
719 2001-12-09 [carsten]    0.6.5claws68
720
721         * po/de.po
722                 resolved some cluttered menu shortcuts 
723                 ('creating new email' and 'creating news message'
724                 hade the same)
725         * src/compose.c
726                 wmclass now distinc from main window
727         * src/mainwindow.c
728           src/mainwindow.h
729                 email/news and forward button functionality similar
730                 to the reply buttons; removed the ugly dropdown arrows
731                 and use instead the right mouse button
732
733 2001-12-09 [paul]       0.6.5claws67
734
735         * src/imap.c
736         * src/utils.h
737                 allow spaces in imap folder names
738                 submitted by Willem van Engen <wvengen@stack.nl>
739
740 2001-12-09 [paul]       0.6.5claws66
741
742         * sync with sylpheed 0.6.5cvs24
743                 see ChangeLog entry 2001-12-09
744
745 2001-12-08 [alfons]     0.6.5claws65
746
747         * src/textview.c
748                 prevent secondary selection claim after "add to sender" dialog
749                 popped up. this is because there's a GDK_BUTTON_RELEASE pending.
750                 we trick GTK by simulating a click at (0, 0) in the textview.
751
752 2001-12-08 [hoa]        0.6.5claws64
753
754         * src/folder.c
755                 fixed a bug about the .processing folder name while filtering
756
757 2001-12-08 [alfons]     0.6.5claws63
758
759         * src/folderview.c 
760                 work around problem of not correctly updating folder stats
761                 when deleting messages. there's some folder scanning evil
762                 going so the folderview_update_msg_num() does not work
763                 correctly. need to investigate this.
764
765 2001-12-08 [paul]       0.6.5claws62
766
767         * sync with sylpheed 0.6.5cvs23
768                 see ChangeLog entry 2001-12-08
769
770 2001-12-07 [christoph]  0.6.5claws61
771
772         * src/compose.c
773                 fix another header translation problem
774
775 2001-12-07 [alfons]     0.6.5claws60
776
777         * src/mbox.c
778                 make filtering also work on local spool mbox
779
780 2001-12-07 [carsten]    0.6.5claws59
781         * src/addressbook.c
782                 addressbook window gets a wmclass distinct from the main
783                 sylpheed window
784         * src/compose.h
785         * src/mainwindow.[ch]
786                   forward menu item will use mode selected in prefs, forward 
787                 as attatchment in menu removed (will be substituted in the
788                 toolbar similar to reply buttons)
789                   create news message menu entry and news button is now 
790                 sensitive to the existance of a news account
791         * src/pixmaps/stock_mail_reply_quote.xpm           ** REMOVED **
792         * src/pixmaps/stock_mail_reply_to_all_quote.xpm    ** REMOVED **
793         * src/pixmaps/stock_mail_reply_to_sender_quote.xpm ** REMOVED **
794                 these are removed because the toolbar buttons don't show
795                 the quoting modus any longer
796
797 2001-12-07 [paul]
798
799         * tools/newscache_clean.pl      ** NEW FILE **
800                 perl script to do some tidying up in the newscache directory 
801                 
802         * tools/sylpheed-switcher       ** NEW FILE **
803                 perl script to enable easy switching between main and claws
804                 
805         * tools/README
806                 added descriptions of the two new perl scripts          
807
808
809 2001-12-07 [melvin]     0.6.5claws58
810
811         * src/messageview.c
812                 fixed a warning during compilation introduced in 0.6.5claws56
813
814 2001-12-07 [paul]       0.6.5claws57
815
816         * src/mainwindow.[ch]
817         * src/menu.[ch]
818                 further usability enhancements to replying with or without 
819                 quoting via the toolbar, use of Ctrl key is replaced by 
820                 drop down menu 
821                 Submitted by Carsten Schurig            
822
823 2001-12-07 [melvin]     0.6.5claws56
824
825         * src/messageview.c
826                 hack to fix bug that prevented to make/paste selections
827                 after switching between MVIEW_TEXT and MVIEW_MIME views
828                 without deselecting the selection first.
829
830 2001-12-06 [alfons]     0.6.5claws55
831
832         * src/filtering.[ch]
833         * src/inc.c
834                 revise filtering a little bit more, and make sure
835                 messages are delivered to the appropriate inbox
836                 (perhaps set per account)
837
838 2001-12-06 [paul]       0.6.5claws54
839
840         * sync with sylpheed 0.6.5cvs22
841                 see ChangeLog entry 2001-12-06
842
843 2001-12-05 [alfons]     0.6.5claws53
844
845         * src/inc.c
846         * src/folder.[ch]
847         * src/procmsg.c
848         * src/filtering.c
849                 more revisions of filtering system
850                 (last stable version is marked as LAST_STABLE)
851                 
852                 | NOTE 1): the filtering system now uses a local folder called
853                 | .processing. if filtering fails, check this directory
854                 | for missing messages.
855                 |
856                 | NOTE 2): help us find the filtering actions still missing
857
858 2001-12-05 [paul]       0.6.5claws52
859
860         * src/mainwindow.c
861                 fix bug where 'Empty Trash?' pop-up window appears even
862                 when Trash is empty, submitted by Jesse Skinner         
863
864 2001-12-05 [melvin]     0.6.5claws51
865
866         * src/compose.c
867                 fixed bug #486106 to select correct account when reediting 
868                 a queued message
869         
870 2001-12-04 [alfons]     0.6.5claws50
871
872         * src/mh.c
873                 declare markfile in appropriate functions when
874                 no fchmod() is found (thanks to Mark Heerdink <marc@koelkast.net>
875                 for spotting this)
876
877 2001-12-04 [paul]       0.6.5claws49
878
879         * sync with sylpheed 0.6.5cvs21
880                 see ChangeLog entry 2001-12-04
881
882 2001-12-03 [christoph]  0.6.5claws48
883
884         * po/de.po
885                 changed translation of undo
886         * src/account.c
887         * src/folder.c
888                 don't reinvent the wheel to traverse a GNode
889         * src/compose.[ch]
890                 seperate code to create the compose gui into functions
891                 add "Others" page with folder selection for saving copy
892                 of the message.
893                 the folder identifier is saved to queue header
894         * src/procmsg.c
895                 save message to folder in queue header
896
897 2001-12-03 [paul]       0.6.5claws47
898
899         * sync with sylpheed 0.6.5cvs20
900                 see ChangeLog entry 2001-12-03
901
902 2001-12-01 [paul]
903
904         * more sync with sylpheed 0.6.5cvs19
905                 see ChangeLog entry 2001-11-29
906
907 2001-11-30 [paul]       0.6.5claws46
908         
909         * src/compose.c
910                 remove conflicts introduced by Hoa's last commit
911          
912         * src/mainwindow.c
913                 make 'Message/Bounce' sensitive
914
915 2001-11-30 [hoa]        0.6.5claws45
916
917         * src/compose.c
918                 slightly change bounce function to add
919                 information about the user that bounced the mail
920                 in the From header line.
921
922         * src/folderview.c
923                 permit the use of processing in outbox folder.
924
925 2001-11-29 [paul]       0.6.5claws44
926
927         * src/mainwindow.[ch]
928         * src/prefs_common.c
929         * src/pixmaps/stock_mail_reply_quote.xpm            ** NEW FILE **
930         * src/pixmaps/stock_mail_reply_to_all_quote.xpm     ** NEW FILE **
931         * src/pixmaps/stock_mail_reply_to_author_quote.xpm  ** NEW FILE **
932                 usability enhancements to the quoting, implements
933                 use of Ctrl key to toggle quoting settings
934                 Submitted by Carsten Schurig <Carsten.Schurig@web.de>
935
936 2001-11-29 [paul]       0.6.5claws43
937         
938         * sync with sylpheed 0.6.5cvs19
939                 see ChangeLog entry 2001-11-28
940
941 2001-11-29 [melvin]     0.6.5claws42
942         * src/Makefile.am
943                 added enriched.[ch] to the list of files
944
945         * src/textview.c
946         * src/mimeview.c
947         * src/procmime.[ch]
948         * src/enriched.[ch]
949                 added support to view text/enriched
950                 added support to show headers in message view for text/enriched and text/html
951                         in non multipart messages
952
953 2001-11-28 [paul]       0.6.5claws41
954
955         * more sync with sylpheed 0.6.5cvs18
956                 see ChangeLog entry 2001-11-27 (src/prefs_common.c)
957
958 2001-11-27 [paul]       0.6.5claws40
959         
960         * po/pt_BR.po
961                 updated translation, submitted by Fabio Junior Beneditto
962                 
963         * sync with sylpheed 0.6.5cvs18
964                 see ChangeLog entries 2001-11-26 (src/textview.c) and
965                 2001-11-27
966
967
968 2001-11-26 [paul]
969
970         * po/es.po
971                 updated translation, submitted by Ricardo Mones Lastra
972
973 2001-11-26 [alfons]
974
975         * src/matcher.c
976                 add more translatable strings
977
978 2001-11-26 [christoph]  0.6.5claws39
979
980         * po/de.po      
981                 fixed one more umlaut
982         * src/compose.c
983                 fix translated header when it should not be translated
984
985 2001-11-26 [paul]       0.6.5claws38
986
987         * src/mainwindow.c
988                 remove '/Message/Add Sender to address book' from 
989                 main_window_set_menu_sensitive(), prevent debug warning
990                 add 'Message/Mark/Mark all read' to mainwin_entries[]
991
992 2001-11-26 [paul]       0.6.5claws37
993
994         * src/summaryview.c
995                 fix 'recurring unread state' bug 
996
997         * tools/README 
998         * tools/filter_conv.pl
999                 read name of top level mailbox from folderlist.xml
1000                 and presume nothing about its name              
1001
1002 2001-11-26 [darko]      0.6.5claws36
1003
1004         * src/gtkstext.[ch]
1005                 removed functions that are now in gtkutils.c
1006                 use gtkut_text_is_uri_string() from gtkutils.c
1007         * fix my comment on 2001-11-23 (missing gtkutils.[ch])
1008
1009 2001-11-26 [paul]       0.6.5claws35
1010
1011         * sync with sylpheed 0.6.5cvs16
1012                 see ChangeLog entries 2001-11-25 and 2001-11-26
1013
1014 2001-11-25 [alfons]     0.6.5claws34
1015
1016         EXPERIMENTAL!!! Please checkout the last stable version using: 
1017           
1018         % cvs update -r LAST_STABLE -dRAP
1019
1020         (Or help us testing this stuff.)
1021
1022         * src/filtering.c               (1.14)
1023         * src/filtering.h               (1.6)
1024         * src/inc.c                     (1.28)
1025         * src/matcher.c                 (1.20)
1026         * src/mbox.c                    (1.9)
1027         * src/procmsg.h                 (1.14)
1028         * src/summaryview.c             (1.59)
1029         * src/summaryview.h             (dunno)
1030                 revert/merge/sync to as it was before commit 
1031                 on Thu, 19 Jul 2001 10:15:51 -0700.
1032
1033 2001-11-25 [hoa]        0.6.5claws33
1034
1035         * src/main.c
1036                 processing mails at startup
1037
1038         * src/folderview.c
1039         * src/summaryview.[ch]
1040                 processing mails when entering folder
1041
1042         * src/prefs_filtering.c
1043                 fixed some UI bugs
1044
1045 2001-11-24 [alfons]     0.6.5claws32
1046
1047         * src/summaryview.[ch]
1048                 make summary sort headers work, and also make
1049                 sure the sort type is stored
1050
1051 2001-11-23 [alfons]     0.6.5claws31
1052
1053         * src/summaryview.[ch]
1054                 make lock work like mark
1055                 disallow deleting messages marked as locked
1056
1057 2001-11-23 [alfons]     0.6.5claws30
1058
1059         * src/gtkstext.c
1060         * src/compose.[ch]
1061         * src/Makefile.am
1062         * src/undo.[ch]
1063                 merge undo patch submitted by Jens
1064
1065 2001-11-23 [christoph]  0.6.5claws29
1066
1067         * src/.cvsignore
1068                 added ylwrap
1069         * src/compose.c
1070                 fixed gpg signing and encoding
1071         * src/folder.[ch]
1072         * src/main.c
1073                 added --status option to get new, unread and total
1074                 message count from a running sylpheed
1075         * src/prefs_common.c
1076                 temporary fix for reply_with_quote problem
1077                 (don't call functions for non existing widget)
1078         * src/procmsg.c
1079                 one more check for ignored threads but still not
1080                 always working correctly. probably a recursive
1081                 check for all parents is needed
1082
1083 2001-11-23 [darko]      0.6.5claws28
1084
1085         * src/compose.c
1086                 wrapping on send improvements
1087         * src/gtkutils.[ch]
1088                 fix for GtkSText after last sync with main branch
1089                 GTK_TEXT -> GTK_STEXT
1090
1091 2001-11-23 [paul]       0.6.5claws27
1092
1093         * sync with sylpheed 0.6.5cvs14
1094                 see ChangeLog entries 2001-11-22 and 2001-11-23
1095                 
1096         * po/de.po
1097                 fixed the scrambled umlauts 
1098                 submitted by Carsten Schurig <Carsten.Schurig@web.de>
1099
1100 2001-11-21 [paul]       0.6.5claws26
1101
1102         * sync with sylpheed 0.6.5cvs12
1103                 see 2nd ChangeLog entry dated 2001-11-20
1104
1105 2001-11-20 [paul]       0.6.5claws25
1106
1107         * sync with sylpheed 0.6.5cvs11
1108                 see ChangeLog entry 2001-11-19 (src/utils.c)
1109
1110 2001-11-20 [hiro]
1111
1112         * src/compose.c
1113                 GTK_TEXT -> GTK_STEXT
1114                 fix for wrong comment
1115
1116 2001-11-20 [hiro]       0.6.5claws24
1117
1118         * src/compose.[ch]
1119                 more merges from main branch
1120                 removed fatal warnings (uninitialized variables etc.)
1121                 some coding style fix
1122         * src/gtkutils.h
1123                 fixed typo.
1124         * src/addressbook.c
1125           src/addrindex.c
1126                 V-Card -> vCard
1127
1128 2001-11-19 [hoa]        0.6.5claws23
1129
1130         * src/filtering.c
1131         * src/prefs_scoring.c
1132         * src/matcher.[ch]
1133         * src/scoring.c
1134                 cleaning code
1135
1136         * src/matcher_parser_parse.y
1137         * src/prefs_filtering.c
1138                 bouncing
1139
1140 2001-11-19 [alfons]     0.6.5claws22
1141
1142         more of my old things into claws
1143
1144         * src/Makefile.am
1145         * src/prefs_common.c
1146         * src/procmsg.h
1147         * src/summaryview.[ch]
1148         * src/prefs_summary_column.c
1149         * src/pixmaps/locked.xpm
1150                 add indicators for locking of message in summary view
1151                 (does not work yet, only visual indicator)
1152
1153 2001-11-19 [paul]       0.6.5claws21
1154
1155         * sync with sylpheed 0.6.5cvs10
1156                 see ChangeLog entry 2001-11-19
1157
1158 2001-11-18 [alfons]     0.6.5claws20
1159         
1160         * src/filtering.c
1161                 remove an inadvertent free I forgot in previous clean up 
1162
1163 2001-11-18 [alfons]     0.6.5claws19
1164
1165         * src/filtering.[ch]
1166                 clean up & plug leaks
1167
1168 2001-11-18 [paul]       0.6.5claws18
1169
1170         * sync with sylpheed 0.6.5cvs9
1171                 see ChangeLog entries 2001-11-17 and 2001-11-18
1172
1173 2001-11-16 [paul]       0.6.5claws17
1174
1175         * sync with sylpheed 0.6.5cvs8
1176                 see ChangeLog entry 2001-11-16, src/grouplistdialog.c
1177
1178 2001-11-16 [paul]       0.6.5claws16
1179
1180         * sync with sylpheed 0.6.5cvs7
1181                 see ChangeLog entries 2001-11-15 and 2001-11-16
1182
1183 2001-11-15 [hoa]        0.6.5claws15
1184
1185         * src/compose.c
1186                 fix bounce, mails we received couln't be bounced to ourself.
1187
1188         * src/defs.h
1189         * src/filtering.[ch]
1190         * src/matcher.[ch]
1191         * src/matcher_parser.h
1192         * src/matcher_parser_lex.l
1193         * src/matcher_parser_parse.y
1194         * src/inc.c
1195         * src/main.c
1196         * src/mbox.c
1197         * src/prefs_filtering.[ch]
1198         * src/mainwindow.c
1199         * src/prefs_matcher.c
1200         * src/prefs_scoring.c
1201         * src/scoring.[ch]
1202         * src/summaryview.c
1203                 new matcher/filter/score configuration file parser
1204                 one unique configuration file => ~/.sylpheed/matcherrc
1205                 import in currently automatic, then save are made
1206                 in this new file.
1207                 one filter per folder and one global filter
1208                 (filter of a folder will be used as folder processing)
1209
1210         * src/folder.c
1211                 fix a bug in folder_item_get_identifier
1212                 
1213         * src/messageview.c
1214                 receive receipt return are fixed.
1215
1216 2001-11-14 [alfons]     0.6.5claws14
1217
1218         * src/session.h
1219                 add things from main branch to make claws compile
1220
1221 2001-11-14 [paul]       0.6.5claws13
1222
1223         * merge with SYNC-B4-REL and sync with sylpheed 0.6.5cvs5
1224                 see ChangeLog entries 2001-11-08 to 2001-11-14
1225
1226 2001-11-14 [hoa] 0.6.5claws12
1227
1228         * src/compose.[ch]
1229         * src/mainwindow.c
1230         * src/summaryview.c
1231                 add "bounce mail" option
1232
1233 2001-11-13 [christoph]  0.6.5claws11
1234
1235         * src/compose.c
1236                 Cleanup a mess i add before commiting
1237
1238 2001-11-13 [hoa]        0.6.5claws10
1239
1240         * src/compose.c
1241                 some fixes when mail are sent or
1242                 for crossposts
1243
1244 2001-11-13 [christoph]  0.6.5claws9
1245
1246         * po/de.po
1247                 Changed two string with the same translation
1248         * src/compose.c
1249         * src/procmsg.[ch]
1250         * src/send.[ch]
1251                 New mailsending process:
1252                   - Always queue message before sending
1253                     (message will be saved if sylpheed crashed or
1254                      freezes while sending)
1255                   - Allow queuing of newspostings
1256                   - No copy in outbox before sending
1257                     (closes bug #469501)
1258                   - No more redundant code for send and send_later
1259         * src/summaryview.c
1260                 Applied wwp <subscript@free.fr>'s patch that fixes
1261                 marks for multiple forwarded messages (+compose.c)
1262
1263 2001-11-12 [alfons]
1264
1265         * README.claws
1266                 remove things that are now in main branch
1267         
1268         * po/nl.po
1269                 update Dutch translation
1270
1271 2001-11-12 [mhadasht]   0.6.5.claws8
1272
1273         * src/prefs_common.c
1274                 re-enabled account autoselection feature for forward
1275                 and reedit lost during the branch point for SYNC-B4-REL
1276         * src/gtkspell.c
1277                 gtkpspell_get_dict(): more readable code (even if function is
1278                 not used yet)
1279         * ChangeLog.claws
1280                 added version number info to 2001-11-12 [hiro] comment.
1281
1282 2001-11-12 [hiro]       0.6.5.claws7
1283
1284         * src/compose.c
1285                 compose_forward(): fixed a bug that forward quote mark
1286                 wasn't used.
1287                 removed unnecessary code.
1288         * src/template_select.[ch]: removed.
1289
1290 2001-11-11 [alfons]
1291
1292         * src/compose.c
1293                 :%s/GTK_TEXT/GTK_STEXT/g
1294         
1295         * src/compose.[ch]
1296         * src/undo.[ch]
1297         * src/Makefile.am
1298                 revert the undo stuff (this is 0.6.6claws stuff)
1299
1300 2001-11-11 [hoa]        0.6.5.claws6
1301
1302         * src/compose.[ch]
1303                 Insert signature at the end of the text.
1304                 Added undo patch but currently disabled
1305
1306         * src/procmsg.c
1307                 Threading by subject improved.
1308
1309         * added src/undo.[ch]
1310                 Undo module for compose dialog box.
1311
1312 2001-11-11 [alfons]     0.6.5.claws5
1313
1314         * src/procmsg.c
1315                 prevent threading by subject on nodes that have already been
1316                 threaded by in-reply-to (as in "circular references in a tree
1317                 result in a dead branch")
1318
1319 2001-11-09 [hoa]        0.6.5.claws4
1320         
1321         * src/folderview.c
1322                 allows creation of mbox folder item from any files.
1323
1324 2001-11-09 [alfons]     0.6.5.claws3
1325         
1326         * src/utils.c
1327         * src/procmsg.c
1328                 do what I mean and correct threading by subject so it really
1329                 ignores attracting lines without "Re: "
1330
1331 2001-11-07 [alfons]     0.6.5.claws2
1332
1333         * src/procmsg.c
1334         * src/utils.[ch]
1335                 only attract by subject if a subject line starts with a "Re: "
1336         * src/syldap.c
1337                 remove warning
1338
1339 2001-11-07 [paul]       0.6.5claws1
1340
1341         * sync with sylpheed 0.6.5. release
1342                 see ChangeLog entry 2001-11-07
1343
1344 2001-11-07 [paul]       0.6.4claws31
1345
1346         * sync with sylpheed 0.6.4cvs18
1347                 see ChangeLog entries 2001-10-30 to 2001-11-07
1348                 prefs_templates.[ch] renamed prefs_template.[ch]
1349
1350 2001-11-06 [alfons]
1351         
1352         * src/utils.h
1353                 add semicolon Hoa forgot ;-)
1354                 
1355
1356 2001-11-06 [hoa]        0.6.4claws30
1357         
1358         * src/procmsg.c
1359         * src/summaryview.c
1360         * src/utils.c
1361         * src/utils.h
1362                 threading by subject - empty subject are ignored
1363
1364 2001-11-06 [christoph]  0.6.4claws29
1365
1366         * src/socket.c
1367                 use SSL_peek for sock_gets
1368         * src/utils.c
1369                 removed unneeded pointer in extracting quoted
1370                 names implementation
1371
1372 2001-11-06 [melvin]     0.6.4claws28
1373
1374         * src/gtkspell.c
1375                 fixed bug #476792 Selection overtyping with spell checker
1376                 fixed bug which could cause a buffer overflow
1377                 fixed a memory leak
1378
1379 2001-11-06 [hoa]        0.6.4claws27
1380         
1381         * src/procmsg.c
1382         * src/summaryview.c
1383                 threading by subject
1384
1385 2001-11-05 [alfons]     0.6.4claws26
1386         
1387         * README.claws
1388                 Claws -> Sylpheed (vice versa)
1389
1390         * src/compose.c
1391                 :%s/gtk_text/gtk_stext/g
1392                 :%s/GTK_TEXT/GTK_STEXT/g
1393                 (thanks to Jonathan Ware for spotting this)
1394
1395 2001-11-04 [christoph]  0.6.4claws25
1396
1397         * src/summaryview.c
1398                 replace Xalloca + strdup with Xstrdup_a
1399         * src/utils.c
1400                 better implementation of extracting quoted names
1401                 from addresses (remove backlashes and ignore
1402                 quotes after them)
1403
1404 2001-11-04 [alfons]     0.6.4claws24
1405
1406         * src/utils.[ch]
1407                 edit to comply more with coding style
1408
1409         * src/textview.c
1410                 fix bug reported by Kim Schulz. introduced by the patch integrated
1411                 in 0.6.4claws15. the code did not check the return value of
1412                 the html parser.
1413
1414         * AUTHORS
1415                 add Jonathan Ware and close "[ #475955 ] Enhanced Mailto Patch"
1416
1417 2001-11-04 [christoph]  0.6.4claws23
1418
1419         * src/main.c
1420         * src/prefs_common.[ch]
1421                 init some pointers that possibly caused a segfault
1422                 reported in the claws-users ML
1423
1424 2001-11-04 [hoa]        0.6.4claws22
1425
1426         * src/grouplistdialog.c
1427                 change the names of the nodes in the tree
1428
1429         * src/compose.c
1430                 enhanced mailto syntax as described in
1431                 http://developer.netscape.com/viewsource/husted_mailto/mailto.html
1432                 (thanks to Jonathan Ware <jonathan_ware@gmx.co.uk>)
1433
1434         * src/utils.c
1435                 encode and decode URI (useful when opening URL into
1436                 netscape).
1437
1438 2001-11-03 [hoa]        0.6.4claws21
1439
1440         * src/grouplistdialog.c
1441                 a new newsgroups list selection dialog box
1442                 with a CTree instead of a CList
1443
1444 2001-11-03 [hoa]        0.6.4claws20
1445
1446         * src/folderview.c
1447                 enable property and scoring options when right
1448                 click on "inbox"
1449
1450         * src/summaryview.c
1451                 fixed bug when nickname were displayed using
1452                 the address book.
1453
1454 2001-11-02 [darko]      0.6.4claws19
1455
1456         * src/compose.c
1457                 new wrap quotation and URL/long words wrapping implementation
1458         * src/compose.c src/gtkstext.[ch]
1459                 move gtkstext_strncmp() to gtkstext.c
1460
1461 2001-11-01 [christoph]  0.6.4claws18
1462
1463         * src/prefs_account.c
1464                 fixed mess in account settings dialog
1465         * src/prefs_folder_item.c
1466                 added label with folder path to dialog
1467
1468 2001-10-31 [match]      0.6.4claws17
1469
1470         * src/vcard.c
1471                 fix memory leak.
1472         * src/addrbook.c
1473                 fix generation of spurious address book file names.
1474                 remove redundant functions.
1475         * po/POTFILES.in
1476                 added missing file names.
1477
1478 2001-10-30 [paul]       0.6.4claws16
1479
1480         * sync with sylpheed 0.6.4cvs6
1481                 see ChangeLog entries 2001-10-26 to 2001-10-30
1482
1483         * tools/filter_conv.pl
1484                 read folderlist.xml to discover whether the top-level
1485                 folder is called 'Mailbox' or 'Mail' 
1486
1487 2001-10-29 [paul]       0.6.4claws15
1488
1489         * src/html.c, src/textview.c
1490                 activate links in html mail and fix clickable parts
1491                 Submitted by Matthieu Dazy <dazy@t-surf.com>
1492
1493 2001-10-29 [paul]
1494
1495         * po/de.po, po/es.po, po/pt_BR/po
1496                 updated translations, submitted by Jens Oberender,
1497                 Ricardo Mones Lastra, and Fabio Junior Beneditto
1498
1499 2001-10-29 [darko]      0.6.4claws14
1500
1501         * src/compose.c
1502                 fix wrapping for good
1503
1504 2001-10-29 [darko]
1505
1506         * src/compose.c
1507                 undo previous change as it broke the smart wrapping
1508
1509 2001-10-29 [darko]      0.6.4claws13
1510
1511         * src/compose.c
1512                 fix infinite loop when long URL is quoted
1513                 (closes bug #475122.
1514
1515 2001-10-28 [match]
1516
1517         * src/mutt.[ch] src/importmutt.[ch] src/mgutils.[ch] src/addressbook.c src/Makefile.am
1518                 import Mutt address book
1519         * src/ldif.[ch] src/importldif.h
1520                 modified import LDIF handle user attributes
1521
1522 2001-10-28 [christoph]  0.6.4claws12
1523
1524         * src/summaryview.c
1525                 fixed that filtering did not work if there
1526                 were no filter rules
1527                 (closes bug #472003 and better implementation
1528                  of patch #474644)
1529
1530 2001-10-27 [christoph]  0.6.4claws11
1531
1532         * src/compose.c
1533                 make the folder's default account to be used when
1534                 replying. (patch by wwp <subscript@free.fr>)
1535         * src/compose.c
1536                 code cleanup, nearly killed all of wwp's patch
1537                 for folder's default account in compose
1538         * src/folderview.c
1539                 error panel when a folder could not be created
1540                 (closes bug #471080 new folder name & already
1541                  existing file)
1542
1543 2001-10-26 [alfons]
1544
1545         * src/utils.h
1546                 change prototype of strstr2() that Christoph forgot about
1547
1548 2001-10-26 [christoph]  0.6.4claws10
1549
1550         * src/account.c
1551                 made search for accounts by email address not case
1552                 sensitive
1553         * src/folder.c
1554                 fixed memory leak in folder_item_get_identifier
1555         * src/gtkspell.c
1556         * src/utils.c
1557                 fixed wrong strstr2 (should work like strstr)
1558
1559 2001-10-26 [darko]      0.6.4claws9
1560
1561         * src/compose.c src/gtkstext.[ch]
1562         * src/gtkstext.c
1563                 move is_url_string() and gtkstext_str_strcmp() to gtkstext.c
1564
1565 2001-10-26 [paul]       0.6.4claws8
1566
1567         * src/html.c
1568                 ignore css and javascript tags in html mail
1569                 case-insensitive, with or without double-quoted
1570                 strings
1571
1572 2001-10-26 [paul]       0.6.4claws7
1573
1574         * sync with sylpheed 0.6.4cvs1
1575                 see ChangeLog entry 2001-10-26
1576
1577         * src/prefs_account.c, src/prefs_common.c,
1578           src/prefs_summary_column.c
1579                 minor improvements to the English
1580
1581 2001-10-25 [alfons]     0.6.4claws6
1582
1583         * src/gtkstext.c
1584         
1585                 make GtkSText follow style of GtkText (closes bug 
1586                 #469211 "text selection while writing message")
1587                 
1588                 do sync with GTK 1.2.10
1589
1590 2001-10-25 [paul]       0.6.4claws5
1591
1592         * src/html.c
1593                 ignore css tags in html mail
1594
1595 2001-10-25 [darko]      0.6.4claws4
1596
1597         * src/compose.c
1598                 don't declare is_url_string as static function since
1599                 we need it in gtkstext.c
1600         * src/gtkstext.c
1601                 remove unused variable
1602                 don't wrap long URLs while composing a message
1603
1604 2001-10-24 [christoph]  0.6.4claws3
1605
1606         * src/socket.c
1607                 fix ssl deadlock, when peer closes connection
1608
1609 2001-10-24 [paul]       0.6.4claws2
1610
1611         * src/prefs_common.c
1612                 gettextize the gpg ascii-armored warning message
1613
1614         * src/compose.c
1615                 insert a DOS/MAC file into the composed message
1616                 (improvements)
1617
1618         * Both submitted by Thierry Godefroy <godefroy@imaginet.fr>
1619
1620 2001-10-22 [paul]       0.6.4claws1
1621
1622         * sync with sylpheed 0.6.4 release
1623                 see ChangeLog entries 2001-10-21
1624
1625         * po/fr.po, po/pt_BR.po
1626                 updated by Melvin Hadasht and Fabio Junior Beneditto
1627
1628 2001-10-21 [paul]       0.6.3claws30
1629
1630         * src/compose.c
1631                 insert a DOS text file from the compose window
1632                 into the composed message text (removes CRs characters)
1633                 Submitted by Thierry Godefroy <godefroy@imaginet.fr>
1634
1635         * tools/filter_conv.pl, tools/README
1636                 automatically use ~/.sylpheed as working directory
1637                 print out confirmation message on completion
1638
1639         * correct Hoa's last ChangeLog.claws entry
1640
1641 2001-10-20 [hoa]        0.6.3claws29
1642
1643         * src/grouplistdialog.c
1644                 bugfix (another ?) to give the right
1645                 newsgroups list for each news server.
1646
1647         * src/news.c
1648         * src/news.h
1649                 improve the newsgroups list cache
1650
1651 2001-10-20 [paul]       0.6.3claws28
1652
1653         * sync with sylpheed 0.6.3cvs9
1654                 see ChangeLog entry 2001-10-19
1655
1656         * correct Alfons' last ChangeLog.claws entry
1657
1658 2001-10-19 [alfons]
1659
1660         * src/pgptext.[ch]
1661                 fix compilation problems (part of bug #472895)
1662
1663 2001-10-18 [hoa]        0.6.3claws27
1664
1665         * src/grouplistdialog.c
1666                 bugfix when we refresh was clicked (bug 472701)
1667
1668 2001-10-19 [christoph]  0.6.3claws26
1669
1670         * src/compose.c
1671                 last header entry should default to "To:" or
1672                 "Newsgroups:" and not copy the last entry line
1673                 in a new compose window
1674                 (closes bug #472686, #470792)
1675
1676 2001-10-19 [paul]       0.6.3claws25
1677
1678         * sync with Sylpheed 0.6.3cvs8
1679                 see ChangeLog entries 2001-10-18 and 2001-10-19
1680
1681 2001-10-18 [christoph]  0.6.3claws24
1682
1683         * src/procmsg.c
1684                 reimplement ignore thread
1685         
1686 2001-10-18 [hoa]        0.6.3claws23
1687
1688         * src/folderview.c
1689         * src/grouplistdialog.[ch]
1690                 enhanced news subscription interface (feature 469113)
1691
1692         * src/news.c
1693         * src/news.h
1694                 enchanced newsgroup listing,
1695                 now, we can get groups informations
1696                 (NNTPGroupInfo)
1697
1698 2001-10-18 [paul]       0.6.3claws22
1699
1700         * src/summaryview.c
1701                 remove comment (sync with main branch)
1702         * src/mainwindow.c
1703                 fix 'Re-edit' bug in 'Message' menu
1704
1705 2001-10-17 [christoph]  0.6.3claws21
1706
1707         * src/compose.c
1708                 ignore empty or whitespace only header lines
1709
1710 2001-10-17 [paul]       0.6.3claws20
1711
1712         * sync with sylpheed 0.6.3cvs7
1713                 see ChangeLog entries 2001-10-14, 2001-10-16, and
1714                 2001-10-17
1715
1716 2001-10-17 [darko]
1717
1718         * src/compose.c
1719                 wrap long lines without spaces
1720                 don't wrap URLs
1721
1722 2001-10-16 [paul]
1723
1724         * po/es.po, po/nl.po, po/pt_BR.po
1725                 updated by Ricardo Mones Lastra, Alfons,
1726                 and Fabio Junior Beneditto
1727
1728         * sylpheed-0.6.3claws released
1729
1730 2001-10-15 [melvin] 0.6.3claws18
1731
1732         * README.claws
1733                 added summary and detailed installation instructions
1734                 for spell checker
1735         * po/fr.po
1736                 Updated, corrected and completed french translation
1737
1738 2001-10-15 [hoa] 0.6.3claws17
1739         * src/grouplistdialog.c
1740                 we can choose the newsgroups to display with wildcards
1741
1742 2001-10-15 [christoph]  0.6.3claws16
1743
1744         * src/account.c
1745         * src/compose.c
1746         * src/prefs_folder_item.[ch]
1747                 applied wwp <subscript@free.fr>'s folder
1748                 default account patch
1749         * po/de.po
1750                 Fixed wrong translation
1751
1752 2001-10-13 [alfons, christoph, melvin]  
1753                         0.6.3claws15
1754
1755         solution #2 to solve MT-safety problems defers all GUI related calls
1756         to the main thread using a gtk_idle_add() callback. discussed on
1757         ircnet #sylpheed, with christoph spotting some issues with the
1758         original code, and melvin allowing us to lobotomize his sylpheed.
1759
1760         * src/syldap.[ch], src/main.c
1761                 fix race problem in ldap search thread by deferring GUI 
1762                 stuff to main thread using gtk_idle_add()
1763
1764 2001-10-13 [paul]       0.6.3claws14
1765
1766         * src/prefs_account.[ch], src/send.c, src/smtp.[ch]
1767                 add Sergey's smtpcred.patch
1768                 adds separate username/password setting for SMTP Auth
1769                 needed by some servers
1770                 (closes feature request #471659)
1771
1772 2001-10-13 [paul]       0.6.3claws13
1773
1774         * src/pgptext.[ch] **NEW FILES**
1775         * src/Makefile.am, src/messageview.c, src/mimeview.c
1776                 decrypt ascii-armored gpg text embedded in
1777                 the message body.
1778                 Submitted by Jens Jahnke <jan0sch@gmx.net>
1779
1780 2001-10-13 [christoph]  0.6.3claws12
1781
1782         * README.claws
1783                 some more details on default to and
1784                 feature requests
1785         * src/main.c
1786                 init glib threading when ldap is used
1787         * src/syldap.c
1788                 threading fixes
1789         * po/de.po
1790                 fixed a typo
1791
1792 2001-10-12 [paul]       0.6.3claws11
1793
1794         * src/prefs_common.[ch], src/rfc2015.c
1795                 enable ascii-armored gpg text to be embedded in the
1796                 message body, selectable through the 'Privacy'
1797                 preferences. Supports encrypting only.
1798                 Submitted by Ravemax <ravemax@dextrose.com>
1799
1800 2001-10-12 [paul]       0.6.3claws10
1801
1802         * sync with sylpheed 0.6.3cvs6
1803                 see ChangeLog entries 2001-10-11 and 2001-11-12
1804
1805         * src/folderview.c
1806                 incorporated mbox folders, scoring, and folder
1807                 properties into the sync
1808
1809 2001-10-12 [darko]      0.6.3claws9
1810
1811         * README.claws
1812                 describe quotation wrapping
1813         * src/compose.c
1814                 don't treat tab as space to calculate line length properly
1815
1816 2001-10-11 [alfons]
1817
1818         * README.claws
1819                 correct description of how to make new filtering system work,
1820                 add some other things
1821                 
1822         * src/syldap.c
1823                 remove sched_yield() (not necessary / unportable)
1824
1825 2001-10-11 [paul]       0.6.3claws8
1826
1827         * sync with sylpheed 0.6.3cvs3
1828                 see ChangeLog entry 2001-10-10
1829
1830 2001-10-10 [christoph]  0.6.3claws7
1831
1832         * .cvsignore
1833                 ignore 2 files created by newer autotools
1834         * src/prefs_folder_item.c
1835                 using table for widget alignment
1836                 fixed memory leak and broken octal display
1837         * src/filesel.c
1838                 fixed segfault caused by lost filename
1839                 workaround (closes bug #469551)
1840
1841 2001-10-10 [paul]       0.6.3claws6
1842
1843         * sync with sylpheed 0.6.3cvs2
1844                 see ChangeLog entries 2001-10-09 and 2001-10-10
1845
1846 2001-10-10 [darko]      0.6.3.claws5
1847
1848         * src/gtkstext.c
1849                 proper calculation of right margin if smart wrapping is enabled
1850         * src/compose.c
1851                 automatically wrap long lines if wrap quotation is enabled
1852
1853 2001-10-09 [alfons]     0.6.3.claws4
1854
1855         * src/summaryview.c
1856                 select correct row when deleting last row in the summary view (and
1857                 close bug "[ #469104 ] select second last in list when deleting")
1858
1859 2001-10-09 [paul]       0.6.3claws3
1860
1861         * sync with sylpheed 0.6.3cvs1
1862                 updated some autotool scripts
1863
1864 2001-10-09 [darko]      0.6.3claws2
1865
1866         * src/gtkstext.[ch]
1867                 new name and mark with Sylpheed comment
1868         * src/compose.c
1869                 smart quotation wrapping a-la VIM
1870
1871 2001-10-08 [paul]       0.6.3claws1
1872
1873         * sync with sylpheed 0.6.3 release
1874                 see ChangeLog entry 2001-10-08
1875
1876 2001-10-08 [paul]       0.6.2claws24
1877
1878         * src/summaryview.c
1879                 more sync with sylpheed 0.6.2cvs12
1880                 Fixed the bug that didn't select the last row correctly
1881
1882
1883 2001-10-07 [paul]       0.6.2claws23
1884
1885         * sync with sylpheed 0.6.2cvs12
1886                 see ChangeLog entry 2001-10-07
1887
1888 2001-10-06 [match]
1889         * src/jpilot.[ch]
1890                 enable jpilot to read unsynch'ed addresses.
1891
1892         * src/editldap_basedn.c
1893                 fix segfault when opening dialog.
1894
1895 2001-10-06 [alfons]     0.6.2.claws22
1896
1897         * src/summaryview.c
1898                 fix bug with summary view selecting last *inserted*
1899                 node instead of last *visible* node. remember we
1900                 work with a tree
1901
1902 2001-10-06 [paul]       0.6.2claws21
1903
1904         * po/pt_BR.po
1905                 updated translation, contains some fixes and new
1906                 translations, submitted by Gustavo Noronha Silva
1907                 <kov@debian.org>
1908
1909         * src/prefs_common.c
1910                 change 'each' to 'every' - fix dubious English
1911
1912         * sync with sylpheed 0.6.2cvs11
1913
1914 2001-10-05 [alfons]     0.6.2claws20
1915
1916         * src/mainwindow.[ch], src/folderview.c
1917                 make composite tool button switch between "Compose News"
1918                 and "Compose Mail" depending on selected folder
1919                 (nifty idea by Kim Schulz <kim@schulz.dk>)
1920
1921 2001-10-05 [paul]       0.6.2claws19
1922
1923         * src/mainwindow.c, src/summaryview.c
1924                 fix 'Message/Reply to all', broken in last commit
1925
1926         * src/compose.c
1927                 fix X_BEENTHERE seg fault, thanks to Alfons
1928
1929 2001-10-04 [paul]       0.6.2claws18
1930
1931         * src/compose.[ch], src/mainwindow.c
1932                 make "Message/Reply" reply to mailing lists; matches
1933                 'X-Mailing-list:' and 'X-BeenThere:' ML headers.
1934                 based on portions of the patch submitted by
1935                 Junichi Uekawa <dancer@netfort.gr.jp>
1936
1937 2001-10-04 [darko]      0.6.2claws17
1938
1939         * src/compose.c
1940                 better smart wrapping
1941         * src/gtkstext.[hc]
1942                 a function to make text buffer contiguous
1943
1944 2001-10-03 [paul]       0.6.2claws16
1945
1946         * sync with sylpheed 0.6.2cvs10
1947
1948 2001-10-02 [alfons]
1949
1950         * configure.in
1951         * po/zh_CN.GB2312.po, po/zh_TW.Big5.po
1952                 close bug "[ #466566 ] compile error on mdk 8.0" by removing
1953                 references to chinese translations (hope someone picks up
1954                 this)
1955
1956 2001-10-02 [christoph]  0.6.2claws15
1957
1958         * src/compose.c
1959                 fixed non translated header bug
1960         * ChangeLog.claws
1961                 fixed wrong date in alfons last entry ;)
1962
1963 2001-10-02 [alfons]     0.6.2claws14
1964
1965         * src/compose.c, src/prefs_common.[ch]
1966                 add block cursor option
1967
1968 2001-10-02 [paul]       0.6.2claws13
1969
1970         * sync with sylpheed 0.6.2cvs9
1971
1972 2001-09-30 [paul]       0.6.2claws12
1973
1974         * po/de.po, po/es.po, po/fr.po, po/nl.po, po/pt_BR.po
1975                 updated translations
1976
1977         * po/POTFILES.in
1978                 add 'src/importldif.c'
1979
1980         * AUTHORS, tools/README, tools/eud2gc.py, tools/Makefile.am
1981                 added eudora-to-vCard conversion tool
1982                 submitted by Jeroen Versteeg <j.m.versteeg@student.utwente.nl>
1983
1984         * sync with sylpheed 0.6.2cvs8
1985
1986 2001-09-30 [paul]
1987
1988         * sylpheed-0.6.2claws released
1989
1990 2001-09-27 [melvin]     0.6.2claws11
1991
1992         * src/gtkspell.c
1993                 fixed crash when using default path (introduced 
1994                 in 0.6.2claws10)
1995                 fixed tiny bug for initial suggestion mode
1996
1997 2001-09-27 [melvin]     0.6.2claws10
1998         
1999         * src/gtkspell.c
2000                 fixed bug where gtkpspell didn't set the path correctly
2001
2002         * README.claws
2003                 added a paragraph about spell checking
2004                 
2005
2006
2007 2001-09-27 [paul]       0.6.2claws9
2008
2009         * src/addrbook.c, src/addrcache.c, src/addritem.c, src/jpilot.c
2010                 replace '// comments' with '/* comments */' to prevent
2011                 some compiler warnings 
2012
2013         * sync with sylpheed 0.6.2cvs6
2014
2015 2001-09-26 [alfons]     0.6.2claws8
2016
2017         * src/messageview.c
2018                 introduce return receipt request notification again,
2019                 which was lost because of other semantics in 
2020                 procheader_parse() (???)
2021
2022 2001-09-26 [christoph]  0.6.2claws7
2023
2024         * src/compose.c
2025                 replace comments for old code with #if 0
2026                 readded auto cc, bcc and reply-to
2027         * src/prefs_matcher.c
2028         * src/prefs_scoring.c
2029                 removed some definition (was moved to
2030                 prefs.h)
2031
2032 2001-09-26 [paul]       0.6.2claws6
2033
2034         * src/mainwindow.c
2035                 make 'Follow-up and reply to' sensitive
2036
2037         * more sync with sylpheed 0.6.2cvs5
2038
2039 2001-09-25 [melvin]
2040
2041         * 0.6.2claws5
2042
2043         * src/gtkspell.c
2044                 fixed bug for "US-ASCII" introduced by the encoding code
2045
2046 2001-09-25 [paul]
2047
2048         * 0.6.2claws4
2049
2050         * src/prefs_common.[ch], src/summaryview.c
2051                 'next unread msg' 'go to next folder?' dialog can be
2052                 given default behaviour, either always show dialog,
2053                 or assume 'yes', or assume 'no'
2054                 Submitted by wwp <subscript@free.fr>
2055
2056 2001-09-25 [melvin]
2057                 
2058         * src/compose.c src/gtkspell.[ch]
2059                 added support for different encodings
2060
2061 2001-09-25 [paul]
2062
2063         * more sync with sylpheed 0.6.2cvs5
2064
2065 2001-09-24 [alfons]
2066         
2067         * src/prefs_folder_item.c
2068                 add check for item->prefs->default_to string is NULL and
2069                 add another check when freeing this string
2070
2071 2001-09-24 [paul]
2072
2073         * configure.in
2074                 change to version 0.6.2claws3
2075
2076         * sync with sylpheed 0.6.2cvs5 
2077
2078 2001-09-24 [match]
2079         * src/ldif.[ch], src/importldif.[ch], addressbook.c
2080                 import LDIF files.
2081         * src/addrcache.[ch], addrindex.[ch]
2082                 small update for future
2083         * src/addrbook.c
2084                 fix test XML file.
2085
2086 2001-09-24 [melvin]
2087         * src/gtkspell.[ch]
2088                 added 'Learn from mistakes' option
2089                 better handling of quotes in checked words
2090                 sorted dict list
2091         * po/fr.po
2092                 small update for spell checking stuff
2093
2094 2001-09-23 [alfons]
2095         
2096         * src/gtkspell.c
2097                 edit a little bit so it complies more with main coding style
2098
2099 2001-09-23 [alfons]
2100
2101         * src/folder.[ch], prefs_folder_item.c, compose.c
2102                 migrate "request return receipt" folder property
2103                 to folderlist.xml
2104
2105 2001-09-22 [alfons]
2106
2107         * README.claws **NEW**
2108                 (add things of interest for users of main branch 
2109                 and claws here)
2110
2111         * src/folder.[ch], src/mainwindow.c, src/summaryview.c
2112                 re-implement threading per folder option, but store 
2113                 the setting in folderlist.xml (where it belongs)
2114
2115 2001-09-21 [melvin]
2116
2117         * src/gtkspell.[ch]
2118                 fixed bug when compose window is under another window
2119         * src/prefs_common.[ch] src/compose.c
2120                 changed 'dictionary_path' to 'dictionary' to be consistent
2121                 dropped PSPELL_PATH macro (hard coded default to /usr/local/share/pspell)
2122         * ac/pspell.m4 src/Makefile.am 
2123                 dropped PSPELL_PATH macro
2124         * po/fr.po
2125                 updated translations
2126
2127 2001-09-21 [christoph]
2128
2129         * src/compose.c
2130                 added border around header fields
2131                 keep header type when new field is added
2132
2133 2001-09-20 [christoph]
2134
2135         * src/utils.[ch]
2136                 more portable debug_print with source filename
2137                 and linenumber
2138         * src/procmsg.c
2139                 more newlines after debug messages
2140
2141 2001-09-20 [paul]
2142
2143         * configure.in
2144                 change to version 0.6.2claws2
2145
2146         * sync with sylpheed 0.6.2cvs3
2147
2148 2001-09-19 [melvin]
2149
2150         * src/gtkspell.c
2151                 fixed the post-right-click focus pb
2152                 fixed crash when 'Spell check all' after dict change 
2153                         and when cursor is at the end of the text
2154                 shift-right-click pops up config menu even on misspelled words.
2155         * po/POTFILES.in
2156                 added gtkspell.c
2157
2158 2001-09-19 [melvin]
2159
2160         * src/about.c
2161                 added pspell to compiled-in features list
2162
2163 2001-09-18 [melvin]
2164
2165         * switched to pspell and dropped ispell
2166         * ac/pspell.m4
2167                 new file. autoconf macro for pspell
2168         * ac/Makefile.am 
2169         * configure.in acconfig.h
2170                 added pspell support
2171         * src/Makefile.am
2172         * src/main.c src/compose.[ch] src/gtkspell.[ch]
2173         * src/prefs_common.[ch] 
2174                 added pspell support
2175
2176 2001-09-18 [christoph]
2177
2178         * src/addr_compl.c
2179         * src/template.[ch]
2180                 replace LOG_MESSAGE with debug_print
2181         * src/compose.[ch]
2182                 gui improvements
2183         * src/menu.c
2184                 added newline after debug message
2185         * src/utils.h
2186                 using __VA_ARGS__ for debug_print macro
2187         * tools/.cvsignore
2188                 ignore Makefile and Makefile.in
2189
2190 2001-09-18 [paul]
2191
2192         * configure.in
2193                 change to version 0.6.2claws1
2194         * sync with sylpheed 0.6.2cvs1
2195
2196         * src/matcher.c 
2197         * src/prefs_matcher.c
2198                 add 'score equal to' option, submitted by
2199                 Paul Evans <nerd@freeuk.com>
2200
2201 2001-09-15 [christoph]
2202
2203         * src/mainwindow.c
2204                 comment out menu entry not existing in claws
2205         * src/menu.c
2206                 add debug output for non existing menu entries
2207         * src/summaryview.c
2208                 fix next/prev unread message for ignored threads
2209         * src/utils.[ch]
2210                 add sourcefile and line number to debug output
2211                 otherwise it is sometimes hard to find the
2212                 source code part if debug messages are translated
2213
2214 2001-09-14 [darko]
2215         
2216         * src/folderview.c
2217                 refresh target folder style after colour is changed
2218
2219 2001-09-13 [paul]
2220
2221         * configure.in
2222                 change to version 0.6.1claws3
2223
2224         * sync with sylpheed 0.6.1cvs6
2225
2226 2001-09-13 [darko]
2227         
2228         * src/folderview.c
2229                 fix target folder colourization to use user selected colour
2230
2231 2001-09-12 [darko]
2232         
2233         * src/summaryview.c
2234                 fix crash when message that is marked for copy/move is unmarked
2235
2236 2001-09-09 [paul]
2237
2238         * configure.in
2239                 change to version 0.6.1claws2
2240
2241         * sync with sylpheed 0.6.1cvs3
2242
2243 2001-09-09 [alfons]
2244         
2245         * src/folderview.c
2246                 fix bug with default font used for trash folder text
2247
2248 2001-09-06 [paul]
2249
2250         * po/de.po, po/es.po, po/nl.po, po/pt_BR.po
2251                 updated translations
2252
2253         * configure.in
2254                 change to version 0.6.1claws1
2255
2256         * sync with sylpheed 0.6.1cvs2
2257
2258 2001-09-03 [paul]
2259
2260         * po/POTFILES.in
2261                 add Match's new addressbook
2262
2263         * po/de.po
2264                 updated translation submitted by Jens Oberender
2265
2266 2001-09-02 [paul]
2267
2268         * configure.in
2269                 change to 0.6.1claws
2270         * sync with sylpheed 0.6.1 release
2271
2272 2001-09-02 [paul]
2273
2274         * configure.in
2275                 change to 0.6.0claws2
2276
2277         * sync with sylpheed 0.6.0cvs4
2278
2279         * po/pt_BR.po
2280                 updated translation submitted by Fabio Junior Beneditto
2281
2282 2001-09-01 [match]
2283         * pixmaps/
2284                 interface.xpm
2285                 book.xpm
2286                 address.xpm
2287         * src/
2288                 Makefile.am
2289                 a ton of new files
2290
2291 2001-08-31 [paul]
2292
2293         * configure.in
2294                 change to version 0.6.0claws1
2295
2296         * sync with sylpheed 0.6.0cvs1
2297
2298         * po/es.po
2299                 updated translation submitted by Ricardo Mones Lastra
2300
2301         * po/POTFILES.in
2302                 add 'src/prefs_templates.c'
2303
2304         * src/compose.c, src/summaryview.c
2305                 fix segfault on 'Re_edit'               
2306
2307 2001-08-30 [alfons]
2308
2309         * configure.in, Makefile.am
2310         * tools/Makefile.am
2311                 add tools directory to source distribution
2312
2313 2001-08-30 [paul]
2314
2315         * configure.in
2316                 change to version 0.6.0claws
2317
2318         * sync with sylpheed 0.6.0 release
2319
2320 2001-08-30 [christoph]
2321
2322         * configure.in
2323                 removed autoconf version check
2324
2325 2001-08-30 [paul]
2326
2327         * src/account.c, src/compose.c, src/prefs_common.[ch]
2328         * src/procheader.[ch] src/utils.[ch]
2329                 Enhanced automatic account selection on replies
2330                 Submitted by Melvin Hadasht <melvin.hadasht@free.fr>
2331
2332         * configure.in
2333                 add LDAP and JPilot to the configuration results output.
2334
2335 2001-08-29 [christoph]
2336
2337         * src/summeryview.c
2338                 no bold font for ignored threads
2339
2340 2001-08-29 [paul]
2341
2342         * configure.in
2343                 change to version 0.5.3claws6
2344
2345         * sync with sylpheed 0.5.3cvs10
2346                 src/stringtable.[ch]: New Files
2347
2348         * src/compose.c, src/gtkutils.c, src/gtkutils.h, src/mainwindow.c
2349         * src/pixmaps/sylpheed.xpm
2350                 add mini-icons to windows (by Alfons)
2351
2352 2001-08-27 [paul]
2353
2354         * src/mainwindow.c
2355                 new functions: next_labeled_cb(), prev_labeled_cb()
2356
2357         * src/summaryview.c
2358                 new functions: summary_find_next_labeled_msg(), summary_find_prev_labeled_msg(),
2359                 summary_select_next_labeled(), summary_select_prev_labeled()
2360
2361         * src/pixmaps/dir-close.xpm, src/pixmaps/dir-open.xpm, src/pixmaps/trash.xpm
2362                 give claws blue folders and a blue trash can
2363
2364 2001-08-27 [paul]
2365
2366         * configure.in
2367                 change to version 0.5.3claws5
2368
2369         * sync with sylpheed 0.5.3cvs9
2370                 src/labelcolors.[ch] renamed to src/colorlabel.[ch] 
2371
2372 2001-08-24 [christoph]
2373
2374         * src/filesel.c
2375                 keep filename when browsing directories
2376                 (not working for user entered filename, but
2377                  for default name and selected filename from
2378                  file list)
2379         * src/mainwindow.c
2380                 fixed wrong spelling "Folllow-up"
2381         * src/mbox_folder.c
2382         * src/procmsg.c
2383         * src/summaryview.c
2384                 fixed new/unread message count with ignored
2385                 threads (2 commits, first didn't notice no
2386                 longer needed decreasing)
2387         * src/inc.c
2388                 readded scrolling of progress dialog
2389                 (lost in sync)
2390
2391 2001-08-24 [paul]
2392
2393         * configure.in
2394                 change to 0.5.3claws4
2395
2396         * sync with sylpheed 0.5.3cvs7
2397
2398 2001-08-24 [christoph]
2399
2400         * src/compose.c
2401                 set request return receipt when replying
2402                 if it is set is the folder prefs of the
2403                 message
2404         * src/inc.c
2405                 disable final error popup if popups are
2406                 disabled in config (again)
2407
2408 2001-08-23 [paul]
2409
2410         * configure.in
2411                 Change version number to 0.5.3claws3
2412
2413         * sync with sylpheed 0.5.3cvs5
2414
2415         * src/mimeview.c
2416                 double quote '%s' in 'gedit %s' to fix bug when
2417                 opening attachment with spaces in the name
2418
2419 2001-08-22 [alte]
2420         * src/Makefile.am, src/compose.[ch], src/defs.h, src/mainwindow.c,
2421           src/prefs_templates.[ch], src/template.[ch], src/template_select.[ch]
2422                 initial message templates support
2423
2424
2425 2001-08-22 [paul]
2426
2427         * configure.in
2428                 change version number to 0.5.3claws2
2429
2430         * sync with sylpheed 0.5.3cvs4
2431
2432         * src/procmsg.h src/summaryview.c
2433                 re-implement (un)ignore thread
2434
2435 2001-08-21 [paul]
2436
2437         * src/summaryview.c
2438                 remove unnecessary code
2439         * src/compose.c
2440                 enable 'dynamic' signatures (submitted by
2441                 Eric Limpens <eric@hscg-internet.nl>)
2442
2443 2001-08-21 [paul]
2444
2445         clean up after sync with sylpheed 0.5.3 release
2446
2447         * src/folderview.c
2448                 fix re-introduced font mess, see Christoph's
2449                 entry 2001-06-24
2450
2451         * src/summaryview.c
2452                 remove prev_msgnum
2453                 use sylpheed's small font instead of
2454                 gtk default font for summary view
2455
2456
2457 2001-08-17 [paul]
2458
2459         * configure.in
2460                 add pl to ALL_LINGUAS - sync with main branch
2461
2462         * po/de.po, po/es.po, po/nl.po, po/pt_BR.po
2463                 Updated. Translations by Jens Oberender, Ricardo Mones
2464                 Lastra, Alfons, and Fabio Junior Beneditto respectively.
2465
2466         * po/pl.po  ** NEW FILE **
2467                 sync with the main branch
2468
2469         * src/folderview.c
2470                 fix target folder colorizing and refresh problem
2471
2472
2473 2001-08-17 [christoph]
2474
2475         * src/mainwindow.c
2476                 claws uses 4 colors for target folder coloring.
2477                 arrays were not long enough and destroyed the
2478                 stack causing a segfault.
2479                 target folder colorizing does not work anymore
2480                 for me
2481
2482 2001-08-16 [paul]
2483
2484         * configure.in
2485                 change to version 0.5.3claws1
2486
2487         * src/folder.h, src/folderview.[ch], src/gtkutils.[ch],
2488           src/inc.[ch], src/mainwindow.c, src/pop.c, src/prefs_account.c,
2489           src/prefs_common.[ch], src/summaryview.[ch], src/textview.c, src/utils.c
2490
2491                 sync with sylpheed 0.5.3 release, but keep claws method of
2492                 configuring/saving fonts
2493
2494         * src/addressbook.[ch]
2495                 rename addressbook_add_contact_by_menu() to addressbook_add_submenu()
2496                 in line with a similar change in Hiroyuki's branch
2497
2498         * src/mainwindow.[ch]
2499                 disable main_window_set_thread_option()
2500         * src/prefs_folder_item.c
2501                 comment out &tmps_prefs.enable_thread,
2502         * src/mbox_folder.c, src/procmsg.[ch]
2503                 comment out MSG_IS_IGNORE_THREAD
2504         * src/summaryview.c
2505                 comment out summary_ignore_thread() and summary_unignore_thread()
2506                 comment out MSG_IS_IGNORE_THREAD
2507
2508                 use Hiroyuki's threading instead.
2509
2510
2511
2512 2001-08-15 [paul]
2513
2514         * src/account.c
2515                 use Hiroyuki's 0.5.3 column scheme but also
2516                 include the enable/disable button.
2517         * src/pixmaps/mark.xpm
2518                 add Hiroyuki's amended pixmap
2519
2520 2001-08-13 [christoph]
2521
2522         * src/account.c
2523                 receive at get all column showed wrong state for APOP
2524                 button should only work for POP3 and APOP accounts
2525         * src/prefs_account.c
2526                 added missing preprocessor statement for SSL
2527
2528 2001-08-12 [paul]
2529
2530         * src/account.[ch]
2531                 add 'receive at get all' column and enable/disable
2532                 button.
2533
2534 2001-08-06 [christoph]
2535
2536         * src/account.c
2537                 show usage of SSL in protocol column
2538
2539         * src/imap.c
2540         * src/inc.c
2541                 renamed ssl options
2542
2543         * src/prefs_account.[ch]
2544                 moved ssl options to a new page
2545
2546         * src/send.c
2547         * src/smtp.c
2548         * src/ssl.[ch]
2549                 renamed ssl options
2550                 added support for SMTP STARTTLS command
2551
2552 2001-08-05 [christoph]
2553
2554         * configure.in
2555                 debian autoconf needs version check to find
2556                 correct autoconf version. if the file is
2557                 named configure.in 2.13 is used, which does
2558                 not work with this configure.in script.
2559                 other solution would be to rename the script
2560                 to configure.ac as suggested in the autoconf
2561                 manual.
2562
2563         * src/inc.c
2564                 disable final error popup if popups are
2565                 diabled in config
2566
2567         * src/socket.c
2568                 bugfix in ssl_gets
2569                 fixes IMAP over SSL problem
2570
2571 2001-08-03 [paul]
2572
2573         * configure.in
2574                 change to 0.5.2claws1
2575
2576         * sync with sylpheed 0.5.2cvs1
2577
2578 2001-08-02 [alfons]
2579
2580         * configure.in
2581                 quick fix for ispell detection...
2582
2583 2001-08-01 [paul]
2584
2585         * configure.in
2586                 change to 0.5.1claws4
2587
2588         * sync with sylpheed 0.5.1cvs7
2589
2590 2001-07-31 [alfons]
2591
2592         * src/prefs_common.c, src/prefs_common.h, 
2593           src/gtkspell.c, src/gtkspell.h
2594                 add global spelling checker settings (compose tab) +
2595                 selection of dictionary 
2596           
2597         * configure.in  
2598                 guess valid ispell location
2599
2600 2001-07-31 [paul]
2601
2602         * po/POTFILES.in
2603                 removal of 'src/quote_fmt_parse.c'
2604         * po/de.po
2605                 Updated de.po
2606                 (submitted by Jens Oberender <didge@suse.de>)
2607
2608 2001-07-31 [darko]
2609
2610         * src/folder.[ch]
2611         * src/folderview.[ch]
2612         * src/mainwindow.c
2613         * src/mh.c
2614         * src/prefs_common.[ch]
2615         * src/summaryview.c
2616                 target folder colourization
2617
2618 2001-07-30 [paul]
2619
2620         more sync with Sylpheed 0.5.1cvs6 
2621
2622 2001-07-30 [darko]
2623
2624         * src/mh.c
2625         * src/prefs_folder_item.[hc]
2626         * src/summaryview.c
2627                 shared folders support with a GUI
2628
2629 2001-07-29 [paul]
2630
2631         0.5.1claws3
2632
2633         * sync with Sylpheed 0.5.1cvs6
2634
2635 2001-07-29 [paul]
2636
2637         * po/pt_BR.po
2638                 updated
2639                 (submitted by Fabio Junior Beneditto)
2640
2641 2001-07-28 [paul]
2642
2643         * src/procmime.c
2644         * AUTHORS
2645                 patch to correct bad image mime headers
2646                 (submitted by Don Quijote <dq@searchlores.org>)
2647
2648 2001-07-28 [paul]
2649
2650         * tools/gif2xface.pl   **NEW FILE**
2651         * tools/README
2652                 script to convert file.gif to file.xface for
2653                 use in a custom header.
2654                 (submitted by Ricardo Mones Lastra <mones@aic.uniovi.es>)
2655
2656 2001-07-27 [alfons]
2657         
2658         * configure.in
2659                 change macros for detecting JPilot and LDAP
2660
2661 2001-07-27 [christoph]
2662
2663         * src/filtering.c
2664                 code cleanup (MIN / MAX warning, needed casting)
2665
2666 2001-07-27 [alfons]
2667
2668         * procheader.c
2669                 disallow setting flags when detecting certain headers
2670                 (X-Status, Status, Seen, X-Seen). 
2671         
2672         * sync with Hiroyuki's Sylpheed 0.5.1cvs5
2673
2674 2001-07-27 [christoph]
2675
2676         * src/prefs_filter.c
2677         * src/prefs_filtering.c
2678         * src/prefs_matcher.c
2679         * src/prefs_scoring.c
2680                 scroll list when moving rows up or down
2681
2682         * src/imap.c
2683         * src/imap.h
2684         * src/prefs_account.c
2685         * src/prefs_account.h
2686         * src/send.c
2687                 SMTP over SSL (untested, feedback requested)
2688                 IMAP over SSL
2689
2690         * src/ssl.c
2691                 code cleanup
2692
2693 2001-07-26 [alfons]
2694         
2695         * configure.in, acconfig.h
2696                 define CLAWS (need this for main / claws detection)
2697
2698 2001-07-25 [alfons]
2699
2700         * configure.in
2701                 Sylpheed 0.5.1claws2
2702                 
2703         * sync with Sylpheed 0.5.1cvs4
2704
2705 2001-07-25 [christoph]
2706
2707         * src/scoring.c
2708                 fixed segfault
2709                 item->prefs == NULL (don't know why)
2710
2711 2001-07-25 [alfons]
2712
2713         * configure.in
2714                 Sylpheed 0.5.1claws1
2715
2716         * sync with Sylpheed 0.5.1cvs1-3
2717
2718 2001-07-24 [christoph]
2719
2720         * src/folderview.c
2721         * src/prefs_folder_item.[ch]
2722                 added folderitem preferences dialog with
2723                 default To: and auto request return receipt
2724
2725         * src/compose.[ch]
2726         * src/menu.[ch]
2727                 changes to handle new folderitem preferences
2728
2729         * src/mainwindow.c
2730         * src/summaryview.c
2731                 call compose new mail with current folderitem
2732
2733 2001-07-24 [alfons]
2734
2735         Release Sylpheed 0.5.1claws
2736
2737         * configure.in
2738                 change to release version 0.5.1claws
2739
2740 2001-07-24 [christoph]
2741
2742         * src/summaryview.c
2743                 fixed segfault that happend when the selected
2744                 message was removed while retrieving new messages.
2745
2746         * po/es.po
2747                 updated translation
2748                 (submitted by Ricardo Mones Lastra <mones@trasgu.aic.uniovi.es>)
2749
2750 2001-07-22 [alfons]
2751
2752         add English User Manual for Sylpheed by Paul Kater (paul@nlpagan.net).
2753         this is a work in progress, for more information: http://nlpagan.net/sylman 
2754         
2755         * configure.in, src/mainwindow.c, manual/Makefile.am
2756                 add support for English manual
2757
2758         * AUTHORS
2759                 add authors of user manuals
2760
2761         * manual/en/sylpheed*.html
2762                 add English documentation
2763
2764 2001-07-22 [christoph]
2765
2766         * po/POTFILES.in
2767                 added src/ssl.c
2768         * src/ssl.c
2769                 changed a wrong debug message
2770
2771 2001-07-22 [alfons]
2772
2773         * po/nl.po
2774                 update Dutch translation
2775
2776         * src/prefs_filtering.c, 
2777           src/prefs_matcher.c
2778                 add more translatable strings           
2779
2780 2001-07-21 [alfons]
2781
2782         0.5.0claws7
2783
2784         * configure.in
2785                 change version
2786
2787         * src/inc.c, src/summaryview.[ch]
2788                 prevent update of mark file when filtering has done, by
2789                 using a variable; this affects two functions:
2790                         inc.c::inc_finished()
2791                         summaryview.c::summary_show()
2792
2793 2001-07-20 [alfons]
2794
2795         * src/filtering.[ch], src/prefs_filtering.c, 
2796           src/matcher.[ch]
2797                 add filtering action for label coloring 
2798
2799         * po/POTFILES.in
2800                 add labelcolors.c
2801
2802         * added src/labelcolors.c
2803         * added src/labelcolors.h
2804         * src/Makefile.am, src/summaryview.c
2805                 rearrange label coloring code
2806
2807         * src/procmsg.h
2808                 add more parentheses so label colouring works correctly
2809
2810         * src/filtering.c
2811                 don't really delete message, but move it to Trash
2812
2813         * src/prefs_matcher.c
2814                 add quote options to info dialog
2815
2816 2001-07-20 [christoph]
2817
2818         * src/Makefile.am
2819         * src/inc.c
2820         * src/main.[ch]
2821         * src/socket.h
2822         * src/ssl.[ch] (new)
2823                 moved ssl stuff to a seperate file
2824
2825 2001-07-20 [darko]
2826
2827         * src/summaryview.c
2828                 fix show sender using address book with no e-mail
2829                 address in From: field
2830
2831 2001-07-19 [alfons]
2832
2833         * src/matcher.[ch], src/filtering.c, src/prefs_filtering.c
2834                 fix messy handling of escaping... now at least the
2835                 execute command is useful. escape char is '\', we
2836                 accept \n and \r too. 
2837
2838                 Real life example:
2839                 
2840                 subject match "GIMME YOUR FILTERS" execute "mail -s \"%f don\'t hurt me, please!\" %f < ~/.sylpheed/filteringrc
2841                 subject match "GIMME YOUR FILTERS" execute "mail -s \"mommy, mommy, %f is being mean!\" admin < %F
2842
2843 2001-07-18 [alfons]
2844
2845         0.5.0claws6
2846
2847         * src/summaryview.c
2848                 clean up
2849
2850         * src/matcher.c, src/filtering.[ch], src/inc.c, src/mbox.c,
2851           src/procmsg.[ch]
2852                 revise filtering; currently move, copy, marking have
2853                 been tested. if you like bleeding edge stuff, you
2854                 should definitely go for this version :)
2855
2856         * mark old working stuff as VERSION_0_5_0_CLAWS5        
2857
2858 2001-07-17 [christoph]
2859
2860         * src/utils.c
2861                 timestamp log
2862
2863 2001-07-17 [alfons]
2864
2865         0.5.0claws5
2866
2867         * sync with Hiroyuki's 0.5.0cvs5; this version allows us to put more 
2868           bits in the mark file, without affecting either branch. Lots of
2869           files changed, also in claws branch.
2870
2871           UNTESTED: use of mbox folders
2872
2873         * src/summaryview.c
2874                 added mark all read; however this was a quick hack used for
2875                 cleaning up mess after initial merge with Hiroyuki
2876
2877         * configure.in
2878                 change claws version number back to 0.5.0claws5 to clear up 
2879                 confusion & pretension (recent release was technically 
2880                 0.5.0claws4, so we neatly align with Hiroyuki :-)
2881
2882 2001-07-16 [alfons]
2883
2884         sync with Hiroyuki's 0.5.0cvs4
2885
2886 2001-07-16 [alfons]
2887
2888         0.5.1claws3
2889
2890         * src/filtering.[ch]
2891                 remove invalid updating of mark files for 
2892                 filter actions MATCHING_ACTION_MOVE and 
2893                 MATCHING_ACTION_DELETE; this should fix the
2894                 folder update bug
2895                 
2896         * src/procmsg.c
2897                 revert Christoph's stab at fixing the folder 
2898                 update bug
2899
2900         * po/POTFILES.in
2901                 add missing files with translatable strings
2902
2903         * src/summaryview.c
2904                 remove debug print
2905
2906 2001-07-15 [alfons]
2907
2908         * src/addr_compl.[ch], src/prefs_filtering.c
2909                 make "filtering pref dialog's destination entry" an
2910                 "address completable entry", if filter destination is 
2911                 an email address
2912
2913         0.5.1claws2
2914         
2915         sync with Hiroyuki's 0.5.0cvs2-3
2916
2917 2001-07-15 [christoph]
2918
2919         * src/procmsg.c
2920                 fixed folder stats update after incorporation
2921
2922 2001-07-15 [alfons]
2923
2924         * src/summaryview.c
2925                 * finish label colouring stuff (for now)
2926                 * fix incorrect colour bug (off by one) 
2927
2928 2001-07-14 [alfons]
2929
2930         * src/mainwindow.c
2931                 change text labels for news and mail message so there's
2932                 plenty of toolbar estate left
2933
2934         * configure.in
2935                 0.5.1claws1
2936
2937         * src/folderview.c
2938           src/folder.[ch]
2939                 sync with Hiroyuki's 0.5.0cvs1
2940
2941         * src/summaryview.c
2942                 more rewrite label colouring
2943
2944 2001-07-14 [alfons]
2945
2946         * src/summaryview.[ch]
2947                 * start rewrite label colouring 
2948                 * fix proper location "Add Sender To Addressbook" menu item
2949
2950 2001-07-13
2951
2952         Release 0.5.0claws "Paul Will Be Back Soon, Promise!"
2953         (actually this is 0.5.0claws4)
2954
2955 2001-07-13 [alfons]
2956
2957         * po/pt_BR.po
2958                 * fix duplicate message
2959                 * add updated Portugese / Brazilian translation
2960                   submitted by Fabio Junior Beneditto
2961
2962 2001-07-12 [alfons]
2963
2964         * AUTHORS
2965                 add Jens
2966
2967         * po/nl.po
2968                 add updated Dutch translation
2969
2970         * po/de.po
2971                 add updated German translation submitted by Jens
2972
2973 2001-07-11 [alfons]
2974
2975         Prerelease before 0.5.0claws. Please test.
2976         This version is temporarily tagged as VERSION_0_5_0_TEST
2977
2978         * src/matcher.[ch], src/summaryview.c, src/scoring.[ch]
2979           src/prefs_scoring.c, src/prefs_matcher.c, 
2980           src/prefs_filtering.c, src/mbox.c, 
2981           src/main.c, src/inc.c, src/filtering.[ch]
2982                 revert new Hoa's new matcher (does not work yet)
2983
2984         * src/Makefile.am
2985                 clean up
2986
2987 2001-07-10
2988
2989         Release 0.5.0claws "Paul Will Be Back Soon, Promise!"
2990
2991
2992 2001-07-10 [alfons]
2993
2994         * Makefile.am
2995                 add ChangeLog.claws to EXTRA_DIST
2996         * src/Makefile.am
2997                 add matcher_parser_parse.h to EXTRA_DIST
2998
2999 2001-07-10 [christoph]
3000
3001         * src/inc.c
3002                 add destination folder to table of
3003                 folders that need to be updated after
3004                 incorporation
3005
3006 2001-07-10 [alfons]
3007
3008         * folder.[ch]
3009           folderview.c
3010                 make collapse state of folders and folder items persistent, i.e.
3011                 if you collapse a folder tree, the next time sylpheed-claws starts 
3012                 up the folder tree remains collapsed.  
3013                 
3014 2001-07-10 [christoph]
3015
3016         * acconfig.h
3017         * configure.in
3018                 added --enable-ssl
3019         * src/md5.[ch]
3020                 renamed MD5_CTX to MD5_CTX_syl
3021                 conflicts with a struct in openssl
3022         * src/inc.c
3023         * src/main.[ch]
3024         * src/prefs_account.[ch]
3025         * src/socket.[ch]
3026                 SSL support for POP
3027         * src/mainwindow.c
3028                 fixed compose with current account
3029                 broken by new compose button stuff
3030
3031 2001-07-09 [hoa]
3032
3033         * AUTHORS
3034                 changed my email address
3035
3036         * src/matcher_parser_parse.y
3037                 clean the parser to remove conflicts
3038
3039 2001-07-09 [alfons]
3040
3041         * AUTHORS
3042                 add Match Grun
3043
3044         * configure.in
3045                 fix incorrect description of --enable-ldap parameter
3046
3047         * src/prefs_common.[ch]
3048           src/compose.c
3049                 add experimental option "smart wrapping" which makes the
3050                 compose editor auto wrap.
3051                 
3052                 | TODO: the problem with the buggy cursor handling is caused |
3053                 | by the GtkText. when deleting / backspacing text its       |
3054                 | wrapping algorithm does not take in account the previous   |
3055                 | line. should find a way to hack this in.                   |
3056                 | or should perhaps combine this with the word wrapping      |
3057                 | patch i wrote in january.                                  |
3058
3059         * src/about.c
3060                 show build parameters for LDAP and JPilot
3061
3062         * src/summaryview.c
3063                 revert Christoph's bugfix for selecting next unread message, 
3064                 because folder stats aren't updated correctly
3065
3066 2001-07-08 [hoa]
3067
3068         * src/filtering.c
3069         * src/mainwindow.c
3070         * src/matcher.c
3071         * src/matcher_parser_lex.l
3072         * src/matcher_parser_parse.y
3073         * src/prefs_filtering.c
3074         * src/prefs_scoring.c
3075         * src/scoring.c
3076                 bugfix of the config file parser
3077
3078 2001-07-08 [alfons]
3079
3080         * src/Makefile.am
3081                 added generated matcher sources to BUILT_SOURCES
3082
3083 2001-07-08 [hoa]
3084
3085         * src/Makefile.am
3086         * src/.cvsignore
3087                 added new config file parser
3088
3089         * src/scoring.[ch]
3090         * src/filtering.[ch]
3091         * src/matcher.[ch]
3092         * src/prefs_filtering.c
3093         * src/prefs_matcher.c
3094         * src/prefs_scoring.c
3095         * added src/matcher_parser.h
3096         * added src/matcher_parser_lex.h
3097         * added src/matcher_parser_lex.l
3098         * added src/matcher_parser_parse.y
3099                 lex & yacc config file parser
3100
3101         * src/mbox.c
3102         * src/inc.c
3103         * src/main.c
3104                 changes prefs_filtering into global_filtering           
3105
3106         * src/summaryview.c
3107                 build threads with subjects only if "Re: " is at the
3108                 beginning of the subject
3109
3110 2001-07-07 [paul]
3111
3112         0.5.0claws
3113
3114         sync with sylpheed 0.5.0
3115                 change of version number only
3116
3117 2001-07-06 [paul]
3118
3119         0.5.0claws5
3120
3121         sync with sylpheed 0.5.0pre5
3122
3123 2001-07-05 [paul]
3124
3125         sync with sylpheed 0.5.0pre4 release
3126                 /po and /manual/ja not sync'ed
3127
3128 2001-07-04 [paul]
3129
3130         more sync with sylpheed 0.5.0pre4
3131
3132 2001-07-03 [christoph]
3133
3134         * src/addressbook.c
3135                 fixed address book broken by address book
3136                 for VCard, JPilot, LDAP
3137
3138 2001-07-03 [alfons]
3139
3140         * src/matcher.c
3141         * src/textview.c
3142                 stopped memory leaks
3143
3144 2001-07-03 [paul]
3145
3146         more sync with sylpheed 0.5.0pre4
3147
3148 2001-07-02 [match]
3149
3150         * included address book patch for VCard, JPilot, LDAP
3151         * pref_common.c - fixed Font options on Display tab (cosmetic)
3152         * alertpanel.c - fixed truncated message
3153
3154 2001-07-02 [christoph]
3155
3156         * src/mbox_folder.c
3157         * src/procmsg.[ch]
3158         * src/summaryview.c
3159                 mark threads for ignoring
3160
3161 2001-07-02 [paul]
3162
3163         0.5.0claws4
3164
3165         * sync with sylpheed 0.5.0pre4
3166                 updated gettext to 0.10.38.
3167
3168 2001-07-01 [paul]
3169
3170         * src/ mainwindow.c
3171         * src/procmsg.h
3172         * src/summaryview.[ch]
3173                 new right-click option: Label.
3174                 substitute for 'Mark-->Mark/Unmark', colours the line.
3175                 (submitted by Satoshi Nagayasu <snaga@snaga.org>)
3176
3177 2001-07-01 [christoph]
3178
3179         * src/folderview.c
3180                 fixed font for trash
3181         * src/summaryview.c
3182                 move ctree to unread message
3183
3184 2001-07-01 [paul]
3185
3186         * sync with sylpheed 0.5.0pre3 release
3187
3188 2001-06-30 [alfons]
3189
3190         * src/filesel.[ch]
3191         * src/compose.c
3192                 allow inserting / attaching multiple files in
3193                 the composer window
3194
3195 2001-06-30 [paul]
3196
3197         * src/codeconv.c
3198                 small change to Alfons' previous stuff so that it
3199                 actually makes
3200
3201 2001-06-30 [alfons]
3202
3203         * lots of files changed; first attempt to merge the changes
3204           and bugfixes submitted by Andre Eibel (ae@baltic-online.de).
3205
3206 2001-06-30 [paul]
3207
3208         * po/pt_BR.po
3209                 updated and completed, translations by Fabio
3210                 Junior Beneditto <fjbeneditto@yahoo.com.br>
3211
3212 2001-06-29 [alfons]
3213
3214         * src/compose.c
3215         * src/mimeproc.[ch]
3216                 allow selecting an attached files' mime type from a 
3217                 list of types.
3218
3219 2001-06-29 [paul]
3220
3221         * more sync with sylpheed 0.5.0pre3
3222
3223 2001-06-29 [paul]
3224
3225         * po/pt_BR.po
3226                 merge with sylpheed.pot and pt_BR.po provided by
3227                 Fabio Junior Beneditto.
3228
3229 2001-06-29 [darko]
3230
3231         * src/procmime.c
3232                 make MIME types case insensitive
3233
3234 2001-06-28 [alfons]
3235
3236         * po/nl.po
3237                 merge with sylpheed.pot and old nl.po; translations added.
3238
3239 2001-06-28 [paul]
3240
3241         * more sync with sylpheed 0.5.0pre3
3242
3243 2001-06-27 [alfons]
3244
3245         * src/summaryview.c
3246                 don't crash when removing parent node of messages
3247                 attracted by subject. this was caused by not deleting
3248                 the parent node from the subject line hash table.
3249
3250 2001-06-27 [alfons]
3251
3252         * src/summaryview.c
3253         * src/compose.[ch]
3254         * src/mainwindow.c
3255                 if there are multiple messages selected, allow forwarding
3256                 them as attachments.
3257
3258 2001-06-27 [paul]
3259
3260         * more sync with sylpheed 0.5.0pre3
3261
3262 2001-06-26 [paul]
3263
3264         0.5.0claws3
3265
3266         * sync with sylpheed 0.5.0pre3
3267
3268 2001-06-25 [paul]
3269
3270         * src/mainwindow.c
3271                 fixed 'compose news article' bug
3272                 from icon-and-text toolbar
3273
3274 2001-06-25 [paul]
3275
3276         * sync with sylpheed 0.5.0pre2 release
3277
3278 2001-06-24 [christoph]
3279
3280         * src/prefs_common.c
3281                 bug fix in font selection
3282         * src/folderview.c
3283                 use sylpheed's normal font instead of
3284                 gtk default font for folders without
3285                 new messages
3286
3287 2001-06-24 [alfons]
3288
3289         * src/mainwindow.[ch]
3290                 added composite compose mail / news button (an idea by Leandro
3291                 Pereira <leandro@linuxmag.com.br>)
3292
3293 2001-06-24 [paul]
3294
3295         Added instructions for ldif-to-xml.py
3296
3297         * tools/README
3298
3299 2001-06-23 [alfons]
3300
3301         Some minor things.
3302
3303         * src/pixmaps/stock_news_compose.xpm
3304                 added pixmap by Leandro
3305         * src/prefs_common.c
3306                 tested built-in spelling checker of GCC 3.0 :)
3307         * po/nl.po
3308                 merged dutch translation of sylpheed-main with
3309                 sylpheed.pot
3310
3311 2001-06-23 [paul]
3312
3313         Added tools directory and files.
3314
3315         * tools/filter_conv.pl
3316                 converts old filter system to new filtering system
3317         * tools/ldif-to-xml.py
3318                 converts netscape addressbook to sylpheed addressbook
3319         * tools/README
3320                 descriptions/instructions for above two files
3321
3322 2001-06-23 [christoph]
3323
3324         * src/inc.c
3325         * src/manage_window.[ch]
3326         * src/prefs_common.[ch]
3327                 mail retrieval dialog can be enabled, disabled
3328                 or hidden if non of sylpheed's windows is active
3329
3330 2001-06-22 [paul]
3331
3332         0.5.0claws2
3333
3334         * sync with sylpheed 0.5.0pre2
3335
3336 2001-06-21 [christoph]
3337
3338         * src/summaryview.c
3339                 show recipient on 'from' for all accounts
3340                 
3341         * src/inc.c
3342         * src/prefs_common.[ch]
3343                 disable error popup on mail receive errors
3344
3345 2001-06-21 [alfons]
3346
3347         * src/compose.c
3348                 made the ruler correctly appear and disappear.
3349
3350         * src/Makefile.am
3351                 removed Hoa's work-in-progress-stuff (interesting!) so 
3352                 claws compiles ok.
3353
3354 2001-06-20 [christoph]
3355
3356         * src/inc.c
3357         * src/progressdialog.c
3358                 added scrolled window for list in progressdialog
3359
3360 2001-06-20 [paul]
3361
3362         sync with sylpheed 0.5.0pre1 release
3363
3364 2001-06-20 [christoph]
3365
3366         * src/summeryview.c
3367                 make building threads by subject work when
3368                 thread view is enabled
3369                 
3370         * src/compose.c
3371         * src/prefs_common.[ch]
3372                 automatically select account for mail replys
3373
3374 2001-06-19 [sergey]
3375
3376         * src/compose.c (compose_create): keep Bcc and Reply-To visible if
3377         they are filled in from the account settings.
3378
3379 2001-06-19 [paul]
3380
3381         * more sync with sylpheed 0.5.0pre1
3382
3383 2001-06-18 [alfons]
3384
3385         * src/Makefile.am,
3386           src/procmime.c
3387                 added --sysconfdir to CPPFLAGS for pointing to the correct
3388                 location of mime.types. 
3389
3390                 NOTE: make sure you use --sysconfdir when running ./autogen.sh
3391                 or ./configure!
3392
3393 2001-06-18 [hoa]
3394
3395         * src/summaryview.c
3396                 fixed some bug when building threads
3397
3398 2001-06-18 [pau]l
3399
3400         * src/prefs_account.c
3401                 UI stuff: More changes to the English
3402
3403 2001-06-18 [paul]
3404
3405         * src/pixmaps/stock_news_compose.xpm: new file
3406         * src/Makefile.am
3407         * src/mainwindow.c
3408         * src/summaryview.c
3409                 Added new icon for Hoa's 'compose a news
3410                 message', plus minor improvements to the
3411                 English
3412
3413         * po/ja.po
3414         * ChangeLog
3415         * ChangeLog.jp
3416                 more sync with sylpheed 0.5.0pre1
3417
3418 2001-06-18 [hoa]
3419
3420         * src/compose.[ch]
3421         * src/mainwindow.c
3422                 Follow-up and reply to
3423
3424         * src/summaryview.[ch]
3425                 Build threads also with subjects
3426
3427 2001-06-17 [hoa]
3428
3429         * src/compose.c
3430                 forwarding use the current account.
3431
3432         * src/mainwindow.c
3433                 the "compose message" button has been replaced with
3434                 "new mail" and "new news" buttons
3435
3436         * src/prefs_common.[ch]
3437                 added a configuration option to use the forward button
3438                 as "forward as attachment"
3439                 changed reply and forward format description
3440
3441         * src/quote_fmt_lex.l
3442         * src/quote_fmt_parse.y
3443                 added message with no signature in format for reply
3444                 and forward.
3445
3446 2001-06-17 [paul]
3447
3448         Minor UI stuff
3449
3450         * src/mainwindow.c
3451         * src/summaryview.c
3452                 Improvements to the English
3453
3454         * src/prefs_common.c
3455                 Improvements to the English and some
3456                 clarity/continuity improvements in the
3457                 description of Quote symbols.
3458
3459 2001-06-17 [paul]
3460
3461         0.5.0claws1
3462
3463         * sync with sylpheed 0.5.0pre1
3464
3465 2001-06-17 [hoa]
3466
3467         * src/compose.c
3468                 Better interface for compose, displayed fields
3469                 are updated whenever we change account.
3470                 Newsgroups field is automatically filled.
3471
3472         * src/mainwindow.c
3473                 Newsgroups field is automatically filled.
3474
3475         * src/prefs_account.c
3476                 Some interface stuff when fields appear and
3477                 disappear.
3478
3479 2001-06-16 [paul]
3480
3481         0.4.99claws
3482
3483         * sync with sylpheed 0.4.99
3484
3485 2001-06-16 [sergey]
3486
3487         * src/base64.c, src/base64.h (Base64Decoder, base64_decoder_new,
3488         base64_decoder_free, base64_decoder_decode): new object and
3489         functions for decoding base64 streams.
3490         * src/procmime.c (procmime_decode_content): modified to use the
3491         new base64 decoder.
3492
3493 2001-06-15 [paul]
3494
3495         0.4.99claws10
3496
3497         * sync with sylpheed 0.4.99cvs11
3498
3499 2001-06-13 [paul]
3500
3501         0.4.99claws9
3502
3503         * sync with sylpheed 0.4.99cvs9
3504
3505 2001-06-13 [hoa]
3506
3507         * src/compose.c
3508         * src/prefs_account.c
3509
3510                 SMTP server can be defined in the news account
3511                 mime type of attachment are kept.
3512
3513         * src/summaryview.c
3514
3515                 now choose the highest important score between default
3516                 and important score of folder.
3517
3518 2001-06-09 [alfons]
3519         
3520         * src/prefs_common.c: 
3521
3522                 (prefs_quote_description_create): corrected description of 
3523                 quote format characters
3524
3525 2001-06-09 [paul]
3526
3527         0.4.99claws8
3528
3529         * sync with sylpheed 0.4.99cvs8
3530
3531 2001-06-08 [sergey]
3532
3533         * src/Makefile.am: fix for "make dist": added quote_fmt_parse.h
3534         and pixmaps/stock_mail_reply_to_author.xpm to EXTRA_DIST.
3535
3536 2001-06-08 [paul]
3537
3538         0.4.99claws7
3539
3540         * sync with sylpheed 0.4.99cvs7
3541
3542 2001-06-06 [sergey]
3543
3544         * src/quote_fmt.h: renamed from src/quote_fmt_parse.h (which
3545         clashes with autogenerated header).
3546         * src/compose.c, src/quote_fmt_parse.y: #include "quote_fmt.h"
3547         * src/Makefile.am: added quote_fmt.h.
3548         * src/.cvsignore: added lex/yacc autogenerated files
3549         (quote_fmt_lex.c, quote_fmt_parse.c, quote_fmt_parse.h).
3550
3551 2001-06-06 [paul]
3552
3553         0.4.99claws6
3554
3555         * sync with sylpheed 0.4.99cvs6
3556
3557 2001-06-06 [hoa]
3558
3559         * added src/quote_fmt_parse.h
3560         * src/compose.c
3561                 removed warnings
3562
3563         * src/prefs.[ch]
3564                 don't modify readonly configuration files
3565
3566         * src/prefs_account.c
3567         * src/prefs_common.c
3568         * src/prefs_customheader.c
3569         * src/prefs_display_header.c
3570         * src/prefs_filter.c
3571         * src/prefs_filtering.c
3572         * src/prefs_scoring.c
3573                 don't open dialog box when configuration files
3574                 are readonly
3575
3576 2001-06-05 [sergey]
3577
3578         * configure.in: added AM_PROG_LEX and AC_PROG_YACC.
3579
3580         * src/Makefile.am: replaced quote_fmt.tab.[ch] by
3581         quote_fmt_lex.[lh], quote_fmt_parse.y; added YFLAGS=-d; added
3582         BUILT_SOURCES to make all files rebuild properly.
3583
3584         * src/compose.c: removed #include "quote_fmt.tab.h".
3585
3586         * src/quote_fmt_lex.l: renamed from quote_fmt.l; changed to return
3587         CHARACTER value in yylval.
3588
3589         * src/quote_fmt_parse.y: renamed from quote_fmt.y; changed to
3590         receive CHARACTER value by documented means (yylval).
3591
3592         * src/lex.quote_fmt.c, src/quote_fmt.{l,y,tab.{c,h}}: removed.
3593
3594 2001-06-05 [hoa]
3595
3596         * src/Makefile.am
3597                 changed quote_fmt.[ch] into quote_fmt.tab.[ch]
3598
3599         * src/filtering.c
3600         * src/matcher.c
3601         * src/matcher.h
3602         * src/prefs_filtering.c
3603                 now keep the configuration for execute action
3604
3605         * src/mbox_folder.c
3606                 fixed a warning
3607
3608 2001-06-05 [paul]
3609
3610         * sync with sylpheed 0.4.99cvs5
3611
3612 2001-06-05 [hoa]
3613
3614         * src/Makefile.am
3615                 added quote_fmt.[ch]
3616
3617         * added src/quote_fmt.y
3618         * added src/quote_fmt.l
3619         * added src/quote_fmt.tab.h
3620         * added src/quote_fmt.tab.c
3621         * added src/lex.quote_fmt.c
3622                 parsing configuration for replying
3623                 and forwarding
3624
3625         * src/prefs_common.[ch]
3626                 added configuration UI for replying
3627                 and forwarding
3628
3629         * src/compose.c
3630                 using configuration for replying
3631                 and forwarding
3632
3633 2001-06-04 [hoa]
3634
3635         * src/filtering.c
3636         * src/matcher.c
3637         * src/matcher.h
3638         * src/prefs_filtering.c
3639         * src/prefs_matcher.c
3640         * src/prefs_matcher.h
3641                 action "run a command" for filtering
3642                 and matching with a command.
3643                 fixed the "whole message" matching
3644
3645         * src/mbox_folder.c
3646                 changed temporary filename for security
3647
3648         * src/messageview.c
3649                 queue the notification if it fails to send.
3650
3651         * src/prefs_common.c
3652         * src/prefs_folder_item.c
3653                 changed the default important score             
3654
3655         * src/prefs_scoring.c
3656         * src/scoring.c
3657                 hide kill score input when the folder is not
3658                 a newsgroup
3659
3660 2001-06-03 [alfons]
3661
3662         * src/prefs_common.c:
3663
3664                 (prefs_font_select): pass font name in font entry box to font
3665                 selection dialog.
3666
3667 2001-06-03 [sergey]
3668
3669         * src/smtp.c (smtp_ok): fixed sock_gets() error handling.
3670
3671 2001-06-03 [paul]
3672
3673         * sync with sylpheed 0.4.99cvs4
3674
3675 2001-06-03 [alfons]
3676
3677         * src/headerwindow.c:
3678
3679                 (headerwindow_show_cb): use the selected summary view item, not
3680                 the displayed item.
3681
3682 2001-06-02 [alfons]
3683
3684         * src/headerwindow.c:
3685
3686                 (headerwindow_show_cb): always try to show msginfo
3687
3688 2001-06-02 [hoa]
3689
3690         * src/compose.c
3691                 keep attached parts when reediting or forwarding.
3692
3693 2001-06-01 [hoa]
3694
3695         * src/folderview.c
3696         * src/prefs_folder_item.[ch]
3697         * src/prefs_scoring.[ch]
3698         * src/scoring.[ch]
3699         * src/summaryview.[ch]
3700         * src/main.c
3701         * src/mainwindow.c
3702         * src/prefs_common.[ch]
3703                 support for folder scoring
3704                 kill score and important score for messages
3705         
3706         * src/prefs_account.c
3707                 some display bug fixed for local account
3708                 preferences
3709
3710 2001-05-31 [alfons]
3711
3712         * src/summaryview.c:
3713
3714                 (add_sender_to_cb): don't crash when no or invalid sender; the add 
3715                 sender to address book menu item is disabled.
3716
3717 2001-05-30 [hoa]
3718
3719         * src/filtering.[ch]
3720         * src/summaryview.c
3721                 handling summary menu / filter messages
3722
3723         * src/folder.[ch]
3724                 add some stuff
3725
3726         * src/foldersel.c
3727                 imap folders now appears in list
3728
3729         * src/mbox_folder.c
3730                 doesn't crash if destination mail is not writeable
3731
3732 2001-05-29 [hoa]
3733
3734         * src/compose.c
3735                 removed some warnings
3736
3737         * src/filtering.c
3738         * src/folder.[ch]
3739         * src/prefs_filtering.c
3740                 global string to identify any folders           
3741                 removed some debug info
3742                 filtering to mbox folders is now possible
3743
3744         * src/mainwindow.c
3745                 removed some warnings
3746
3747         * src/mbox_folder.c
3748                 permission on files are changed to read/write for user only,
3749                 nothing for other.
3750                 creation of subfolder is handled better.
3751
3752 2001-05-28 [alfons]
3753
3754         Verified the sync for src/prefs_common.[ch] and
3755         src/prefs_account.[ch]. I believe there were some
3756         minor indentation differences.
3757
3758 2001-05-28 [paul]
3759
3760         0.4.99claws3
3761
3762         * sync with 0.4.99cvs3
3763
3764 2001-05-28 [hoa]
3765
3766         * src/compose.c
3767                 handling flags for mbox format
3768
3769         * src/filtering.c
3770                 use of mark file only for MH format
3771                 handling flags for mbox format
3772                 filtering cannot yet move or copy mails to mbox folders.
3773
3774         * src/folder.[ch]
3775                 changed move_msg, copy_msg,
3776                 move_msgs_with_dest, copy_msgs_with_dest functions
3777                 uses only folder->copy_msg() function
3778                 uses folder->finished_copy() to handle the destination
3779                 folder at the end of the copy or move operation.
3780
3781         * src/foldersel.c
3782                 included mbox directories.
3783
3784         * src/folderview.[ch]
3785         * src/mainwindow.c
3786                 handle folders operation for mbox format
3787
3788         * src/mbox.c
3789                 disable conversion of "From " header
3790
3791         * src/mbox_folder.[ch]
3792                 completion of mbox format handling
3793
3794         * src/mh.c
3795                 changed mh_copy_msg() function and
3796                 removed mh_move_msg(), mh_move_msgs_with_dest(),
3797                 mh_copy_msgs_with_dest()
3798
3799         * src/prefs_filtering.c
3800                 removed some warnings
3801
3802         * src/prefs_matcher.c
3803                 default boolean operation is AND
3804
3805         * src/procheader.c
3806                 handling flags for mbox format
3807                 handling of "From " header
3808
3809         * src/procmsg.[ch]
3810                 removed data field
3811                 added MSG_REALLY_DELETED flags to handle deletion of
3812                 messages in mbox format.
3813
3814         * src/summaryview.c
3815                 handling flags for mbox format
3816                 disable the MSG_DELETED flags when messages
3817                 are deleted in mbox format
3818
3819         * src/textview.c
3820                 "From " headers display fixed.
3821
3822 2001-05-27 [alfons]
3823
3824         * src/textview.c:
3825                 
3826                 (get_email_part): skip quoted email addresses, like in e.g.
3827                 "'alfons@proteus.demon.nl'".
3828
3829 2001-05-26 [alfons]
3830
3831         Minor GUI fixes adding horizontal scrollbars to Hoa's matcher dialogs,
3832         and fixing the persistence troubles when using separate windows.
3833
3834         * src/mainwindow.c:
3835         
3836             Added #define SEPARATE_ACTION used in the gtk item factory for 
3837             the SEPARATE_FOLDER and SEPARATE_MESSAGE items, so we can
3838                 use gtk_item_factory_get_widget_by_action() to get the items.
3839                 
3840             Removed separate_widget_cb from the gtk item factory data   
3841           
3842             (mainwindow_create): connect separate_widget_cb() to check
3843             menu item "toggled" signal. also passing a MainWindow pointer
3844                 as object data for both check menu items.
3845                 
3846             (separate_widget_cb): definition of separate_widget_cb() to match
3847             GtkCheckMenuItem's "toggled" signal. Now get the pointer to the main 
3848                 window using gtk_object_get_data(). The type of window separation 
3849                 (SEPARATE_MESSAGE or SEPARATE_FOLDER) is passed as the signal's data
3850         
3851         * src/prefs_filtering.c,
3852           src/prefs_matcher.c: added horizontal scrollbars
3853
3854 2001-05-25 [darko]
3855
3856         * src/headerview.c
3857                 fix segfault with invalid bold font
3858         * src/summaryview.c
3859                 correctly display summary stats after row is marked
3860
3861 2001-05-23 [sergey]
3862
3863         * src/codeconv.c (conv_get_code_conv_func): fix for ISO-8859-*
3864         encodings with libjconv.
3865
3866 2001-05-23 [hoa]
3867
3868         * src/Makefile.am
3869                 added mbox_folder.[ch]
3870         * src/defs.h
3871                 mbox temporary folder
3872         * src/folder.[ch]
3873         * added src/mbox_folder.[ch]
3874         * src/folderview.c
3875         * src/procheader.[ch]
3876                 added mbox support
3877         * src/mbox.c
3878                 bugfix for file incorporation filtering
3879         * src/imap.c
3880                 enable creation of MBOX
3881         * src/prefs_display_header.c
3882                 enable use of headers like "From "
3883                 something that should be fixed :
3884                         displaying of such headers add an extra space
3885         * src/prefs_folder_item.c
3886                 don't create folders because it is not necessary
3887         * src/procmsg.h
3888                 added data field to MsgInfo for mbox internal use
3889         * src/summaryview.c
3890                 added some support for mbox
3891         * src/utils.[ch]
3892                 added get_mbox_cache_dir() function
3893
3894 2001-05-23 [hiroyuki]
3895
3896         * src/headerwindow.c
3897           src/inc.c
3898           src/main.c
3899           src/mh.c
3900           src/nntp.c
3901           src/procmsg.h
3902           src/session.h
3903           src/socket.[ch]
3904           src/summaryview.c
3905           src/textview.c
3906           src/automaton.c
3907           src/folderview.c: more sync with 0.4.99cvs2.
3908
3909         * src/headerwindow.c: reverted.
3910
3911 2001-05-22 [paul]
3912
3913         0.4.99claws2
3914
3915         * sync with sylpheed 0.4.99cvs2
3916                 * src/news.[ch]
3917                 * src/nntp.[ch]
3918                 * INSTALL
3919                 * INSTALL.jp
3920
3921 2001-05-22 [alfons]
3922
3923         * src/summaryview.c: bugfixed a premature assignment in  summaryview_add_sender_to_cb()
3924
3925 2001-05-21 [alfons]
3926
3927         Minor things:
3928
3929         * configure.in: if gnome-config not found, "no" is displayed
3930         
3931         * sylpheed.desktop: "Hello World" is replaced with "Sylpheed Mail"
3932
3933         * src/textview.c: now also possible to add mail addresses by right
3934           clicking in the text view
3935
3936         * src/codeconv.c: merged patch which fixes endless loop when encountering
3937           invalid wide characters; from Alte <010@imis.ru>  
3938
3939 2001-05-20 [alfons]
3940
3941         Added installation of gnome specific things:
3942
3943         * Makefile.am: gnome conditional
3944
3945         * configure.in: check for installed gnome
3946
3947         * added sylpheed.png, sylpheed.desktop
3948
3949 2001-05-20 [sergey]
3950
3951         * src/pixmaps/stock_mail_reply_to_author.xpm: new file.
3952
3953         * src/mainwindow.h (main_window_toolbar_create): created a button
3954         for "Reply to all".
3955         (main_window_set_toolbar_sensitive): enable/disable the new button
3956         appropriately.
3957         (toolbar_reply_to_author_cb): handle the new button.
3958
3959         * src/send.c (SEND_EXIT_IF_ERROR, SEND_EXIT_IF_NOTOK): call
3960         send_progress_dialog_destroy() on failure (fixes hang on SMTP
3961         failure).
3962
3963 2001-05-19 [sergey]
3964
3965         * src/compose.h (ComposeReplyMode): new modes
3966         COMPOSE_REPLY_TO_AUTHOR, COMPOSE_REPLY_TO_AUTHOR_WITH_QUOTE,
3967         COMPOSE_REPLY_TO_AUTHOR_WITHOUT_QUOTE.
3968
3969         * src/compose.c
3970         (compose_send): move some code into a new function:
3971         (compose_current_mail_account): new function.
3972         (compose_reply): new argument to_author, all callers changed; if
3973         to_author==TRUE and account->protocol==A_NNTP, find and use an
3974         appropriate mail account for replying.
3975         (compose_reply_set_entry): new argument to_author; ignore
3976         compose->replyto if to_author==TRUE.
3977
3978         * src/mainwindow.c: new command "Message/Reply to author".
3979         (main_window_set_menu_sensitive): enable/disable it.
3980         (reply_cb): handle it.
3981
3982         * src/summaryview.c: new command "Reply to author".
3983         (summary_set_menu_sensitive): enable/disable it.
3984         (summary_reply_cb): handle it.
3985
3986         * src/account.c (account_find_mail_from_address): new function.
3987
3988 2001-05-18 [paul]
3989
3990         0.4.99claws1
3991
3992         * sync with sylpheed 0.4.99cvs1
3993
3994 2001-05-18 [hoa]
3995
3996         * src/compose.[ch]
3997         * src/filtering.c
3998         * src/summaryview.c
3999                 new filtering action : forward and forward as attachment
4000
4001         * src/main.c
4002                 no need for $DISPLAY when we run sylpheed --help
4003                 call to parse_cmd_opt() is moved
4004
4005         * src/mainwindow.[ch]
4006                 execute button is hidden when immediate execute
4007                 is chosen
4008
4009         * src/mh.c
4010         * src/news.c
4011         * src/prefs_folder_item.c
4012         * src/procmsg.c
4013                 better handling of missing directories
4014
4015         * src/summaryview.c
4016                 reedit is enabled in outbox
4017                 reedit is enabled in queue
4018
4019 2001-05-17 [hoa]
4020
4021         * src/filtering.c
4022         * src/matcher.[ch]
4023         * src/prefs_filtering.c
4024                 changed attachement into attachment
4025
4026 2001-05-17 [alfons]
4027
4028         0.4.67claws4    
4029
4030         * sync with sylpheed 0.4.67cvs9
4031         * sync with sylpheed 0.4.67cvs7-8
4032
4033 2001-05-17 [hoa]
4034
4035         * src/Makefile.am
4036                 added prefs_filtering.c
4037
4038         * src/filtering.[ch]
4039         * src/matcher.[ch]
4040                 removed action : forward_news and forward_news_as_attachement
4041                 (forward and forward_as_attachement can be used instead)
4042
4043         * src/mainwindow.c
4044                 added menu option to access filtering configuration
4045
4046         * src/prefs_account.c
4047                 changed mail_command default to /usr/sbin/sendmail
4048
4049         * added src/prefs_filtering.[ch]
4050                 dialog box for filtering configuration
4051
4052         * src/prefs_matcher.c
4053                 added function prefs_matcher_get_criteria_from_matching()
4054
4055         * src/prefs_scoring.c
4056                 reset the dialog when register or substitute is clicked
4057
4058 2001-05-15 [hoa]
4059
4060         * src/Makefile.am
4061                 added filtering.[ch]
4062         * src/inc.c
4063                 using filering.[ch] instead of filter.[ch]
4064         * src/main.c
4065                 reading new filtering configuration
4066         * src/matcher.[ch]
4067                 added some filtering actions
4068                 and fixed a bug for headers and mail body matching
4069         * src/mbox.c
4070                 using filering.[ch] instead of filter.[ch]
4071         * src/mh.c
4072                 handling invalid MsgInfo in mh_copy_msg() and mh_move_msg()
4073         * src/summaryview.c
4074                 some fixes for filtering
4075
4076 2001-05-14 [hiroyuki]
4077
4078         * src/send.c: fixed some weird indentations.
4079           send_message_with_command(): call pclose() only if p != NULL.
4080         * src/textview.c: get_email_part(): modified the code for readability.
4081
4082 2001-05-14 [hiroyuki]
4083
4084         * src/md5global.h
4085           src/md5ify.c
4086           src/md5ify.h: removed from the cvs.
4087
4088 2001-05-13 [sergey]
4089
4090         * src/main.c: include rfc2015.h to avoid compiler warnings.
4091         * src/alertpanel.c (alertpanel_message_with_disable): return 0 if
4092         the panel is already on screen.
4093         * src/prefs_customheader.c (prefs_custom_header_delete_cb): treat
4094         closing the alert window by ESC as "No".
4095         * src/prefs_common.c (prefs_interface_create): moved return
4096         receipt check button to the correct place.
4097
4098 2001-03-13 [alfons]
4099
4100         * src/prefs_common.c: 
4101                 moved return receipt check button to the Send tab. (prefs_send_create)
4102                 removed the date format ui related globals. (prefs_display_create)
4103
4104         0.4.67claws3
4105         
4106         * sync with sylpheed 0.4.67cvs5-6
4107
4108 2001-05-13 [paul]
4109
4110         * added Alfons' font selection patch
4111
4112         * src/defs.h
4113         * src/headerwindow.c
4114         * src/prefs_common.c
4115         * src/prefs_common.h
4116
4117 2001-05-13 [hoa]
4118         * src/defs.h
4119                 changed version of cache
4120         * src/matcher.[ch]
4121         * src/prefs_matcher.c
4122                 added additionnal matching criteria
4123         * src/procheader.c
4124         * src/procmsg.[ch]
4125         * src/news.c
4126                 added references in MsgInfo
4127
4128 2001-05-12 [hoa]
4129
4130         * src/defs.h
4131                 prepared some things for new filtering
4132         * src/matcher.[ch]
4133                 added some matching properties
4134                 inreplyto need to be enhanced
4135                 prepared some things for new filtering
4136         * src/messageview.c
4137                 added Return-Receipt-To handling
4138         * src/prefs_folder_item.c
4139                 changed default value to TRUE
4140         * src/prefs_matcher.c
4141                 added some matching properties
4142         * src/prefs_scoring.[ch]
4143                 the scoring dialog is finished
4144         * src/procheader.c
4145                 added Return-Receipt-To handling
4146                 Reference need to be added
4147         * src/procmsg.[ch]
4148                 added Return-Receipt-To handling
4149                 added threadscore to get a better score sorting when
4150                 threads are enabled
4151         * src/summaryview.c
4152                 suppressed a bug when we sort the list
4153                 when no folder is opened.
4154                 better score sorting when threads are enabled
4155
4156 2001-05-12 [alfons]
4157
4158         * reverted previous patch because of potential errors 
4159
4160         0.4.67claws2
4161         
4162         * src/inc.c, src/prefs_common.c, src/prefs_common.h: 
4163                 applied "toggle mail-retrieval dialog window" patch submitted 
4164                 by Eric Limpens <eric@qnt.net>
4165
4166         * sync with sylpheed 0.4.67cvs4
4167
4168 2001-05-12 [sergey]
4169
4170         * src/matcher.c, src/scoring.c: changed "#ifdef 0" to "#if 0" for
4171         some picky compilers.
4172         * src/rfc2015.h: provide prototype for rfc2015_disable_all().
4173         * src/grouplist_dialog.c: include alertpanel.h.
4174         * src/prefs_headers.c (prefs_headers_deleted): added GTK_BUTTON to
4175         fix compile warning.
4176         * src/scoring.c, src/prefs_folder_item.c, src/matcher.c: brought
4177         #include "defs.h" before others to prevent the warning of `MIN'
4178         and `MAX' redefinition.
4179
4180 2001-05-11 [hoa]
4181
4182         * src/main.c
4183         * src/messageview.c
4184         * src/prefs_account.c
4185         * src/prefs_display_header.c
4186                 removed warning
4187         * src/Makefile.am
4188                 added prefs_scoring.[ch]
4189         * src/grouplist_dialog.c
4190                 display an error dialog box if the group list
4191                 cannot be fetched.
4192         * src/mainwindow.[ch]
4193                 added main_window_set_thread_option() function
4194                 scoring dialog box enabled
4195         * src/matcher.[ch]
4196                 added flags matching unread /new / marked
4197                 / deleted / replied / forwarded
4198         * src/news.c
4199                 newsgroups are now finally in newscache
4200         * src/prefs_matcher.[ch]
4201                 finished preferences for matching dialog
4202         * added src/prefs_scoring.[ch]
4203                 scoring dialog box completed
4204         * src/scoring.[ch]
4205                 conversion to string : added scoringprop_to_string()
4206                 write config for preferences :
4207                 added prefs_scoring_write_config()
4208         * src/summaryview.c
4209                 threads can be enabled/disabled independently
4210                 for each folder
4211
4212 2001-05-10 [alfons]
4213
4214         0.4.67claws1
4215         
4216         * AUTHORS: 
4217                 thought it would be nice to have a list of all
4218                 contributors (used Changelog as a reference)
4219         
4220         * configure.in: 
4221                 messed up version numbering...
4222
4223         0.4.66claws1
4224
4225         * sync with sylpheed 0.4.67cvs1-3
4226
4227 2001-05-10 [darko]
4228
4229         * src/prefs_common.c:
4230                 better UI for strftime format, double clicking
4231                 on format now inserts the format in text entry
4232                 replaced close button with standard OK/Cancel
4233                 moved date format button to the right of the
4234                 text entry field
4235
4236 2001-05-09 [alfons]
4237
4238         * src/gtkstext.c:
4239                 Ctrl-Home / Ctrl-End have proper cursor navigation
4240
4241 2001-05-09 [hoa]
4242
4243         * src/prefs_matcher.c
4244                 finished UI to define matching properties
4245                 added ok and cancel button
4246         * src/prefs_filter.c
4247                 added ok and cancel button
4248         * src/news.c
4249                 fixed some bug in xhdr parsing
4250
4251 2001-05-08 [alfons]
4252
4253         * src/textview.c: 
4254                 fixed a bug in textview_show_header(), which displayed two colons (':');
4255                 cleaned up some warnings
4256
4257 2001-05-08 [hoa]
4258
4259         * src/Makefile.am
4260                 added prefs_matcher.[ch]
4261                 compilation with -W -Wall
4262         * src/alertpanel.c
4263                 ungrab the mouse events if grabbed - does it
4264                 fix the bug for disposition notification ?
4265         * src/mainwindow.c
4266                 added a menu option to open the matching dialog.
4267         * src/matcher.[ch]
4268                 added matcherprop_to_string() and matcherlist_to_string()
4269                 fixed some bugs, changed the name of some options
4270                 age_sup and age_inf becomes age_greater and age_lower,
4271                 body and messageheaders becomes body_part and headers_part,
4272                 changed the names of constants from SCORING_XXX to MATCHING_XXX
4273         * src/prefs_display_header.c
4274         * src/prefs_headers.c
4275                 fixed a bug that accidentally destroyed dialogs
4276                 when closed them with delete_event
4277                 Added *_deleted() which handle delete_event signal correctly.
4278         * src/prefs_folder_item.[ch]
4279                 added "enable_thread" field for future customization
4280         * added src/prefs_matcher.[ch]
4281                 sample of the UI to define matching properties
4282         * src/procheader.c
4283                 using procheader_headername_equal instead of str*cmp functions
4284                 using procheader_parse_header() function
4285         * src/scoring.c
4286                 using MATCHING_XXX instead of SCORING_XXX
4287         * src/summaryview.c
4288                 display the sender of the news even if this is ourself
4289                 when this is a news message.
4290         * src/textview.c
4291                 using headername_equal() instead of str*cmp functions
4292
4293 2001-05-08 [alfons]
4294
4295         0.4.66claws
4296
4297         * sync with sylpheed 0.4.66
4298         * src/gtkstext.c: trace logs added 
4299
4300 2001-05-08 [sergey]
4301
4302         * src/prefs_common.[ch]: added option to enable/disable GnuPG
4303         signature check popup.
4304         * src/rfc2015.c (check_signature): show signature check popup only
4305         if it is enabled in preferences.
4306
4307 2001-05-07 [alfons]
4308
4309         0.4.66claws4
4310         
4311         * sync with sylpheed 0.4.66cvs6
4312
4313 2001-05-07 [darko]
4314
4315         * src/prefs_common.[ch]: added option to enable/disable
4316           looking up sender name in address book for summary pane
4317         * src/summaryview.c: look up sender in the address book
4318           by using Alfons' address completion code
4319
4320 2001-05-07 [hiroyuki]
4321
4322         * src/inc.h
4323           src/pop.c: pop3_retr_recv(): removed cur_msg_bytes from the
4324           member of Pop3State.
4325         * src/news.c: brought #include "defs.h" before #include <glib.h>
4326           to prevent the warning of `MIN' and `MAX' redefinition.
4327
4328 2001-05-06 [hoa]
4329
4330         * removed src/headers_display.[ch]
4331         * removed src/prefs_display_headers.[ch]
4332         * src/inc.c
4333                 use a temporary file in the user directory for mbox import
4334         * src/news.c
4335                 added XHDR support to get "To" and "Cc" headers
4336                 (in order to match news with to or cc field for
4337                 scoring)
4338                 added function news_parse_xhdr() to get XHDR response
4339         * src/nntp.[ch]
4340                 added function nntp_xhdr()
4341         * src/matcher.c
4342                 fetch the message if necessary
4343
4344 2001-05-06 [alfons]
4345
4346         0.4.66claws3
4347
4348         * sync with sylpheed 0.4.66cvs3-5
4349
4350 2001-05-06 [hoa]
4351
4352         * src/utils.[ch]
4353                 added function itos_buf() to enable use of several buffers
4354         * src/summaryview.c
4355                 use of itos_buf() instead of itos() in summary list
4356                 to fix the broken display of message number.
4357
4358 2001-05-06 [alfons]
4359
4360         * src/gtkstext.c: bug in cursor up navigation fixed,
4361                 fixed another unsigned / signed comparison (we're getting there :-)
4362
4363 2001-05-06 [hoa]
4364
4365         * src/Makefile.am
4366                 added scoring.c scoring.h
4367                 prefs_folder_item.c prefs_folder_item.h
4368                 matcher.c matcher.h
4369         * src/defs.h
4370                 added FOLDERITEM_RC SCORING_RC
4371         * src/folder.[ch]
4372                 added prefs field in FolderItem :
4373                 properties for each folder (PrefsFolderItem),
4374                 sorting type and mode were added as the first properties.
4375         * src/main.c
4376                 read config for scoring
4377         * added src/matcher.[ch]
4378                 gives functions to parse configuration file to do
4379                 matching on mails with a list of conditions.
4380         * src/mainwindow.c
4381                 add option to sort by score
4382         * src/prefs_common.[ch]
4383                 added preference option to show score and for
4384                 the score column size
4385         * added src/prefs_folder_item.[ch]
4386                 properties for each folder (PrefsFolderItem),
4387                 sorting type and mode were added as the first properties.
4388         * src/procheader.[ch]
4389                 added procheader_parse_header()
4390                 added procheader_header_free()
4391                 added procheader_headername_equal()
4392                 and made modification to use them.
4393         * src/procmsg.[ch]
4394                 added score field to MsgInfo structure
4395         * added src/scoring.[ch]
4396                 gives functions to parse configuration file to do
4397                 scoring on mails with a list of conditions.
4398         * src/summaryview.[ch]
4399                 save the sorting type and mode for the folder
4400                 added column to display the score of the mail
4401                 added function summary_score_clicked()
4402                 sorting type and mode are restored to the folder
4403                 when it is reopen
4404         * src/textview.c
4405                 use procheader_parse_header(), procheader_headername_equal()
4406                 removed memory leak in text_scan_header when freeing headers
4407         * src/filter.c
4408                 changed the function to match names of headers
4409                 using procheader_headername_equal()
4410
4411         Scoring functions are implemented, an interface is needed
4412         to configure that.
4413
4414 2001-05-04 [alfons]
4415
4416         * src/gtkstext.c: 
4417                 hopefully fixed the row up navigation bug,
4418                 removed adding back / forward lines to cache
4419
4420 2001-05-04 [sergey]
4421
4422         * src/prefs_display_headers.c: user interface changes:
4423         (prefs_display_headers_create): remove unused "Show" check button;
4424         allow reordering of headers by dragging.
4425         (prefs_display_headers_write_config): remove unused variables.
4426         (prefs_display_headers_set_dialog): do not insert "(New)" at top
4427         of lists (not needed with the new UI).
4428         (prefs_display_headers_set_list): scan lists starting from row 0,
4429         not 1 (do not skip "(New)").
4430         (prefs_display_headers_find_header): new function.
4431         (prefs_display_headers_clist_set_row): do not allow duplicates.
4432         (prefs_display_headers_delete_cb): do not skip row 0; treat
4433         closing the alert window by ESC as "No".
4434         (prefs_display_headers_up): do not protect row 0.
4435         (prefs_display_headers_down): do not protect row 0.
4436
4437 2001-05-04 [sergey]
4438
4439         * src/mainwindow.c (next_marked_cb, prev_marked_cb): new
4440         functions.
4441
4442         * src/summaryview.c
4443         (summary_find_next_marked_msg, summary_find_prev_marked_msg,
4444         summary_select_next_marked, summary_select_prev_marked): new
4445         functions.
4446
4447 2001-05-03 [sergey]
4448
4449         * src/news.c: fixed a bug when no article can be fetched after
4450         server timeout if the connection was restored by news_post():
4451         (news_select_group): new function.
4452         (news_fetch_msg): call news_select_group() before fetching
4453         article.
4454         (news_get_uncached_articles): set session->group after successful
4455         GROUP command.
4456
4457 2001-05-03 [hoa]
4458
4459         * src/defs.h
4460         * src/procmsg.[ch]
4461         * src/procheader.c
4462                  changed version of cache, added cc field
4463
4464         * src/prefs_display_headers.c
4465                 the interface was changed
4466
4467         * src/prefs_headers.c
4468                 added cancel button
4469
4470 2001-05-03 [alfons]
4471
4472         * completed sync of sylpheed cvs2
4473         * src/gtkstext.c: updated row up / down cursor navigation
4474         * src/textview.c: re-edited, prepared for fixing the email address
4475                 scanner.
4476
4477 2001-05-03 [darko]
4478
4479         * src/prefs_common.c: use alfons' strftime ui code
4480         entry_datefmt and datefmt_sample widgets have to be
4481         global in this module because of this change
4482
4483 2001-05-03 [hoa]
4484
4485         * src/messageview.c
4486         * src/prefs_common.[ch] added option to activate the return receipt
4487                 feature.
4488
4489 2001-05-02 [alfons]
4490
4491         * src/gtkstext.c: fix for row up/down cursor navigation. 
4492
4493         0.4.66claws2
4494         
4495         * sync with 0.4.66cvs2
4496
4497 2001-05-02 [paul]
4498
4499         added add-sender-to-addressbook patch
4500
4501         * src/addressbook.c
4502         * src/addressbook.h
4503         * src/summaryview.c
4504
4505 2001-05-02 [sergey]
4506
4507         * src/alertpanel.h (AlertValue): added G_ALERT_VALUE_MASK,
4508         G_ALERTDISABLE.
4509
4510         * src/alertpanel.c (alertpanel_create): new argument can_disable,
4511         all existing callers changed to pass FALSE; create a check button
4512         to disable the message.
4513         (alertpanel_message_with_disable): new function.
4514         (alertpanel_show): mask value with G_ALERT_VALUE_MASK.
4515         (alertpanel_button_toggled): new function.
4516         (alertpanel_button_clicked, alertpanel_close): set value using
4517         G_ALERT_VALUE_MASK.
4518
4519         * src/prefs_common.h (PrefsCommon): new field gpgme_warning.
4520
4521         * src/prefs_common.c (prefs_privacy_create): new check button
4522         checkbtn_gpgme_warning.
4523
4524         * src/main.c (main): moved preferences reading before gpgme
4525         initialization; check prefs_common.gpgme_warning before giving the
4526         GnuPG warning and set it to FALSE if the user wants to disable the
4527         warning.
4528
4529 2001-05-02 [hiroyuki]
4530
4531         * src/prefs_display_headers.c: modified the layout and some labels.
4532
4533 2001-05-02 [sergey]
4534
4535         * src/prefs_account.c (prefs_account_fix_size): new function.
4536         (prefs_account_create): call prefs_account_fix_size(); use
4537         gtk_widget_show instead of gtk_widget_show_all (fixes too large
4538         size when the window is shown for the first time).
4539         (prefs_account_basic_create): changed layout of serv_table; moved
4540         localmbox_entry above smtpserv_entry (logically it replaces
4541         POP3/IMAP server).
4542         (prefs_account_protocol_activated): set sensitivity of
4543         nntpauth_chkbtn according to the protocol (in addition to
4544         hide/show); commented out gtk_table_set_row_spacing() calls.
4545         (prefs_account_nntpauth_toggled): do nothing if nntpauth_chkbtn is
4546         not sensitive (fixes a bug with disabled username/password boxes
4547         when editing POP3 account after NNTP with authentication).
4548
4549 2001-05-02 [hoa]
4550
4551         * src/account.c
4552         * src/inc.c
4553         * src/prefs_account.[ch]
4554         * src/send.c
4555                 removed local account without SMTP server
4556                 added option to use mail command instead of a connexion
4557                 to SMTP server when a local account is used
4558         * src/prefs_headers.c
4559                 fixed a bug
4560         * src/news.c
4561                 fixed a bug when connexion immediately closed
4562
4563 2001-05-01 [alfons]
4564
4565         0.4.66claws1
4566         
4567         * sync with 0.4.65
4568
4569 2001-05-01 [sergey]
4570
4571         * src/prefs_account.c (Basic, prefs_account_basic_create): new
4572         widget nntpauth_chkbtn.
4573         (prefs_account_protocol_activated): handle nntpauth_chkbtn
4574         visibility.
4575         (prefs_account_nntpauth_toggled): new function.
4576
4577         * src/news.c (news_session_new_for_folder): use NNTP
4578         authentication only if ac->use_nntp_auth is set.
4579
4580 2001-05-01 [hoa]
4581
4582         * src/Makefile.am changed headers.[ch] in customheader.[ch]
4583         * src/prefs_display_headers.c changed the UI
4584         * src/prefs_headers.c changed account_name to account_id
4585         * src/compose.c using customheader.h
4586
4587 2001-05-01 [hiroyuki]
4588
4589         * src/esmtp.c
4590           src/news.c
4591           src/nntp.c: changed sock_read() to sock_gets(), they've been left
4592           unsynched.
4593
4594 2001-05-01 [hoa]
4595
4596         * src/Makefile.am added prefs_display_headers.[ch] headers_display.[ch]
4597         * src/defs.h added HEADERS_DISPLAY_RC : name of the config file
4598                 for displaying of headers
4599         * src/grouplist_dialog.[ch] minor changes to remove warnings
4600         * src/prefs_display_headers.[ch] dialog to choose the
4601         headers to display in the mail viewer.
4602         * src/headers.h correction of #define
4603         * src/headers_display.[ch] configuration for displaying of headers.
4604         * src/main.c read config of displaying of headers
4605         * src/prefs_common.c add a button to access the config dialog
4606                 for displaying of headers
4607         * src/prefs_display_headers.[ch] dialog for configuration for
4608                 displaying of the headers.
4609         * src/prefs_headers.c cleaning of code
4610         * src/procheader.c comments added to code
4611         * src/textview.c changes to reorder the headers depending
4612                 on the config for displaying of headers
4613
4614 2001-04-30 [alfons]
4615
4616         0.4.65claws7
4617
4618         * sync with 0.4.65cvs12
4619
4620         NOTE: nntp.c and news.c in claws and cvs branch differ significantly!
4621
4622 2001-04-30 [sergey]
4623
4624         * src/nntp.h (NNTPSockInfo): new field auth_failed.
4625
4626         * src/nntp.c (nntp_mode): return NN_AUTHREQ if sock->auth_failed
4627         is set to force reconnection after authentication failure.
4628         (nntp_gen_command): set sock->auth_failed on authentication
4629         failure, or if sock->userid and sock->passwd are not set.
4630
4631         * src/news.c (news_session_new_for_folder): set userid=NULL if
4632         password dialog is cancelled.
4633
4634 2001-04-30 [sergey]
4635
4636         * src/nntp.h (NNTPSockInfo): new type.
4637
4638         * src/nntp.c: all functions updated to use NNTPSockInfo instead of
4639         SockInfo.
4640         (nntp_open_auth, nntp_close): new functions.
4641         (nntp_gen_command): new function to handle authentication; all
4642         NNTP command functions updated to use it.
4643         (nntp_authinfo_user, nntp_authinfo_pass): deleted.
4644         (nntp_list): removed old useless code.
4645
4646         * src/news.h (NNTPSession): new field nntp_sock.
4647
4648         * src/news.c: all functions updated to use NNTPSockInfo instead of
4649         SockInfo.
4650         (news_session_new): new arguments (userid, passwd); made static;
4651         use nntp_open_auth() if needed.
4652         (news_session_destroy): use nntp_close() instead of sock_close().
4653         (news_query_password): changed arguments.
4654         (news_session_new_for_folder): new function.
4655         (news_session_get): use news_session_new_for_folder().
4656         (news_authenticate): deleted.
4657         (news_get_uncached_articles): removed old authentication code.
4658
4659 2001-04-30 [sergey]
4660
4661         * src/news.c: reverted my previous changes (need to do NNTP
4662         authentication in a cleaner way).
4663         
4664 2001-04-29 [sergey]
4665
4666         * src/news.c (news_nntp_group, news_nntp_list, news_nntp_xover,
4667         news_nntp_post, news_nntp_mode): new functions (wrappers with
4668         authentication support).
4669         (news_get_article_cmd, news_get_article, news_get_header): new
4670         argument "folder"; all callers changed.
4671         (news_get_article_cmd): added authentication support.
4672         (news_session_get): use news_nntp_mode() instead of nntp_mode().
4673         (news_post): use news_nntp_post() instead of nntp_post().
4674         (news_get_uncached_articles): use news_nntp_group() instead of
4675         nntp_group() and news_nntp_xover() instead of nntp_xover();
4676         removed old authentication code.
4677         (news_get_group_list): use news_nntp_list() instead of nntp_list().
4678
4679         * src/nntp.c (nntp_list): return real error code instead of
4680         hardcoded NN_ERROR.
4681
4682 2001-04-29 [sergey]
4683
4684         * configure.in: fixed wint_t typedef detection again
4685
4686 2001-04-28 [hoa]
4687
4688         * src/prefs_account.[ch], added A_LOCAL_CMD
4689                 (send mail with mail command)
4690         * src/send.c added function send_message_with_command()
4691         * src/inc.c made a more secure get_spool() function with
4692                 mktemp() but maybe mkstemp() or something more
4693                 secure can be used.
4694
4695 2001-04-28 [alfons]
4696
4697         * src/textview.c, colorization of email addresses in headers
4698
4699         0.4.65claws6
4700
4701         * bug sync with sylpheed
4702         * prefs_common.c: created date format ui for darko
4703         * sync with 0.4.65cvs11
4704         * configure.in: corrected to have the new gpg checks
4705
4706 2001-04-27 [alfons]
4707
4708         * completed sync with 0.4.65cvs10
4709         * minor debug things added to gtkstext.c
4710
4711 2001-04-27 [darko]
4712
4713         * configure.in: remove check for availability of
4714           strftime() as advised by Hiroyuki
4715         * src/prefs_common.[ch], src/procheader.c:
4716           synch strftime() code with Hiroyki's main branch
4717
4718 2001-04-26 [sergey]
4719
4720         * src/news.c: news_query_password(), news_authenticate(): new
4721           functions.
4722           news_get_uncached_articles(): added NNTP authentication
4723           handling.
4724         * src/nntp.[ch]: nntp_authinfo_user(), nntp_authinfo_pass():
4725           new functions.
4726         * src/prefs_account.c: prefs_account_protocol_activated():
4727           enable userid and password fields for NNTP.
4728
4729 2001-04-26
4730
4731         * configure.in: check for availability of strftime()
4732           [darko]
4733         * src/prefs_common.[ch], src/procheader.c: use
4734           strftime() for displaying date in summary pane if it
4735           is available
4736
4737 2001-04-25
4738
4739         * more .cvsignore cleanups [alfons]
4740
4741 2001-04-25
4742
4743         * ac/sv-check-type.m4: new autoconf macro.
4744         * configure.in: fixed wint_t typedef detection (did not work
4745           with gcc-2.96).
4746
4747 2001-04-25
4748
4749         * acconfig.h: added USE_GTKGDK_XIM definition for autoheader.
4750           [hiroyuki]
4751
4752 2001-04-24
4753         * modified gtkstext.c : buggy cursor navigation fixed, 
4754           and font descent also taken in account when drawing
4755           cursor. [alfons]
4756
4757 2001-04-24 [hoa]
4758         * added comments in src/news.c src/nntp.c
4759         * added src/prefs_headers.[ch]
4760         * added src/headers.[ch]
4761         * modified compose.c to activate custom headers
4762                 added function is_in_custom_headers
4763         * modified prefs_account.[ch]
4764                 added function prefs_account_customhdr_edit
4765         * modified src/defs.h :
4766                 added HEADERS_RC : name of the config file
4767                 for the custom headers
4768
4769 2001-04-24
4770
4771     0.4.65claws5
4772
4773         * configure.in
4774           src/gtkstext.[ch]
4775           src/compose.c
4776           src/Makefile.am
4777           
4778           added gtkstext with configure.in patch by Hiroyuki which
4779           should fix the XIM detection [alfons]
4780
4781         * more clean up of cvs [alfons]
4782
4783                  * removed all Makefile.in files to attic.
4784
4785                  * updated all .cvsignores to really ignore things that could
4786                    be unintentionally committed by a recursive commit.
4787
4788 2001-04-23 [hoa]
4789         * added src/grouplist_dialog.[ch]
4790         * changed src/folderview.c to call grouplist_dialog instead
4791                 of inputdialog
4792         * src/news.c :
4793                 added functions news_reset_group_list
4794                 and news_get_group_list
4795         * src/nntp.c :
4796                 added function nntp_list
4797         * src/defs.h :
4798                 added GROUPLIST_FILE : name of the newsgroup list cache file
4799
4800 2001-04-21
4801
4802         * added option to warn about queued messages on exit [sergey]:
4803
4804           * src/compose.c: compose_queue(): call folder_item_scan()
4805             and folderview_update_item() after queueing.
4806           * src/folderview.c: folderview_update_node(): draw the queue
4807             folder in bold font if there are queued messages.
4808           * src/mainwindow.c: queued_messages(): new function.
4809             app_exit_cb(): display warning if there are queued messages
4810             if warn_queued_on_exit is set.
4811           * prefs_common.[ch]: add warn_queued_on_exit option.
4812
4813         * enhanced GnuPG key selection support [sergey]:
4814
4815           * src/select-keys.c: updated to newer version from Win32
4816             branch with support for selecting arbitrary keys.
4817           * src/prefs_account.c: added the Privacy tab to the account
4818             options window.
4819             prefs_account_privacy_create(),
4820             prefs_account_sign_key_set_data_from_radiobtn(),
4821             prefs_account_sign_key_set_radiobtn(): new functions.
4822           * src/prefs_account.h: new preferences sign_key_type, sign_key_id.
4823           * src/rfc2015.c: set_signers(): new function.
4824             pgp_sign(): add the account parameter, call set_signers().
4825             rfc2015_sign(): add the account parameter, pass it to pgp_sign().
4826           * src/rfc2015.h: rfc2015_sign(): updated prototype.
4827           * src/compose.c: pass the current account to rfc2015_sign().
4828
4829         * tag name claws added to prevent confusion with main branch [alfons]
4830
4831         * Sync with sylpheed-0.4.65cvs4 and made it compile. [sergey]
4832
4833         * autogen.sh: Added "--enable-maintainer-mode". [sergey]
4834
4835         * sync with recent sylpheed cvs. Untested though. [alfons]
4836