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