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