trim line feeds
[claws.git] / ChangeLog.claws
1 2003-12-06 [paul]       0.9.7claws28
2
3         * src/procheader.c
4                 add Alfons' patch to trim line feeds
5
6 2003-12-06 [paul]       0.9.7claws27
7
8         * partial sync with 0.9.7cvs8
9                 leaving claws' online/offline more or less intact
10                 see ChangeLog 2003-12-04 and 2003-12-06
11
12 2003-12-05 [christoph]  0.9.7claws26
13
14         * src/messageview.c
15         * src/privacy.[ch]
16                 revert pirvacy API changes
17
18 2003-12-05 [alfons]     0.9.7claws25
19
20         * src/matcher.[ch]
21                 clean up my old cruft
22
23 2003-12-05 [alfons]     0.9.7claws24
24
25         * src/matcher.c
26                 fix comparison buglet ;-) and make `test` matcher
27                 work again
28
29 2003-12-05 [alfons]     0.9.7claws23
30
31         * src/prefs_folder_item.c
32                 K&R 2nd Ed., page 241 (function parameter identifiers
33                 starting with an underscore are kind of insulting)
34
35 2003-12-05 [hoa]        0.9.7claws22
36
37         * src/main.c
38         * src/mainwindow.[ch]
39         * src/mainwindow.h
40                 add destructor for mainwindow so that the last 
41                 MimeInfo opened in messageview is destroyed when
42                 exiting sylpheed.
43
44 2003-12-05 [hoa]        0.9.7claws21
45
46         * src/filtering.[ch]
47         * src/matcher.[ch]
48         * src/matcher_parser_lex.l
49         * src/matcher_parser_parse.y
50         * src/prefs_actions.c
51         * src/prefs_filtering.c
52         * src/common/utils.[ch]
53                 quote arguments before giving them to command line.
54                 fixed quote of string in matcher/processing/filtering rules.
55
56         * src/messageview.c
57         * src/privacy.[ch]
58                 allows decryption to return a new whole 
59                 MIME message structure.
60
61 2003-12-04 [hoa]        0.9.7claws20
62
63         * src/filtering.[ch]
64         * src/folder.c
65         * src/mainwindow.c
66         * src/matcher.c
67         * src/matcher_parser_parse.y
68         * src/folderview.c
69                 global rules to run before folder specific rules.
70                 global rules to run after folder specific rules.
71                 
72         * src/messageview.c
73                 fixed quick addition of rules.
74         
75         * src/prefs_filtering.[ch]
76         * src/summaryview.c
77                 we can now customize the title for the dialog.
78                 updated case where we rename of delete folders.
79
80         * src/addressbook.c
81                 got back the function addressbook_browse_entry_cb()
82                 that is needed in case we compiled with LDAP support.
83
84 2003-12-04 [paul]       0.9.7claws19
85
86         * sync with 0.9.7cvs6
87                 see ChangeLog 2003-12-04
88                 fixes bug 171 'Wrong message decoing: koi8-r and 
89                 iso8859-5 looks same. Can't read many emails.'
90
91 2003-12-04 [paul]       0.9.7claws18
92
93         * po/POTFILES.in
94                 remove 'src/prefs_scoring.c'
95
96 2003-12-03 [hoa]        0.9.7claws17
97
98         * src/Makefile.am
99                 compilation of scoring.[ch] and prefs_scoring.[ch]
100                 is removed.
101         
102         * src/filtering.[ch]
103         * src/folder.c
104         * src/folder_item_prefs.[ch]
105         * src/folderview.c
106         * src/main.c
107         * src/mainwindow.c
108         * src/matcher.[ch]
109         * src/matcher_parser.h
110         * src/matcher_parser_parse.y
111         * src/prefs_filtering.[ch]
112         * src/prefs_filtering_action.c
113         * src/prefs_folder_item.c
114         * src/prefs_scoring.[ch]              * REMOVED FILES *
115         * src/procmsg.[ch]
116         * src/scoring.[ch]                    * REMOVED FILES *
117         * src/summaryview.c
118                 merged scoring and filtering.
119                 
120                 Note : compatibility is kept by parsing score like 
121                   add_score. To get the behaviour of older scoring 
122                   system, you have to define some equivalent rule :
123                   "score_lower -9999 hide"
124                   "score_greater 9999 mark"
125                   
126                   To define global rules, you have to define them 
127                   in the new global processing rules.
128                   The variable that kept the list filtering rules 
129                   was "global_processing" and has been renamed into 
130                   "filtering_rules".
131                   "global_processing" variable is now the name 
132                   of the variable that keeps the list of global 
133                   processing rules.
134                   In the configuration file, "[global]" section is 
135                   now for the global processing rules (which includes
136                   score things and new global processing rules).
137                   New "[filtering]" section is for the filtering rules.
138                   
139                   Before running with this version, during testing 
140                   phase, ** MAKE A BACKUP ** of your matcherrc file.
141                   Then, you have to make the following changes :
142                   - leave all scoring rules in "[global]" section.
143                   - move all other rules of "[global]" section to
144                       a new section named "[filtering]".
145
146 2003-12-03 [christoph]  0.9.7claws16
147
148         * src/procmime.c
149                 use default Content-Type as specified in RFC2045 if
150                 Content-Type header is syntactically incorrect
151
152 2003-12-03 [christoph]  0.9.7claws15
153
154         * src/addressbook.c
155         * src/addrindex.h
156         * src/addritem.c
157         * src/expldifdlg.h
158         * src/exportldif.c
159         * src/filtering.c
160         * src/folder.c
161         * src/folderview.c
162         * src/jpilot.c
163         * src/localfolder.c
164         * src/matcher.h
165         * src/matcher_parser_lex.l
166         * src/matcher_parser_parse.y
167         * src/news.c
168         * src/prefs_filtering_action.c
169         * src/prefs_folder_item.c
170         * src/prefs_fonts.c
171         * src/procmsg.c
172         * src/sgpgme.c
173                 clean up warnings
174
175         * src/procmime.c
176                 revert 0.9.7claws14 change
177
178 2003-12-03 [alfons]     0.9.7claws14
179
180         * src/procmime.c
181                 catch invalid Content-Type with no subtype
182
183 2003-12-03 [alfons]     0.9.7claws13
184
185         * src/alertpanel.h
186         * src/setup.c
187         * src/plugins/image_viewer/plugin.c
188                 compile again, we need stddef.h for size_t
189
190 2003-12-03 [paul]       0.9.7claws12
191
192         * src/account.c
193                 don't allow cloning of accounts with remote folders,
194                 patch submitted by Ricardo Mones Lastra
195
196 2003-12-03 [christoph]  0.9.7claws11
197
198         * src/folder.[ch]
199         * src/imap.c
200         * src/localfolder.[ch]
201         * src/mh.c
202         * src/news.c
203         * src/common/xml.[ch]
204                 add set_xml() and get_xml() virtual functions to FolderClass to
205                 save extra information for Folders (for example the rootpath
206                 only used by LocalFolder). The folderlist write function no
207                 longer needs to know the folder type to save this extra
208                 information.
209
210 2003-12-02 [christoph]  0.9.7claws10
211
212         * src/Makefile.am
213         * src/account.c
214         * src/folder.[ch]
215         * src/folderview.h
216         * src/imap.c
217         * src/localfolder.[ch]          ** NEW **
218         * src/mainwindow.c
219         * src/mh.[ch]
220         * src/news.[ch]
221         * src/prefs_account.[ch]
222         * src/prefs_filtering.h
223         * src/procmsg.h
224         * src/remotefolder.[ch]         ** NEW **
225         * src/common/xml.[ch]
226                 add item_set_xml() and item_get_xml() virtual functions to
227                 FolderClass to give folders the ability to add extra information
228                 to the saved FolderItem data. If NULL the default function for
229                 FolderItem will be used.
230
231 2003-11-29 [christoph]  0.9.7claws9
232
233         * src/procheader.c
234                 fix bug in unfolding
235
236 2003-11-29 [luke]       0.9.7claws8
237
238         * src/textview.c
239                 fix compilation for non c99 compilers
240
241 2003-11-29 [christoph]  0.9.7claws7
242
243         * src/procmime.[ch]
244         * src/mimeview.c
245                 o unknown disposition types should be handled as
246                   attachment (RFC2183)
247                 o missing headers should not default to inline
248                   (would make "Save All" useless when disposition header
249                    is not set by the sending mailer)
250                 o remove old MimeInfo data and cleanup
251
252 2003-11-29 [luke]       0.9.7claws6
253
254         * src/procmime.[ch]
255                 re-added parsing of Content-Disposition header
256                         - removes the old  'gchar* content_disposition'
257                         - adds a new field 'DispositionType disposition'
258                         - adds parameters to MimeInfo::parameters
259
260         * src/mimeview.c
261                 use the "filename" parameter for saving, and the new
262                 MimeInfo::disposition for save all.
263
264         * src/compose.c
265         * src/toolbar.[ch]
266                 add a 'check spelling' button as a possibility for 
267                 the compose toolbar
268
269         * src/stockpixmap.[ch]
270         * src/pixmaps/check_spelling.xpm        ** NEW **
271         * src/Makefile.am
272                 add a pixmap for use with 'check spelling' button or
273                 a user defined action
274
275         * src/textview.c
276                 re-apply fixed (I hope) patch for bug 57
277                 "Hidden URL in HTML Mails"
278
279 2003-11-28 [christoph]  0.9.7claws5
280
281         * src/procmime.c
282                 o be more liberal in what we accept as Content-Type parameters
283                 o ignore comments after parameters
284
285         * src/sgpgme.c
286                 o only free passphrase when an error occurs
287
288 2003-11-28 [paul]       0.9.7claws4
289
290         * src/account.c
291                 add 'Clone Account' function. patch submitted by
292                 Ricardo Mones Lastra
293
294 2003-11-27 [thorsten]   0.9.7claws3
295
296         * src/mimeview.c
297                 fix crash if 'save_all' failed twice
298
299 2003-11-27 [paul]       0.9.7claws2
300
301         * po/POTFILES.in
302                 fix a typo
303
304         * po/zh_CN.po
305                 update Simplified Chinese translation. submitted by
306                 Hansom Young
307
308 2003-11-27 [paul]       0.9.7claws1
309
310         * po/POTFILES.in
311                 clean up
312
313 2003-11-26 [paul]       0.9.7claws
314
315         * 0.9.7claws released
316
317 2003-11-26 [paul]       0.9.6claws99
318
319         * src/Makefile.am
320                 add reference to pixmaps/mime_message.xpm
321
322 2003-11-26 [paul]       0.9.6claws98
323
324         * po/POTFILES.in
325                 remove reference to src/sigstatus.c
326
327 2003-11-26 [christoph]  0.9.6claws97
328
329         * src/Makefile.am
330         * src/prefs_common.c
331         * src/rfc2015.c
332         * src/sigstatus.[ch]            ** REMOVE **
333                 remove signature result popup option and window
334
335 2003-11-26 [paul]       0.9.6claws96
336
337         * po/es.po
338           po/ja.po
339           po/pl.po
340           po/sk.po
341           po/sr.po
342                 update translations. submitted by Ricardo Mones Lastra,
343                 Rui Hirokawa, Emil Nowak, Andrej Kacian, and Urke MMI
344
345 2003-11-25 [christoph]  0.9.6claws95
346
347         * src/procmime.c
348                 display mime structure only in debug mode
349
350 2003-11-25 [melvin]     0.9.6claws94
351
352         * po/fr.po
353                 Updated French translations + typos fixes of older
354                 translations (thanks to Fabien Vantard for pointing
355                 to some of them)
356
357 2003-11-25 [melvin]     0.9.6claws93
358
359         * src/editldap.c
360                 Fixed a couple of typos.
361
362 2003-11-24 [paul]       0.9.6claws92
363
364         * po/POTFILES.in
365                 add 'src/textview.c'
366
367 2003-11-24 [paul]       0.9.6claws91
368
369         * src/sgpgme.c
370                 fix typo. spotted by Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
371
372 2003-11-24 [paul]       0.9.6claws90
373
374         * src/plugins/image_viewer/viewer.c
375                 image_viewer_show_mimepart(): 
376                 use procmime_mimeinfo_get_parameter() to get the file name
377
378 2003-11-24 [paul]       0.9.6claws89
379
380         * src/textview.c
381                 textview_show_mime_part(): rewrite text hint
382
383 2003-11-22 [paul]       0.9.6claws88
384
385         * sync with 0.9.7cvs5
386                 see ChangeLog 2003-11-21
387
388 2003-11-21 [paul]       0.9.6claws87
389
390         * src/mimeview.c
391                 define shortcut key 'o' for 'Open with...'
392
393 2003-11-21 [alfons]     0.9.6claws86
394
395         * src/messageview.c
396                 fix bug #383 'Deleting message from "separate message view" 
397                 uses local Trash folder'
398
399 2003-11-21 [christoph]  0.9.6claws85
400
401         * src/mimeview.c
402                 fix content-type guessing by name parameter when finding
403                 the correct viewer
404
405 2003-11-21 [alfons]     0.9.6claws84
406
407         * src/main.c
408                 no mail incorporation allowed with --offline param.
409                 fixes bug #374, "--offline ignored"
410
411 2003-11-20 [christoph]  0.9.6claws83
412
413         * src/mimeinfo.c
414                 use signed MimeInfo when checking the signature and not
415                 the selected one
416
417 2003-11-19 [alfons]     0.9.6claws82
418
419         * src/mainwindow.c
420                 fix crash when toggling separate views, patch submitted
421                 by Pawel Pekala <c0rn|AT|gazeta.pl>.
422                 fixes bug #342, "separate views  cause crash"
423
424 2003-11-19 [paul]       0.9.6claws81
425
426         * src/compose.c
427                 compose_redirect_write_headers_from_headerlist(): 
428                 add Resent-Cc: header (bug fix inherited from 0.9.7cvs3)
429                 
430         * src/main.c
431                 code cleanup (inherited from 0.9.7cvs4)
432                 
433         * tools/tb2sylpheed
434                 bugfix: added missing attribute-list start. submitted by
435                 Urke MMI
436
437 2003-11-19 [luke]       0.9.6claws80
438
439         * src/textview.c
440                 revert my last commit until I get time to fix it
441
442 2003-11-18 [christoph]  0.9.6claws79
443
444         * src/mimeview.[ch]
445                 check parent MimeInfos for signatures and display the
446                 result of the parent when found
447
448         * src/pgpmime.c
449                 o avoid NULL pointer warnings
450                 o use procmime_mimeinfo_get_parameter()
451
452         * src/sgpgme.c
453                 small text changes
454
455 2003-11-17 [luke]       0.9.6claws78
456
457         * src/textview.c
458                 add check for disguised URLs, fixing bug 57
459                 "Hidden URL in HTML Mails"
460
461 2003-11-16 [christoph]  0.9.6claws77
462
463         * src/procmime.c
464                 fix crash when parsing invalid Content-Type header
465
466 2003-11-16 [christoph]  0.9.6claws76
467
468         * src/pgpmime.c
469         * src/privacy.c
470         * src/procmime.c
471         * src/sgpgme.[ch]
472                 implement message decrypting
473
474         * src/rfc2015.c
475                 remove old code
476
477 2003-11-14 [luke]       0.9.6claws75
478
479         * src/mimeview.c
480                 fix a couple of problems that treated application/* and
481                 application/octet-stream the wrong way around
482                 (since 0.9.6claws10), causing "Open" to do nothing.
483
484 2003-11-14 [christoph]  0.9.6claws74
485
486         * src/messageview.c
487         * src/pgpmime.c
488         * src/privacy.[ch]
489                 prepare for message part decrypting
490
491         * src/sgpgme.c
492                 add output for expired signatures
493
494         * src/rfc2015.c
495                 remove some old code
496
497 2003-11-10 [christoph]  0.9.6claws73
498
499         * src/mimeview.c
500                 add "Full info" button for bad and warn signature status
501
502         * src/sgpgme.c
503                 generate full signature info like gpg's output
504                 (gpg -v --with-fingerprint --verify)
505
506 2003-11-10 [christoph]  0.9.6claws72
507
508         * src/mimeview.c
509         * src/pgpmime.c
510         * src/privacy.[ch]
511         * src/sgpgme.[ch]
512         * src/textview.[ch]
513                 o add code to view full signature info
514                 o do automatic signature checks
515
516 2003-11-10 [alfons]     0.9.6claws71
517
518         * src/summaryview.c
519                 don't crash when gtkut_font_load() returns invalid font (has
520                 something to do with locale settings)
521                 Patch submitted by David Chalmers <davidc|AT|ccmi.salk.edu>.
522
523 2003-11-09 [alfons]     0.9.6claws70
524
525         * src/procmime.c
526                 plug leak
527
528 2003-11-08 [luke]       0.9.6claws69
529
530         * src/summaryview.c
531                 fix some typos
532
533         * src/compose.c
534                 rewrite compose_attach_parts(), fixing various bugs mainly
535                 to do with re-editing.
536
537         * src/mimeview.c
538                 "save all" now only saves attachments with names/filenames
539
540 2003-11-04 [match]      0.9.6claws68
541
542         * src/ldapctrl.[ch]
543                 fix broken LDAP support.
544
545         * src/ldapquery.c
546                 remove printf's.
547
548 2003-11-04 [luke]       0.9.6claws67
549
550         * src/mimeview.c
551                 o  fixed bug 4 "focus lost on messages with attachments"
552                 o  fixed 'Save all' attachments for new mime changes
553                 o  right clicking on icons consistent with right clicking on
554                    mime tree
555                   - fixes a bug where wrong part is saved when you
556                     choose 'Save as' from popup menu
557                   - fixes bug 308 "No way to "save all" attachments"
558                 o  fixed a compiler warning.
559
560         * src/textview.c
561                 o  removed flickering in mime tree when using "n" and "p"
562                    shortcuts
563                 o  fixed bug where selecting the textview and pressing e.g.
564                    'y' causes sylpheed to respond twice.
565
566         * src/summaryview.c
567                 removed hard coding of * and ! shortcuts (which only served
568                 to cause problems if you tried to redefine the shortcuts)
569
570 2003-11-04 [luke]       0.9.6claws66
571
572         * src/plugins/image_viewer/viewer.c
573         * src/plugins/image_viewer/viewerprefs.c
574         * src/plugins/image_viewer/viewerprefs.glade
575                 o  allow toggling of image scaling by clicking on image
576                 o  respond to image's container widget resize
577
578         * src/procmime.c
579                 o  fix bad parsing of message when re-editing/viewing a
580                    message saved to the drafts folder
581
582 2003-11-02 [match]      0.9.6claws65
583
584         * src/browseldap.h
585                 fix if not building LDAP support.
586         * src/addrindex.c
587         * src/ldapquery.[ch]
588         * src/editldap.h
589                 include support for contains query. feature req 529354.
590
591 2003-11-02 [alfons]     0.9.6claws64
592
593         * src/browseldap.c
594                 fix build bustage if not compiling ldap support
595
596 2003-11-01 [match]      0.9.6claws63
597
598         * po/POTFILES.in
599         * src/Makefile.am
600         * src/addr_compl.[ch]
601         * src/addrbook.c
602         * src/addrcache.[ch]
603         * src/addrdefs.h        ** NEW **
604         * src/addressbook.c
605         * src/addressitem.h
606         * src/addrindex.[ch]
607         * src/addritem.h
608         * src/addrquery.[ch]
609         * src/ldapquery.[ch]
610         * src/ldapserver.[ch]
611                 refactor LDAP query mechanism.
612
613         * src/browseldap.[ch]   ** NEW **
614         * src/ldaplocate.[ch]   ** NEW **
615                 add feature to browse LDAP entry that was retrieved using
616                 an explicit LDAP search.
617
618 2003-11-01 [alfons]     0.9.6claws62
619
620         * src/prefs_gtk.c
621                 prefs_write_param(): fail when we see an invalid type; all the
622                 callers seem to handle this gracefully by reverting changes
623
624 2003-10-30 [christoph]  0.9.6claws61
625
626         * configure.ac
627         * ac/openssl.m4
628         * ac/spamassassin.m4
629         * src/Makefile.am
630                 use extra variables for all libraries to make sure plugins
631                 are only linked with libraries they really need. $LIBS is always
632                 added to the linking parameters, but we only what the libraries
633                 listed in the Makefile
634
635 2003-10-29 [paul]       0.9.6claws60
636
637         * src/mimeview.c
638                 don't use Subject for unknown part name
639
640 2003-10-29 [paul]       0.9.6claws59
641
642         * src/compose.c
643                 get name of attachment(s) when re-editing, fwd'ing or
644                 redirecting
645                 
646         * src/mimeview.c
647                 get name of attachment(s) when saving
648
649 2003-10-29 [hoa]        0.9.6claws58
650
651         * src/textview.c
652                 implemented multipart/alternative in MIME message viewer.
653
654 2003-10-28 [christoph]  0.9.6claws57
655
656         * configure.ac
657                 make sure MathML-Viewer is not built with the
658                 Gtk2 version of GtkMathView
659
660 2003-10-28 [paul]       0.9.6claws56
661
662         * sync with 0.9.7cvs1
663                 see ChangeLog 2003-10-28
664
665 2003-10-27 [alfons]     0.9.6claws55
666
667         * src/matcher_parser_parse.y
668         * src/gtk/colorlabel.c
669                 allow setting color label to 0 in filtering/processing rules
670                 (should fix bug 368, "Can't create a filter condition "colorlabel 0"") 
671
672 2003-10-26 [alfons]     0.9.6claws54
673
674         * src/summary_search.c
675                 fix misnomer and correct selecting initial search node  
676
677 2003-10-26 [christoph]  0.9.6claws53
678
679         * src/pgpmime.c
680         * src/sgpgme.c
681                 change display of signature info to use only name of
682                 signer, otherwise the text gets too long.
683
684         * src/procmime.c
685                 don't use MimeInfo's filename to generate tmp filename
686
687 2003-10-25 [christoph]  0.9.6claws52
688
689         * src/procmime.c
690                 fix message body searching
691
692 2003-10-25 [paul]       0.9.6claws51
693
694         * src/compose.c
695                 use g_basename rather than basename
696
697 2003-10-24 [christoph]  0.9.6claws50
698
699         * src/sgpgme.c
700                 change fetching of signature key's trust
701
702 2003-10-24 [paul]       0.9.6claws49
703
704         * po/sk.po
705                 update Slovak translation
706                 submitted by Andrej Kacian
707                 
708         * src/mainwindow.c
709                 remove unknown menu entry /File/Add mailbox/mbox...
710
711 2003-10-24 [hoa]        0.9.6claws48
712
713         * src/Makefile.am
714                 removed all references to mbox folders
715
716         * src/carray.[ch]               * REMOVED *
717         * src/chash.[ch]                * REMOVED *
718         * src/maillock.[ch]             * REMOVED *
719         * src/mailmbox.[ch]             * REMOVED *
720         * src/mailmbox_folder.[ch]      * REMOVED *
721         * src/mailmbox_parse.[ch]       * REMOVED *
722         * src/mailmbox_types.[ch]       * REMOVED *
723         * src/mbox_folder.[ch]          * REMOVED *
724                 remove implementation of mbox folders
725                 and old mailbox folder.
726                 mbox folder implementation will be added
727                 as a plugin so that implementation can be entirely
728                 synchronized with the files of the project they are
729                 extracted from (libEtPan!).
730         
731         * src/mainwindow.c
732         * src/folder.c
733         * src/folderview.[ch]
734         * src/procmsg.h         
735                 Disable as much code that references mbox folders
736                 as possible.
737                 Some UI thing still need to know that folder is mbox
738                 (when we have to enter the name of the mailbox and
739                 we want to add /var/mail/$USER).
740
741 2003-10-23 [christoph]  0.9.6claws47
742
743         * src/noticeview.c
744                 don't always display button when noticeview is made visible
745
746         * src/mimeview.c
747         * src/pgpmime.c
748         * src/privacy.[ch]
749         * src/sgpgme.[ch]
750                 get signature information from crypto system
751
752 2003-10-22 [paul]       0.9.6claws46
753
754         * po/es.po
755                 updated by Ricardo Mones Lastra
756
757 2003-10-22 [paul]       0.9.6claws45
758
759         * src/Makefile.am
760                 update to reflect the changes to the icons that
761                 happened in 0.9.6claws35
762
763 2003-10-22 [alfons]     0.9.6claws44
764         
765         * src/carray.h
766                 inline carray_count() 
767
768 2003-10-21 [alfons]     0.9.6claws43
769
770         * src/carray.h
771                 glib wrappers
772         * src/carray.c
773                 disable
774         * src/mailmbox.[ch]
775         * src/mailmbox_folder.c
776         * src/mailmbox_parse.c
777         * src/mailmbox_types.[ch]
778                 %s/uint32_t/guint
779
780 2003-10-21 [luke]       0.9.6claws42
781
782         * src/stock_pixmaps.[ch]
783         * src/mimeview.c
784         * src/pixmaps/mime_application_octet_stream.xpm         ** REMOVE **
785         * src/pixmaps/messageview_text.xpm                      ** REMOVE **
786                 o remove mime_application_octet_stream.xpm icon (it was never
787                   really needed)
788                 o remove redundant icon messageview_text.xpm
789
790         * src/mainwindow.c
791                 fix visibility of signature noticeview when toggling 'separate
792                 message view'
793
794 2003-10-21 [christoph]  0.9.6claws41
795
796         * src/procmime.c
797                 decode multipart and rfc822 mime parts to allow further
798                 parsing when required
799
800 2003-10-21 [christoph]  0.9.6claws40
801
802         * src/procmime.[ch]
803         * src/textview.c
804                 remove obsolete charset parameter in MimeInfo and fix
805                 TextView to use the charset from the parameter hash table
806
807         * src/plugins/dillo_viewer/Makefile.am
808         * src/plugins/trayicon/Makefile.am
809                 add OPENSSL_CFLAGS to fix building with using
810                 --with-openssl-* parameters
811
812 2003-10-21 [paul]       0.9.6claws39
813
814         * src/prefs_matcher.[ch]
815                 replace remnants of the old, renamed 'Execute' matchtype
816                 add a brief description to the Info window
817
818 2003-10-21 [hoa]        0.9.6claws38
819         
820         * src/Makefile.am
821         * src/carray.[ch]               * NEW *
822         * src/chash.[ch]                * NEW *
823         * src/folder.c
824         * src/maillock.[ch]             * NEW *
825         * src/mailmbox.[ch]             * NEW *
826         * src/mailmbox_folder.[ch]      * NEW *
827         * src/mailmbox_parse.[ch]       * NEW *
828         * src/mailmbox_types.[ch]       * NEW *
829                 implementation of mbox folder with unique message numbers
830
831                 made use of libEtPan! implementation of mbox for lower-layer.
832
833 2003-10-20 [alfons]     0.9.6claws37
834
835         * src/noticeview.c
836                 fix invalid argument warning
837         * src/pgpmime.c
838                 no in place variable
839
840 2003-10-20 [paul]       0.9.6claws36
841
842         * src/compose.[ch]
843           src/filtering.c
844           src/messageview.c
845                 fix crash when using Forward in Filtering when
846                 external editor option is set
847                 
848                 Patch submitted by Simon 'corecode' Schubert
849                 <corecode@corecode.ath.cx> 
850
851 2003-10-20 [paul]       0.9.6claws35
852
853         * src/pixmaps/mime_gpg_expired.xpm      ** REMOVED **
854           src/pixmaps/mime_gpg_failed.xpm       ** REMOVED **
855           src/pixmaps/mime_gpg_passed.xpm       ** REMOVED **
856           src/pixmaps/mime_gpg_signed.xpm       ** REMOVED **
857           src/pixmaps/mime_gpg_unknown.xpm      ** REMOVED **
858           src/pixmaps/privacy_expired.xpm       ** NEW FILE **
859           src/pixmaps/privacy_failed.xpm        ** NEW FILE **
860           src/pixmaps/privacy_passed.xpm        ** NEW FILE **
861           src/pixmaps/privacy_signed.xpm        ** NEW FILE **
862           src/pixmaps/privacy_unknown.xpm       ** NEW FILE **
863           src/pixmaps/privacy_warn.xpm          ** NEW FILE **
864           src/mimeview.c
865           src/stock_pixmap.[ch]
866                 replace mime_gpg_*.xpm icons with new privacy_*.xpm
867                 icons. add privacy_warn.xpm icon
868
869 2003-10-20 [hoa]  0.9.6claws34
870
871         * src/folder_item_prefs.[ch]
872         * src/prefs_folder_item.c
873         * src/main.c
874                 Added a property per folder to choose whether we 
875                 want to apply processing on it on startup or if we
876                 prefer to wait the folder selection to apply it.
877         
878         * src/messageview.c
879                 fixed C89 compatibility (for old compilers, for
880                 example gcc 2.95.x).
881
882 2003-10-17 [christoph]  0.9.6claws33
883
884         * src/mimeview.c
885         * src/noticeview.[ch]
886                 change noticeview icon to indicate signature status
887
888 2003-10-17 [christoph]  0.9.6claws32
889
890         * src/Makefile.am
891         * src/main.c
892         * src/mimeview.c
893         * src/noticeview.c
894         * src/pgpmime.[ch]                              ** NEW **
895         * src/privacy.[ch]
896         * src/rfc2015.c
897         * src/sgpgme.c                                  ** NEW **
898                 reimplement PGP/Mime signature checking (unfinished)
899
900 2003-10-15 [christoph]  0.9.6claws31
901
902         * src/procmime.[ch]
903                 fix procmime_get_text_content() and
904                 procmime_get_first_text_content()
905
906 2003-10-15 [christoph]  0.9.6claws30
907
908         * src/plugins/spamassassin/spamassassin_gtk.c
909         * src/plugins/spamassassin/spamassassin_gtk.glade
910                 fix timeout tooltip
911
912 2003-10-15 [paul]       0.9.6claws29
913
914         * src/messageview.c
915                 workaround for buggy smtp servers. on sending a
916                 return receipt strip the name part from the address
917                 when creating headers
918                 
919 2003-10-15 [paul]       0.9.6claws28
920
921         * sync with 0.9.7 release
922                 see ChangeLog 2003-10-15
923
924 2003-10-14 [christoph]  0.9.6claws27
925
926         * src/plugins/clamav/clamav_plugin.c
927                 fix clamav plugin
928
929 2003-10-14 [christoph]  0.9.6claws26
930
931         * src/compose.c
932         * src/mimeview.c
933         * src/procmime.[ch]
934         * src/rfc2015.c
935         * src/textview.c
936         * src/plugins/clamav/clamav_plugin.c
937                 use GNode to create the mime tree (some changes to functions
938                 that traverse the tree are just quick and dirty. Maybe we
939                 can find better solutions with g_node_*-functions)
940
941 2003-10-14 [luke]       0.9.6claws25
942
943         * src/mimeview.c
944                 fix a navigation bug (stupid typo of mine)
945
946 2003-10-14 [christoph]  0.9.6claws24
947
948         * src/textview.c
949                 fix missing last line in plain/text mails
950
951 2003-10-13 [luke]       0.9.6claws23
952
953         * src/summaryview.c
954                 fix bug 334 (part 1)
955
956 2003-10-13 [kov]        0.9.6claws22
957
958         * src/mimeview.c
959                 error checking when the user enters a non-directory at
960                 the file selection dialog.
961                 work-around for users entering directory location without
962                 adding a leading G_DIR_SEPARATOR.
963
964 2003-10-13 [luke]       0.9.6claws21
965
966         * src/compose.c
967                 error reporting for inserting files, including catching
968                 invalid characters for current locale/encoding
969
970 2003-10-13 [paul]       0.9.6claws20
971
972         * src/folderview.c
973                 fix bug #347 'subscribe newsgroups crashes'
974
975 2003-10-13 [paul]       0.9.6claws19
976
977         * src/compose.c
978                 when using 'Reply to all' include the 'send replies
979                 to' folder property
980                 
981         * po/ja.po
982                 update Japanese translation. submitted by Rui Hirokawa 
983                 <rui_hirokawa@ybb.ne.jp>        
984
985 2003-10-13 [hoa]        0.9.6claws18
986
987         * src/account.c
988         * src/compose.c
989         * src/messageview.c
990         * src/procheader.c
991         * src/procheader.h
992                 rename get_header_from_msginfo() into
993                 procheader_get_header_from_msginfo() so that we have a
994                 coherent exported naming.
995                 avoid parsing of header contained in a string via
996                 a newly written temporary file.
997
998         Patch submitted by Simon 'corecode' Schubert
999                 <corecode@corecode.ath.cx>
1000
1001 2003-10-12 [hoa]        0.9.6claws17
1002
1003         * src/filtering.c
1004         * src/filtering.h
1005         * src/matcher.c
1006         * src/matcher.h
1007         * src/matcher_parser_parse.y
1008         * src/prefs_filtering_action.c
1009                 added "stop" action : stop applying the filtering rules.
1010                 added "set score" and "increase/decrease score" actions.
1011                 That two last action replace the "change_score" action
1012                 introduced by alfons in 0.8.8claws85.
1013                 "set score" is to set a given score to the message.
1014                 "increase/decrease score" will increase or decrease the
1015                 score if the given value is respectively positive or
1016                 negative. If someone find a some better name for this last
1017                 rule, it can be modified.
1018
1019 2003-10-12 [paul]       0.9.6claws16
1020
1021         * AUTHORS
1022           po/ja.po
1023                 update Japanese translation. submitted by Rui Hirokawa 
1024                 <rui_hirokawa@ybb.ne.jp>
1025
1026 2003-10-12 [christoph]  0.9.6claws15
1027
1028         * src/procmime.c
1029                 fix crash caused by incorrect headers
1030
1031 2003-10-10 [christoph]  0.9.6claws14
1032
1033         * src/main.c
1034         * src/privacy.[ch]
1035         * src/rfc2015.[ch]
1036                 implement detection of signed message parts for rfc2015
1037
1038 2003-10-10 [thorsten]   0.9.6claws13
1039
1040         * src/mimeview.c
1041                 fix typo
1042
1043 2003-10-10 [christoph]  0.9.6claws12
1044
1045         * src/stock_pixmap.[ch]
1046         * src/pixmaps/mime_message.xpm                  ** NEW **
1047                 add a new icon for mime type "message"
1048
1049         * src/privacy.[ch]
1050         * src/procmime.[ch]
1051                 add crypto api
1052
1053         * src/mimeview.c
1054                 o use crypto api
1055                 o add icons for message type mime parts
1056
1057 2003-10-10 [christoph]  0.9.6claws11
1058
1059         * src/mainwindow.c
1060         * src/messageview.[ch]
1061         * src/mimeview.[ch]
1062         * src/procmime.[ch]
1063         * src/procmsg.[ch]
1064         * src/rfc2015.c
1065         * src/summaryview.c
1066         * src/textview.[ch]
1067                 o remove switching between TextView and MimeView in MessageView
1068                   (if required we can hide the icon box and the MimeView will
1069                    look exaxtly like the TextView)
1070                 o temporary remove signature and decrypting GPGME code
1071
1072 2003-10-09 [christoph]  0.9.6claws10
1073
1074         * src/action.c
1075         * src/compose.c
1076         * src/messageview.c
1077         * src/mimeview.c
1078         * src/procmime.[ch]
1079         * src/procmsg.c
1080         * src/rfc2015.c
1081         * src/textview.c
1082         * src/common/utils.[ch]
1083         * src/plugins/clamav/clamav_plugin.c
1084         * src/plugins/dillo_viewer/dillo_viewer.c
1085         * src/plugins/image_viewer/viewer.c
1086         * src/plugins/mathml_viewer/mathml_viewer.c
1087                 new mime parser (several things need fixing)
1088
1089 2003-10-09 [paul]       0.9.6claws9
1090
1091         * src/imap.c
1092                 a little more sync with 0.9.6cvs2 and a tidy up
1093
1094 2003-10-08 [paul]       0.9.6claws8
1095
1096         * sync with 0.9.6cvs2
1097                 see ChangeLog 2003-10-03
1098
1099 2003-10-05 [christoph]  0.9.6claws7
1100
1101         * src/summaryview.c
1102                 don't use flags to check if a message is in a news folder
1103
1104         (closes Bug 282 clicking on folder with copied Messages from News
1105          immediately after having copied them crashes Sylpheed-Claws)
1106
1107 2003-10-05 [christoph]  0.9.6claws6
1108
1109         * src/Makefile.am
1110         * src/progressdialog.[ch]               ** REMOVE **
1111         * src/gtk/Makefile.am
1112         * src/gtk/progressdialog.[ch]           ** NEW **
1113                 move progressdialog to gtk directory
1114
1115 2003-10-04 [christoph]  0.9.6claws5
1116
1117         * src/prefs_toolbar.c
1118         * src/gtk/prefswindow.c
1119                 remove widget_show_all for pages root widget
1120
1121         * src/plugins/spamassassin/spamassassin.[ch]
1122         * src/plugins/spamassassin/spamassassin_gtk.c
1123         * src/plugins/spamassassin/spamassassin_gtk.glade
1124                 add support for new libspamc transports
1125
1126 2003-10-04 [christoph]  0.9.6claws4
1127
1128         * src/plugins/spamassassin/libspamc.[ch]
1129         * src/plugins/spamassassin/spamassassin.c
1130         * src/plugins/spamassassin/utils.[ch]
1131                 update libspamc to version from SpamAssassin 2.60
1132
1133 2003-10-03 [christoph]  0.9.6claws3
1134
1135         * src/send_message.c
1136                 fix missing format string bug found by
1137                 Georgi Guninski <guninski@guninski.com>
1138
1139 2003-10-03 [paul]       0.9.6claws2
1140
1141         * po/zh_CN.po
1142                 update Simpilified Chinese translation, submitted by
1143                 Hansom Young
1144
1145 2003-10-02 [christoph]  0.9.6claws1
1146
1147         * src/imap.c
1148                 add UIDPLUS support for COPY and EXPUNGE
1149
1150 2003-10-02 [paul]       0.9.6claws
1151
1152         * 0.9.6claws released
1153
1154 2003-10-02 [paul]
1155
1156         * po/es.po
1157           po/sk.po
1158                 update Spanish and Slovak translations
1159                 submitted by Ricardo Mones Lastra and Andrej Kacian
1160  
1161 2003-10-02 [paul]       0.9.5claws43
1162
1163         * po/en_GB.po
1164                 update British English translation
1165
1166 2003-10-02 [paul]       0.9.5claws42
1167
1168         * po/hr.po
1169                 update Croatian translation, submitted by Dragan
1170
1171 2003-10-01 [paul]       0.9.5claws41
1172
1173         * po/pl.po
1174           po/sr.po
1175                 update Polish and Serbian translations, submitted by
1176                 Emil and Urke MMI
1177
1178 2003-10-01 [melvin]     0.9.5claws40
1179
1180         * po/fr.po
1181                 Updated French translations
1182
1183 2003-10-01 [melvin]     0.9.5claws39
1184
1185         * src/prefs_fonts.c
1186                 Fixed a Gtk warning
1187
1188         * src/plugins/dillo_prefs.c     
1189                 Quasi unnoticeable UI clean-up.
1190
1191 2003-10-01 [paul]
1192
1193         * tools/README
1194           tools/maildir2sylpheed.pl
1195                 bug fixes, rewrites, submitted by Matthias Förste 
1196                 <itsjustme@users.sourceforge.net>
1197
1198 2003-09-29 [paul]       0.9.5claws38
1199
1200         * src/inc.c
1201                 fix my coding carelessness
1202
1203 2003-09-29 [paul]       0.9.5claws37
1204
1205         * po/POTFILES.in
1206           src/Makefile.am
1207           src/main.c
1208           src/prefs_common.[ch]
1209           src/prefs_fonts.[ch]  ** NEW FILES **
1210                 move Font config options to Other Prefs/Display/Fonts
1211                 (user's current configuration is preserved)
1212
1213 2003-09-29 [paul]       0.9.5claws36
1214
1215         * src/inc.c
1216           src/prefs_account.c
1217                 allow 'local_mbox' value to point to either a directory 
1218                 (/var/mail -  default, new) or a file (/var/mail/username
1219                 - original)
1220
1221 2003-09-28 [paul]       0.9.5claws35
1222
1223         * src/rfc2015.c
1224                 on signature check, where key exists, print the
1225                 Key ID
1226
1227 2003-09-27 [alfons]     0.9.5claws34
1228
1229         * src/action.c
1230                 o make progress bar not fill/expand when resizing dialog
1231                 o use default fixed text font for actions output
1232
1233 2003-09-27 [paul]       0.9.5claws33
1234
1235         * src/prefs_common.[ch]
1236           src/procmsg.c
1237           src/send_message.c
1238                 remove External Program settings from Common Prefs/Send
1239                 as they are now unnecessary due to Local account settings.
1240                 plus a little tidying-up after 0.9.5claws31
1241
1242 2003-09-27 [paul]       0.9.5claws32
1243
1244         * src/prefs_account.c
1245                 o make correction to gui text:
1246                   'Local mailbox file' -> 'Local mailbox directory'
1247                 o give 'local_mbox' option a reasonable default value:
1248                   '/var/mail'
1249                 o use 'DEFAULT_SENDMAIL_CMD' as default 'mail_command'
1250                   value
1251
1252 2003-09-26 [paul]       0.9.5claws31
1253
1254         * src/inc.c
1255           src/prefs_common.[ch]
1256                 remove 'Incorporate from spool' common pref,
1257                 force creation of a 'Local' account
1258
1259 2003-09-26 [christoph]  0.9.5claws30
1260
1261         * src/folder.c
1262         * src/msgcache.c
1263                 add more NULL pointer checks
1264
1265 2003-09-25 [christoph]  0.9.5claws29
1266
1267         * src/folder.c
1268                 o don't fetch source message to get it's message id
1269                 o immediately scan dest folder when copying a message did not
1270                   return a new message number and not do it when the first message
1271                   without a new message number is found
1272
1273 2003-09-23 [christoph]  0.9.5claws28
1274
1275         * src/compose.c
1276                 fix generating of headers
1277
1278         (patch by David Relson <relson@osagesoftware.com>)
1279
1280 2003-09-23 [paul]       0.9.5claws27
1281
1282         * po/zh_CN.po
1283                 update Simplified Chinese translation. submitted by
1284                 Hansom Young
1285
1286 2003-09-23 [paul]       0.9.5claws26
1287
1288         * tools/Makefile.am
1289           tools/README
1290           tools/vcard2xml.py    ** NEW FILE **
1291                 add a script that converts an evolution vcard to
1292                 sylpheed's xml format
1293                 submitted by Bogdan Sumanariu <bsumanariu@one5.ro>
1294
1295 2003-09-22 [paul]       0.9.5claws25
1296
1297         * src/plugins/clamav/clamav_plugin.c
1298                 don't skip MULTIPART parts
1299
1300 2003-09-21 [christoph]  0.9.5claws24
1301
1302         * src/alertpanel.c
1303                 remove unneeded include
1304
1305         * src/folder.c
1306                 clean up copy/move mess with duplicated code
1307
1308         * src/imap.c
1309                 fix problem that sometimes the folder was not scanned
1310                 also it was changed
1311
1312 2003-09-21 [christoph]  0.9.5claws23
1313
1314         * src/Makefile.am
1315         * src/logwindow.[ch]                    ** REMOVE **
1316         * src/mainwindow.c
1317         * src/prefs_common.c
1318         * src/gtk/Makefile.am
1319         * src/gtk/logwindow.[ch]                ** ADD **
1320                 make logwindow prefs_common independent and move
1321                 it to gtk directory
1322
1323 2003-09-20 [christoph]  0.9.5claws22
1324
1325         * src/compose.c
1326                 add extra space for address code conversion
1327                 (4 * unconvered size could be too small for short headers)
1328
1329 2003-09-20 [christoph]  0.9.5claws21
1330
1331         * src/compose.c
1332                 increase temp buffer size when writing headers
1333
1334 2003-09-19 [darko]      0.9.5claws20
1335
1336         * src/compose.c
1337                 don't ignore value of 'Save copy of outgoing messages to
1338                 this folder instead of Sent' in message redirect
1339
1340 2003-09-17 [christoph]  0.9.5claws19
1341
1342         * src/compose.c
1343                 use ", " as address seperator for mail headers and pass whole
1344                 header line at once to compose_convert_header to make sure
1345                 it is correctly folded
1346
1347         (closes Bug 64 Problem when sending to many recipients)
1348
1349 2003-09-17 [hoa]        0.9.5claws18
1350         
1351         * src/matcher.[ch]
1352           src/matcher_parser_parse.y
1353           src/prefs_matcher.c
1354                 changed the keyword used for command execution in condition
1355                 keyword is changed from "execute" to "test"
1356                 so that it is not the same as the one used for action.
1357                 This will fix a bug when using filtering dialog.
1358                 All semantic in the code is also changed to reflect
1359                 the keyword change.
1360
1361 2003-09-17 [paul]
1362         
1363         * sync with 0.9.6 release
1364
1365 2003-09-17 [paul]       0.9.5claws17
1366
1367         * sync with 0.9.5cvs8
1368                 see ChangeLog 2003-09-16 and 2003-09-17
1369
1370 2003-09-16 [paul]       0.9.5claws16
1371
1372         * sync with 0.9.5cvs6
1373                 see ChangeLog 2003-09-16
1374
1375 2003-09-15 [paul]       0.9.5claws15
1376
1377         * sync with 0.9.5cvs5
1378                 see ChangeLog 2003-09-15
1379
1380 2003-09-14 [alfons]     0.9.5claws14
1381
1382         * src/inc.c
1383                 make "Go to inbox after receiving new mail" again;
1384                 regression of a sync, restored to sylpheed main 
1385                 behaviour. (misses still some bits)
1386
1387 2003-09-14 [alfons]     0.9.5claws13
1388
1389         * src/prefs_filtering_action.c
1390                 o add proper message if empty execute command line
1391                 o don't select first action item after registering a
1392                   new action to prevent (what seems to be a GTK) bug
1393                   #36, "filtering will only accept one action change 
1394                   per invocation".
1395
1396 2003-09-14 [alfons]     0.9.5claws12
1397
1398         * src/prefs_filtering.c
1399         * src/prefs_filtering_action.c
1400         * src/prefs_matcher.c
1401                 fix function signature for key_pressed_event signal handlers
1402
1403 2003-09-14 [alfons]     0.9.5claws11
1404
1405         * src/mainwindow.c
1406                 fix regression caused by fix for invalid bug #7
1407                 (should fix #246, "Multiple selections are deselected when 
1408                 moving from search window to main window")
1409                 
1410 2003-09-14 [alfons]     0.9.5claws10
1411         
1412         * src/actions.[ch]
1413         * src/filtering.[ch]
1414         * src/prefs_actions.c
1415                 allow `filtering actions` in actions; only for advanced users
1416                 right now: try for example, "%as{mark color 2}" 
1417         
1418 2003-09-13 [paul]       0.9.5claws9
1419         
1420         * po/pl.po
1421           po/zh_CN.po   ** NEW FILE **
1422                 update Polish translation, submitted by Emil 
1423                 <eminowbl@posejdon.wpk.p.lodz.pl>
1424                 add new Simplified Chinese translation, submitted by
1425                 Hansom Young <hansom_young@yahoo.com>
1426
1427 2003-09-12 [alfons]     0.9.5claws8
1428
1429         * src/summaryview.c
1430                 don't open separate message views when View | Separate message view
1431                 is active 
1432                 (please look carefully for any navigation regressions)
1433
1434 2003-09-11 [alfons]     0.9.5claws7
1435
1436         * src/mainwindow.c
1437                 make default message view, opened by View | Separate message 
1438                 view, look like a claws message view (which includes a menu
1439                 bar and a toolbar)
1440                 (fixes bug #298, "message view loses tool bar") 
1441
1442 2003-09-11 [christoph]  0.9.5claws6
1443
1444         * src/folderview.c
1445                 fix double deleting of newsgroup folders
1446
1447         (closes Bug 305 crash after deleting of a newsgroup)
1448
1449 2003-09-11 [paul]       0.9.5claws5
1450
1451         * src/rfc2015.c
1452           src/common/utils.h
1453                 more sync'ing from 0.9.5cvs2
1454
1455 2003-09-11 [christoph]  0.9.5claws4
1456
1457         * src/compose.c
1458         * src/rfc2015.c
1459         * src/common/utils.h
1460                 fix sync with 0.9.5cvs2
1461
1462 2003-09-11 [paul]       0.9.5claws3
1463
1464         * sync with 0.9.5cvs4
1465                 see ChangeLog 2003-09-11
1466
1467 2003-09-11 [paul]       0.9.5claws2
1468
1469         * sync with 0.9.5cvs2
1470                 see ChangeLog 2003-09-05
1471                 
1472 2003-09-11 [paul]       0.9.5claws1
1473
1474         * sync with 0.9.5cvs3
1475                 see ChangeLog 2003-09-10
1476
1477 2003-09-10 [paul]       0.9.5claws
1478
1479         * 0.9.5claws released
1480
1481 2003-09-10 [paul]       0.9.4claws78
1482
1483         * src/Makefile.am
1484                 add missing files
1485
1486 2003-09-10 [melvin]     0.9.4claws77
1487
1488         * po/fr.po
1489                 Updated French translations
1490
1491 2003-09-10 [paul]       0.9.4claws76
1492
1493         * po/es.po
1494           po/sk.po
1495           po/sr.po
1496                 update Spanish, Slovak, and Serbian translations.
1497                 submitted by Ricardo Mones Lastra, Andrej Kacian,
1498                 and Urke MMI
1499                 
1500         * AUTHORS
1501                 add translation team section
1502
1503 2003-09-09 [christoph]  0.9.4claws75
1504
1505         * src/folder.c
1506                 free item->prefs in folder_item_destroy
1507
1508 2003-09-09 [alfons]     0.9.4claws74
1509
1510         * src/folderview.c
1511                 o proper check for root node sorting
1512                 o remove unnecessary gtk_ctree_remove_node 
1513
1514         (should fix bug #300, "crash while moving folder")      
1515
1516 2003-09-08 [christoph]  0.9.4claws73
1517
1518         * src/folderview.c
1519                 o fix double adding of IMAP FolderItems to GtkCTree
1520                 o fix crash then mbox folder is removed
1521
1522 2003-09-08 [christoph]  0.9.4claws72
1523
1524         * src/folder.c
1525         * src/folderview.c
1526         * src/mainwindow.c
1527                 fix new folder notification
1528
1529         * src/mbox_folder.c
1530                 fix cache path
1531
1532 2003-09-08 [christoph]  0.9.4claws71
1533
1534         * src/compose.c
1535                 replace '\n' and '\r' before removing trailing spaces
1536
1537         * src/folder.[ch]
1538         * src/folderview.c
1539                 add information about new or removed items in folder tree change
1540                 notification and use this in folderview to add and remove only
1541                 the appected items and not refresh the whole tree
1542
1543 2003-09-07 [match]      0.9.4claws70
1544
1545         * src/Makefile.am
1546         * src/addr_compl.c
1547         * src/addressbook.c
1548         * src/addressitem.h
1549         * src/addrindex.c
1550         * src/addritem.c
1551         * src/addritem.h
1552         * src/addrquery.c                       ** NEW **
1553         * src/addrquery.h
1554         * src/ldapquery.c
1555         * src/ldapserver.c
1556         * src/stock_pixmap.c
1557         * src/stock_pixmap.h
1558         * src/pixmaps/address_search.xpm        ** NEW **
1559                 re-introduce Lookup button for LDAP 'static' searches.
1560
1561 2003-09-07 [alfons]     0.9.4claws69
1562         
1563         * src/summaryview.c
1564                 abandon setting usize for messageview because it gives layout problems
1565                 with the quick search bar and the headerview; fixes assorted UI glitches:
1566                 
1567                 o bug #148, "Toggling of quick-search bar reduces index view area" 
1568                 o bug #280, "Window resiizes for line length but does not revert"
1569
1570 2003-09-07 [christoph]  0.9.4claws68
1571
1572         * src/compose.c
1573                 o make sure we don't have any newlines in header values
1574                 o check custom headers for spaces and newlines and ignore
1575                   malformed header names
1576
1577 2003-09-06 [christoph]  0.9.4claws67
1578
1579         * src/folder.c
1580         * src/folderview.c
1581                 invoke notification hook for folder tree changes after append
1582                 and remove folder
1583
1584         (closes Bug 294 Crash while moving folder with many subdirectories)
1585
1586 2003-09-06 [christoph]  0.9.4claws66
1587
1588         * src/folder.c
1589                 destroy folder's MsgCache if FolderItem is removed to make sure
1590                 it is not saved when the FolderItem is destroyed
1591
1592 2003-09-06 [christoph]  0.9.4claws65
1593
1594         * src/plugins/clamav/clamav_plugin.c
1595                 fix copy & paste bug
1596
1597 2003-09-05 [christoph]  0.9.4claws64
1598
1599         * src/folder.c
1600         * src/messageview.[ch]
1601         * src/procmsg.[ch]
1602         * src/summaryview.c
1603                 extend MSGINFO_UPDATE_HOOK to send delete notifications. Used
1604                 by MessageView to clear it when the message is deleted. Should
1605                 work even if messages are deleted in MainWindow or by
1606                 processing.
1607
1608 2003-09-05 [alfons]     0.9.4claws63
1609
1610         * src/messageview.c
1611                 deleting a message in a message view frees its msginfo, make 
1612                 messageview_update_all() aware of that (should fix bug #293,
1613                 "deleting message caused crash")
1614
1615 2003-09-05 [melvin]     0.9.4claws62
1616
1617         * src/action.c
1618                 Improve synchronous action exit code (fixes 
1619                 a ~5 seconds delay after action exit on RedHat 9)
1620
1621 2003-09-04 [christoph]  0.9.4claws61
1622
1623         * src/compose.c
1624         * src/rfc2015.c
1625         * src/common/utils.[ch]
1626                 add util function to create mime boundary and use it
1627                 in compose and gpg code
1628
1629 2003-09-04 [alfons]     0.9.4claws60
1630
1631         * src/folder.c
1632                 source folder item's GNode should already have been freed in 
1633                 a previous call to src->folder->klass->remove_folder()
1634                 (should fix bug #287, "crash when moving folders")
1635
1636 2003-09-03 [thorsten]   0.9.4claws59
1637
1638         * src/plugins/spamassassin/spamassassin_gtk.c
1639                 fix compile error
1640
1641 2003-09-03 [christoph]  0.9.4claws58
1642
1643         * src/plugins/spamassassin/spamassassin.[ch]
1644         * src/plugins/spamassassin/spamassassin_gtk.c
1645                 add timeout config option
1646
1647 2003-09-03 [paul]       0.9.4claws57
1648
1649         * po/sk.po      ** NEW FILE **
1650                 add Slovak translation. Submitted by Andrej Kacian 
1651                 <andrej@kacian.sk>
1652
1653 2003-09-03 [paul]       0.9.4claws56
1654
1655         * src/plugins/clamav/clamav_plugin_gtk.c
1656                 gui tweaks: replace a label with a tooltip, modify the
1657                 text, use gtk_check_button_new(); instead of
1658                 gtk_check_button_new_with_label("");
1659
1660 2003-09-02 [alfons]     0.9.4claws55
1661
1662         * src/gtk/filesel.c
1663                 remember last used dir when attaching multiple files (should fix
1664                 bug #290, "Attach File does not remember directory")
1665
1666 2003-09-01 [paul]       0.9.4claws54
1667
1668         * po/es.po
1669                 updated by Ricardo Mones Lastra
1670
1671 2003-09-01 [alfons]     0.9.4claws53
1672
1673         * src/gtk/gtkaspell.[ch]
1674                 be pedantic and strict and use const gchar * instead of guchar *
1675
1676 2003-09-01 [alfons]     0.9.4claws52
1677
1678         * src/mainwindow.c
1679         * src/summaryviewc.
1680                 re-enable Save As when multiple messages are selected
1681
1682 2003-09-01 [paul]       0.9.4claws51
1683
1684         * src/textview.c
1685                 g_free(trimmed_uri);
1686
1687 2003-09-01 [paul]       0.9.4claws50
1688
1689         * sync with 0.9.4cvs13
1690                 see ChangeLog 2003-09-01
1691
1692 2003-09-01 [paul]       0.9.4claws49
1693
1694         * src/textview.c
1695                 trim uri before sending to the statusbar
1696                 fixes Bug 275 'Clicking on long URL wrapped onto two lines
1697                 in the message window causes main S-C window to enlarge 
1698                 past screen edges'
1699
1700 2003-09-01 [paul]       0.9.4claws48
1701
1702         * sync with 0.9.4cvs12
1703                 see ChangeLog 2003-09-01
1704
1705 2003-08-30 [christoph]  0.9.4claws47
1706
1707         * src/compose.c
1708         * src/folder_item_prefs.[ch]
1709         * src/prefs_folder_item.c
1710         * src/gtk/gtkaspell.[ch]
1711                 commit per folder dictionary patch by
1712                 Paul Evans <nerd@freeuk.com>
1713
1714 2003-08-30 [christoph]  0.9.4claws46
1715
1716         * src/plugins/spamassassin/spamassassin_gtk.c
1717         * src/plugins/spamassassin/spamassassin_gtk.glade
1718                 reduce GUI clutter by placing hints into tooltips
1719
1720 2003-08-30 [paul]       0.9.4claws45
1721
1722         * src/compose.c
1723                 add 'Content-Disposition: inline' to a text/plain
1724                 part when using PGP/MIME signing
1725
1726 2003-08-30 [paul]       0.9.4claws44
1727
1728         * src/prefs_common.c
1729           src/prefs_spelling.c
1730           src/prefs_spelling.glade
1731                 reduce GUI clutter by placing hints into tooltips
1732
1733 2003-08-29 [christoph]  0.9.4claws43
1734
1735         * configure.ac
1736                 fix bug found by Ivan Rayner <ivanr@sgi.com>
1737
1738         * src/stock_pixmap.c
1739                 change unecessary warning into a debug message
1740
1741         * src/plugins/clamav/Makefile.am
1742                 Fix error "-I$(CLAMAV_LIBS)"
1743
1744 2003-08-29 [christoph]  0.9.4claws42
1745
1746         * intl/Makefile.in
1747         * src/Makefile.am
1748         * src/matcher.h
1749         * src/common/Makefile.am
1750         * src/common/passcrypt.c
1751                 commit fixes and patches for some of the IRIX problems found by
1752                 Ivan Rayner <ivanr@sgi.com>
1753
1754 2003-08-29 [paul]       0.9.4claws41
1755
1756         * src/prefs_filtering.c
1757                 add 'Top' and 'Bottom' buttons, based on changes in
1758                 src/prefs_filter.c in 0.9.4cvs11.
1759
1760 2003-08-27 [christoph]  0.9.4claws40
1761
1762         * src/folderview.c
1763                 fix bug that the current summary settings were copied to the
1764                 wrong folder item, when the folder item prefs are opened.
1765                 Copying is not required because summary settings and
1766                 folder_item_prefs do not contain the same settings
1767
1768 2003-08-27 [thorsten]   0.9.4claws39
1769
1770         * src/imap.c
1771                 fix compile error
1772
1773 2003-08-26 [paul]       0.9.4claws38
1774
1775         * sync with 0.9.4cvs9
1776                 see ChangeLog 2003-08-26
1777
1778 2003-08-25 [paul]       0.9.4claws37
1779
1780         * sync with 0.9.4cvs8
1781                 see ChangeLog 2003-08-25
1782
1783 2003-08-24 [christoph]  0.9.4claws36
1784
1785         * src/prefs_filtering.c
1786                 shouldn't remove items from a GSList while iterating over the
1787                 list (makes cur invalid and cur->next not accessable)
1788
1789         (closes Bug 272 i deleted an folder and some seconds later sylpheed
1790          crashed)
1791
1792 2003-08-23 [christoph]  0.9.4claws35
1793
1794         * src/news.c
1795                 news folders should be scanned when opened
1796
1797 2003-08-22 [christoph]  0.9.4claws34
1798
1799         * src/prefs_folder_item.c
1800                 use macro to assign strings that always frees the old string
1801
1802         * src/gtk/gtkaspell.[ch]
1803                 add gtkaspell_set_dictionary_menu_active_item() to set active
1804                 item in dictionary option menu
1805
1806         * src/prefs_spelling.c
1807                 use gtkaspell_set_dictionary_menu_active_item() to select
1808                 dictionary
1809
1810 2003-08-21 [christoph]  0.9.4claws33
1811
1812         * src/folder.[ch]
1813         * src/imap.c
1814         * src/mbox_folder.c
1815         * src/mh.c
1816         * src/news.c
1817                 optimize folder system
1818
1819         * src/gtk/gtkstext.c
1820                 fix division by zero when font has 0 width for ' '
1821
1822 2003-08-21 [paul]       0.9.4claws32
1823
1824         * sync with 0.9.4cvs7
1825                 see ChangeLog 2003-08-20
1826
1827 2003-08-19 [paul]       0.9.4claws31
1828
1829         * src/common/defs.h
1830                 add the missing '/' to SYLDOC_MANUAL_HTML_INDEX and
1831                 SYLDOC_FAQ_HTML_INDEX.
1832         * src/manual.c
1833                 use LC_MESSAGES instead of LC_ALL to find the current
1834                 language
1835
1836           fixes Bug #281 'in src/manual.c URL for manuals and FAQ wrong'.
1837
1838 2003-08-19 [paul]       0.9.4claws30
1839
1840         * po/bg.po
1841                 updated by George Danchev
1842
1843 2003-08-18 [luke]       0.9.4claws29
1844         * src/mimeview.[ch]
1845         * src/gtk/gtkvscrollbutton.[ch]
1846                 o removed gtk_vscrollbutton_reset() (reasons: reduce 
1847                   dependencies; do it the GTK way; reduce code -14/+2 lines)
1848                 o removed horizontal separator between icons
1849
1850 2003-08-17 [christoph]  0.9.4claws28
1851
1852         * src/procmsg.c
1853                 no subject threading when the subject has no reply prefix
1854
1855 2003-08-16 [christoph]  0.9.4claws27
1856
1857         * src/mainwindow.c
1858                 remember and restore window sizes and position when the main
1859                 window is hidden or shown
1860
1861         (closes Bug 274 Window size in 0.9.4claws18 not remembered when
1862          minimised/reopened using trayicon)
1863
1864 2003-08-16 [paul]       0.9.4claws26
1865
1866         * src/crash.c
1867                 add #include "defs.h"
1868
1869 2003-08-16 [paul]       0.9.4claws25
1870
1871         * src/plugins/clamav/clamav_plugin.c
1872                 reword a debug_print
1873                 
1874         * src/plugins/dillo_viewer/dillo_prefs.c
1875                 cosmetic: change the labels' text, add tooltips, and
1876                 left-align the hint
1877
1878 2003-08-15 [christoph]  0.9.4claws24
1879
1880         * src/news.c
1881                 complete last change (forgot some changes)
1882
1883 2003-08-15 [christoph]  0.9.4claws23
1884
1885         * src/news.c
1886                 o check number of messages and don't return a 0 message
1887                   when no messages are available
1888                 o don't parse xref header anymore
1889
1890         (closes Bug 203 I'm not getting any news)
1891
1892 2003-08-15 [paul]       0.9.4claws22
1893
1894         * src/common/defs.h
1895           src/crash.c
1896                 update and define claws bugzilla location
1897
1898 2003-08-15 [paul]       0.9.4claws21
1899
1900         * po/ru.po
1901                 update submitted by Ruslan N. Balkin
1902
1903 2003-08-14 [christoph]  0.9.4claws20
1904
1905         * src/procmsg.c
1906                 fix search for oldest node in subject threading
1907
1908 2003-08-14 [christoph]  0.9.4claws19
1909
1910         * src/procmsg.c
1911         * src/common/utils.h
1912                 add possibility to check all nodes with the same subject for
1913                 subject threading, not only the oldest node. Should not break
1914                 threads anymore if the oldest node is thread_by_subject_max_age
1915                 days older then parent, because it can now find a child of
1916                 oldest node as new parent.
1917
1918 2003-08-11 [christoph]  0.9.4claws18
1919
1920         * src/plugins/spamassassin/spamassassin.c
1921                 run spam check in background process
1922
1923 2003-08-10 [alfons]     0.9.4claws17
1924
1925         * src/summaryview.c
1926                 make `Select All' sensitive too
1927
1928 2003-08-10 [christoph]  0.9.4claws16
1929
1930         * src/imap.c
1931                 add more checks in imap_close
1932
1933 2003-08-09 [alfons]     0.9.4claws15
1934
1935         * src/prefs_spelling.c
1936                 no spell checking UI if not requested
1937
1938 2003-08-09 [alfons]     0.9.4claws14
1939
1940         * src/gtk/prefswindow.c
1941                 make it compile
1942
1943 2003-08-09 [christoph]  0.9.4claws13
1944
1945         * src/prefs_spelling.c
1946         * src/gtk/prefswindow.[ch]
1947         * src/plugins/clamav/clamav_plugin_gtk.c
1948         * src/plugins/spamassassin/spamassassin_gtk.c
1949                 sort prefs pages by heighest weight in tree
1950
1951 2003-08-09 [paul]       0.9.4claws12
1952
1953         * sync with 0.9.4cvs6
1954                 see ChangeLog 2003-08-07
1955                 
1956         * AUTHORS
1957                 add Leandro and Luke to claws-branch section
1958
1959 2003-08-09 [christoph]  0.9.4claws11
1960
1961         * src/gtk/Makefile.am
1962         * src/gtk/colorsel.[ch]                 ** NEW **
1963                 create a color selection dialog that can be used as a simple
1964                 function call with it's own gtk main loop like filesel.[ch]
1965
1966         * src/Makefile.am
1967         * src/main.c
1968         * src/prefs_common.c
1969         * src/prefs_spelling.[ch]               ** NEW **
1970         * src/prefs_spelling.glade              ** NEW **
1971         * src/gtk/gtkutils.[ch]
1972                 move "Spell Checker" prefs to new prefs dialog
1973
1974         * src/prefs_folder_item.c
1975                 use new colorsel dialog
1976
1977 2003-08-08 [paul]       0.9.4claws10
1978
1979         * src/inc.c
1980                 clear the progress bar unconditionally
1981
1982 2003-08-08 [paul]       0.9.4claws9
1983
1984         * sync with 0.9.4cvs4
1985                 see ChangeLog 2003-07-31
1986
1987 2003-08-07 [christoph]  0.9.4claws8
1988
1989         * configure.ac
1990                 fix bug in image viewer plugin part
1991
1992         * src/imap.c
1993                 don't execute close command if the folder item is not selected
1994
1995 2003-08-07 [hoa]        0.9.4claws7
1996
1997         * src/filtering.[ch]
1998         * src/matcher_parser.h
1999         * src/matcher_parser_parse.y
2000                 can define several actions for each filtering rule
2001                 can import old versions of filtering rules
2002
2003         * src/prefs_filtering.c
2004                 call to a new dialog box to define actions
2005
2006         * src/prefs_filtering_action.[ch]
2007                 dialog box to define actions for filtering rules
2008
2009 2003-08-06 [christoph]  0.9.4claws6
2010
2011         * src/imap.c
2012                 make sure source folder is selected when copying messages
2013
2014 2003-08-06 [christoph]  0.9.4claws5
2015
2016         * sync with 0.9.4cvs2
2017                 see ChangeLog 2003-07-29                
2018
2019 2003-08-05 [paul]       0.9.4claws4
2020
2021         * sync with 0.9.4cvs3
2022                 see ChangeLog 2003-07-30
2023
2024 2003-08-04 [match]      0.9.4claws3
2025
2026         * po/POTFILES.in
2027                 export of LDIF files.
2028
2029 2003-08-04 [match]      0.9.4claws2
2030
2031         * src/ldif.[ch]
2032                 support for export LDIF. documented.
2033         * src/importldif.[ch]
2034         * src/exportldif.[ch]
2035                 add tooltips. documented.
2036         * src/exphtmldlg.[ch]
2037         * src/common/xmlprops.[ch]
2038                 documented.
2039         * src/exportldif.[ch]                   ** NEW **
2040         * src/expldifdlg.[ch]                   ** NEW **
2041         * src/addressbook.[ch]
2042         * src/Makefile.am
2043                 export of LDIF files.
2044                 documented.
2045
2046 2003-08-04 [christoph]  0.9.4claws1
2047
2048         * .cvsignore
2049         * Makefile.am
2050         * configure.ac
2051         * sylpheed-claws.pc.in                  ** NEW **
2052         * src/Makefile.am
2053         * src/common/Makefile.am
2054         * src/gtk/Makefile.am
2055                 install sylpheed header files in $(pkgincludedir) and create a
2056                 pkg-config file to allow building a plugin without the source
2057                 package
2058
2059 2003-08-04 [paul]       0.9.4claws
2060
2061         * version 0.9.4claws
2062
2063 2003-08-04 [paul]       0.9.3claws97
2064
2065         * po/es.po
2066                 update Spanish translation. Submitted by Ricardo
2067                 Mones Lastra.
2068
2069 2003-08-03 [paul]       0.9.3claws96
2070
2071         * po/hr.po
2072           po/sr.po
2073                 update Croatian and Serbian translations. Submitted by
2074                 Dragan and Urke MMI respectively
2075
2076 2003-08-03 [alfons]     0.9.3claws95
2077
2078         * src/summaryview.c
2079                 mark flag has precedence over important flag - seems
2080                 to have been changed in sync of 0.9.3claws45. this fixes
2081                 a regression where messages that were scored as important
2082                 don't show their mark flags. (using the same column for
2083                 both importance as mark flags is the real problem
2084                 ofcourse)
2085
2086 2003-08-03 [melvin]     0.9.3claws94
2087
2088         * po/fr.po
2089                 Updated French translations.
2090
2091 2003-08-03 [melvin]     0.9.3claws93
2092
2093         * src/Makefile.am
2094                 Fixed typo introduced after 0.9.3claws92 
2095                 that prevented compilation
2096                 Updated to use AM_CPPFLAGS and AM_YFLAGS instead of
2097                 CPPFLAGS and YFLAGS to allow user setting these.
2098         * src/common/Makefile.am
2099         * src/gtk/Makefile.am
2100         * src/plugins/clamav/Makefile.am
2101         * src/plugins/demo/Makefile.am
2102         * src/plugins/dillo_viewer/Makefile.am
2103         * src/plugins/image_viewer/Makefile.am
2104         * src/plugins/mathml_viewer/Makefile.am
2105         * src/plugins/spamassassin/Makefile.am
2106         * src/plugins/trayicon/Makefile.am
2107         * src/plugins/trayicon/libeggtrayicon/Makefile.am
2108                 Updated to use AM_CPPFLAGS and AM_YFLAGS instead of
2109                 CPPFLAGS and YFLAGS to allow user setting these.
2110
2111 2003-08-02 [christoph]  0.9.3claws92
2112
2113         * configure.ac
2114                 o rearrange plugin tests
2115                 o add test for clamav.h to ClamAV tests
2116
2117 2003-08-02 [luke]       0.9.3claws91
2118
2119         * src/mimeview.c
2120                 o fixed appearance of icon list when toggling back from the 
2121                   ctree
2122                 o toggling of icons using the keyboard works correctly
2123                 o fixed all other keyboard shortcuts to work when icons are
2124                   active
2125         
2126         * src/messageview.c
2127                 o fixed bug 4 - focus lost when changing messageview view type
2128
2129 2003-08-02 [christoph]  0.9.3claws90
2130
2131         * src/common/hooks.c
2132                 fix crash when pointer stored in hash table could get invalid
2133                 when a plugin is unloaded
2134
2135 2003-08-01 [christoph]  0.9.3claws89
2136
2137         * configure.ac
2138                 o try to build all plugins (except spamassassin) by default
2139                 o don't build a plugin if a dependency check fails
2140
2141         * src/common/hooks.c
2142                 fix warning
2143
2144 2003-08-01 [match]      0.9.3claws88
2145
2146         * src/importldif.c
2147                 allow single click field selection. document code.
2148
2149 2003-08-01 [christoph]  0.9.3claws87
2150
2151         * src/plugins/clamav/clamav_plugin.c
2152         * src/plugins/clamav/clamav_plugin_gtk.c
2153         * src/plugins/dillo_viewer/dillo_viewer.c
2154         * src/plugins/image_viewer/plugin.c
2155         * src/plugins/mathml_viewer/mathml_viewer.c
2156         * src/plugins/spamassassin/spamassassin.c
2157         * src/plugins/spamassassin/spamassassin_gtk.c
2158         * src/plugins/trayicon/trayicon.c
2159                 add version check to all plugins
2160
2161 2003-08-01 [hoa]        0.9.3claws86
2162
2163         * src/prefs_filtering.c
2164                 fixed a cosmetic bug, during creation of dialog box,
2165                 wrong widgets were shown after creation.
2166
2167 2003-08-01 [luke]       0.9.3claws85
2168
2169         * src/mainwindow.c
2170                 o fixed visibility of icons/mimeview after toggling separate
2171                   message/folder view (factored out some similar code too).
2172
2173
2174 2003-07-31 [alfons]     0.9.3claws84
2175
2176         * src/mimeview.c
2177                 tweak icon box UI a bit more, now allowing right-clicks actions
2178                 getting the relevant mime data too; should fix #250, "Can't save 
2179                 attachments sometimes".
2180
2181 2003-07-30 [alfons]     0.9.3claws83
2182
2183         * src/compose.c
2184                 don't do auto-save-draft inside key press handler, but rather
2185                 schedule it half of a second later; should fix #67, "autosave 
2186                 make re-rediting message crazy"
2187
2188 2003-07-30 [christoph]  0.9.3claws82
2189
2190         * src/plugins/trayicon/trayicon.c
2191                 process pending events before unloading the plugin
2192
2193         (closes Bug 196 Unloading Trayicon plugin crashes Sylpheed-Claws)
2194
2195 2003-07-30 [alfons]     0.9.3claws81
2196
2197         * src/common/hooks.c
2198                 parameter 2 of g_hook_destroy() should really be a hook id
2199
2200 2003-07-30 [alfons]     0.9.3claws80
2201
2202         * src/common/plugin.c
2203                 fix a possibly harmful function signature mismatch 
2204                 for plugin_done
2205
2206 2003-07-30 [alfons]     0.9.3claws79
2207
2208         * src/common/hooks[.ch]
2209                 const correctness
2210
2211 2003-07-30 [darko]      0.9.3claws78
2212
2213         * src/summaryview.c
2214                 make it compile again
2215
2216 2003-07-30 [luke]       0.9.3claws77
2217
2218         * src/crash.c
2219         * src/main.c
2220                 o added/moved signal handlers for SIGTERM (normal kill command) 
2221                   and SIGINT (ctl-c) to be used even without 
2222                   --enable-crash-dialog, fixing bug 166
2223
2224         * src/summaryview.c
2225                 o rewrote menu sensitivity code as per mainwindow.c, fixing 
2226                   bug 227
2227
2228         * src/mainwindow.c
2229                 o changed sensitivity condition for 'Next new' and 'Next 
2230                   unread', fixing bug 8
2231
2232 2003-07-29 [alfons]     0.9.3claws76
2233
2234         * src/common/utils.[ch]
2235                 add generate_msgid()
2236         * src/messageview.c
2237                 save ack'ed RRR; fixes #205, "return receipt is not saved in
2238                 sent folder".
2239
2240 2003-07-29 [alfons]     0.9.3claws75
2241
2242         * src/messageview.c
2243                 fix a memleak (claws-only)
2244
2245 2003-07-29 [alfons]     0.9.3claws74
2246
2247         * src/mimeview.[ch]
2248         * src/gtk/gtkvscrollbutton.[ch]
2249                 fix UI glitch where mime icon toolbox' scroll position is not 
2250                 reset after switching to another message
2251                 
2252
2253 2003-07-29 [paul]       0.9.3claws73
2254
2255         * src/prefs_folder_item.c
2256                 split the prefs into 2 separate pages
2257
2258 2003-07-29 [paul]       0.9.3claws72
2259
2260         * src/compose.c
2261                 prepend "\n\n" to a signature without a separator too
2262
2263 2003-07-29 [paul]       0.9.3claws71
2264
2265         * src/compose.c
2266                 fix bug where changing to an account without an auto-sig
2267                 from an initial account without an auto-sig would insert 
2268                 2 blank lines at the cursor point
2269                 fix bug where changing to an account with an auto-sig
2270                 from an initial account without an auto-sig would insert
2271                 the sig at the cursor point
2272
2273 2003-07-29 [paul]       0.9.3claws70
2274
2275         * src/folderview.c
2276                 use the colour from the folder pref unless the folder
2277                 has new messages
2278
2279 2003-07-29 [alfons]     0.9.3claws69
2280
2281         * src/procmsg.[ch]
2282         * src/messageview.c
2283         * src/procheader.c
2284                 rewrite return receipt request work a little bit (the former 
2285                 implementation presumably depended too much on the UI setting
2286                 flags). (we're losing the old pending flag.) 
2287
2288 2003-07-28 [christoph]  0.9.3claws68
2289
2290         * src/folder.c
2291         * src/imap.c
2292         * src/mh.c
2293         * src/procmsg.[ch]
2294                 fix copy to IMAP folder from other folder
2295
2296 2003-07-28 [christoph]  0.9.3claws67
2297
2298         * src/procmsg.c
2299                 fix sync of procmsg_get_message_file_list
2300
2301 2003-07-28 [christoph]  0.9.3claws66
2302
2303         * sync with 0.9.3cvs14
2304                 see ChangeLog 2003-07-18
2305         * sync with 0.9.3cvs17
2306                 see ChangeLog 2003-07-23
2307
2308         (closes Bug 234 segmentation fault after sending out mail via
2309          smtp(auth))
2310
2311 2003-07-28 [paul]       0.9.3claws65
2312
2313         * po/es.po
2314                 update Spanish translation, submitted by Ricardo Mones
2315                 Lastra
2316
2317 2003-07-28 [christoph]  0.9.3claws64
2318
2319         * src/folder.[ch]
2320         * src/imap.c
2321         * src/mh.c
2322                 return new message numbers as a GRelation instead of a GSList
2323                 that has to be in the same order as the input list. A list
2324                 would make it hard for IMAP to optimize oepration by sorting
2325                 the input list. The returned list would have to be reordered
2326                 to match the same order that input list has.
2327
2328         * src/gtk/gtkaspell.c
2329                 fix missing return value, could cause a crash when garbage is
2330                 on the stack that is used as the expected return value
2331
2332 2003-07-28 [paul]       0.9.3claws63
2333
2334         * sync with 0.9.4cvs1
2335                 see ChangeLog 2003-07-28
2336
2337 2003-07-27 [alfons]     0.9.3claws62
2338
2339         * src/mimeview.c
2340                 tweak it more to make icon list act like a check button group
2341
2342 2003-07-27 [christoph]  0.9.3claws61
2343
2344         * sync with 0.9.3cvs20
2345                 see ChangeLog 2003-07-25
2346
2347 2003-07-27 [paul]       0.9.3claws60
2348
2349         * src/procmsg.c
2350                 re-commit changes from 0.9.3claws58 -
2351                 accidently removed in 0.9.3claws59
2352
2353 2003-07-27 [paul]       0.9.3claws59
2354
2355         * src/procmsg.[ch]
2356                 a sync from 0.9.3cvs17
2357                 see ChangeLog 2003-07-23
2358
2359 2003-07-27 [alfons]     0.9.3claws58
2360
2361         * src/procmsg.c
2362                 add missing header members to MsgInfo; fixes the problem of 
2363                 not displaying X-Faces, as noticed by Ricardo Mones
2364
2365 2003-07-26 [christoph]  0.9.3claws57
2366
2367         * sync with 0.9.3cvs18
2368                 see ChangeLog 2003-07-24
2369
2370 2003-07-26 [christoph]  0.9.3claws56
2371
2372         * sync with 0.9.3cvs17
2373                 see ChangeLog 2003-07-23
2374
2375 2003-07-26 [christoph]  0.9.3claws55
2376
2377         * src/folder.[ch]
2378         * src/imap.c
2379         * src/mbox_folder.c
2380         * src/mh.c
2381         * src/news.c
2382                 add support for copy function that copy multiple messages
2383                 (not implemented yet)
2384
2385         * src/summaryview.c
2386                 add missing return value
2387
2388 2003-07-26 [paul]       0.9.3claws54
2389
2390         * tools/multiwebsearch.pl
2391                 do whitespace substitution before passing the string
2392                 to the browser. fixes bug with browsers that don't
2393                 do whitespace conversion themselves.
2394
2395 2003-07-25 [christoph]  0.9.3claws53
2396
2397         * src/folder.[ch]
2398         * src/imap.c
2399         * src/mh.c
2400                 rewrite adding of multiple messages to a folder for
2401                 claws' folder system
2402
2403 2003-07-25 [luke]       0.9.3claws52
2404
2405         * src/mimeview.c
2406                 o icon toggles set correctly on leaving ctree mimeview
2407
2408 2003-07-25 [paul]       0.9.3claws51
2409
2410         * partial sync with 0.9.3cvs21 [src/main.c]
2411                 see ChangeLog 2003-07-25
2412
2413 2003-07-24 [paul]       0.9.3claws50
2414
2415         * tools/maildir2sylpheed.pl
2416                 fix typo
2417
2418 2003-07-24 [paul]       0.9.3claws49
2419
2420         * src/mimeview.c
2421                 increase the gutter size of paned so that the panes
2422                 can be resized
2423                 
2424         * src/plugins/demo/demo.c
2425                 squeeze in another typo fix
2426
2427 2003-07-24 [paul]       0.9.3claws48
2428
2429         * src/plugins/demo/demo.c
2430           src/prefs_account.c
2431                 small changes to the English
2432                 
2433         * src/pixmaps/mime_application_octect_stream.xpm        ** REMOVED **
2434           src/pixmaps/mime_application_octet_stream.xpm         ** NEW FILE **
2435           src/Makefile.am
2436           src/stock_pixmap.c
2437                 rename the misspelled icon
2438
2439 2003-07-23 [alfons]     0.9.3claws47
2440
2441         * src/mimeview.c
2442                 make icon list look like a list of toggles
2443
2444 2003-07-23 [luke]       0.9.3claws46
2445
2446         * src/pixmaps/mimeview_gpg_expired.xpm
2447         * src/pixmaps/mimeview_gpg_failed.xpm
2448         * src/pixmaps/mimeview_gpg_passed.xpm
2449         * src/pixmaps/mimeview_text_html.xpm
2450         * src/pixmaps/mimeview_image.xpm
2451                 o all icons the same size
2452
2453         * src/mimeview.[ch]
2454                 o mimeview ctree arranged vertically above the viewer
2455                 o icons changed to buttons
2456                 o can use keyboard to select an icon (Enter)
2457                 o resize icon list to width of icons
2458
2459         *  src/gtk/gtkvscrollbutton.c
2460                 o sensitivity of buttons reacts to position
2461
2462 2003-07-23 [christoph]  0.9.3claws45
2463
2464         * sync with 0.9.3cvs14 (incomplete)
2465                 see ChangeLog 2003-07-17
2466
2467 2003-07-23 [alfons]     0.9.3claws44
2468
2469         * src/folder.c
2470         * src/procmsg.h
2471                 sync with my local tree to restore some claws-only things
2472
2473 2003-07-23 [paul]       0.9.3claws43
2474
2475         * src/pixmaps/mime_gpg_expired.xpm      ** NEW FILE **
2476           src/pixmaps/mime_gpg_unknown.xpm      ** NEW FILE **
2477           src/Makefile.am
2478           src/mimeview.c
2479           src/procmime.h
2480           src/rfc2015.c
2481           src/stock_pixmap.[ch]
2482                 indicate missing keys and expired sigs/keys
2483                 in mime view column
2484
2485 2003-07-23 [paul]       0.9.3claws42
2486
2487         * src/compose.c
2488                 Redirect fixes: enable automatic account selection and
2489                 do not append signature to message on changing account
2490                 fixes Bug[s] #248
2491
2492 2003-07-23 [paul]       0.9.3claws41
2493
2494         * sync with 0.9.3cvs16
2495                 see ChangeLog 2003-07-23
2496
2497 2003-07-23 [alfons]     0.9.3claws40
2498
2499         * src/inc.c
2500                 give progress dialog a main window, and give it the first 
2501                 one (presumably the only one). fixes bug #247, "segfault on 
2502                 pop-before-smtp" 
2503
2504 2003-07-22 [alfons]     0.9.3claws39
2505
2506         * src/summaryview.c
2507                 shift-space scrolls up
2508
2509 2003-07-22 [paul]       0.9.3claws38
2510
2511         * sync with 0.9.3cvs15
2512                 see ChangeLog 2003-07-22
2513
2514 2003-07-20 [alfons]     0.9.3claws37
2515
2516         * src/compose.c
2517                 put menu inside #ifdef USE_ASPELL..#endif
2518
2519 2003-07-20 [christoph]  0.9.3claws36
2520
2521         * src/procmsg.c
2522                 fix wrong flags in MsgInfo returned by
2523                 procmsg_msginfo_get_full_info()
2524
2525         (closes Bug 221 Deleting messages from the Message View gives incorrect
2526          new/unread message counts in the folder view)
2527
2528         * src/plugins/spamassassin/spamassassin_gtk.c
2529                 add gettext macro for prefs page title
2530
2531 2003-07-20 [paul]       0.9.3claws35
2532
2533         * src/mimeview.c
2534                 redraw icon list on signature check
2535
2536 2003-07-20 [christoph]  0.9.3claws34
2537
2538         * src/Makefile.am
2539         * src/account.c
2540         * src/folder.[ch]
2541         * src/folder_item_prefs.[ch]            ** NEW **
2542         * src/folderview.c
2543         * src/mainwindow.c
2544         * src/mh.c
2545         * src/prefs_gtk.c
2546         * src/prefs_scoring.c
2547         * src/summaryview.c
2548         * src/prefs_folder_item.[ch]
2549                 o seperate FolderItemPrefs (formerly PrefsFolderItem) and the
2550                   Properties dialog
2551                 o use prefswindow for folder properties
2552
2553         * src/gtk/prefswindow.[ch]
2554                 change implementation to use an invisible notebook instead
2555                 of unparenting widgets
2556
2557 2003-07-20 [christoph]  0.9.3claws33
2558
2559         * src/compose.h
2560         * src/folder.c
2561         * src/folderview.h
2562         * src/headerview.h
2563         * src/prefs_filtering.h
2564         * src/prefs_folder_item.[ch]
2565         * src/procmime.h
2566         * src/procmsg.h
2567         * src/summaryview.h
2568                 clean up header mess
2569                 (always use 1. typedefs, 2. #includes, 3. structures)
2570
2571         * src/common/version.h.in
2572                 add casts for constants
2573
2574         * src/plugins/demo/demo.c
2575                 fix typo
2576
2577         * src/plugins/spamassassin/spamassassin.c
2578                 remove unused variable
2579
2580 2003-07-20 [alfons]     0.9.3claws32
2581
2582         * src/mimeview.c
2583                 o make icon buttons respond on left click
2584                 o minor cosmetic change
2585
2586 2003-07-19 [luke]       0.9.3claws31
2587
2588         * src/mimeview.[ch]
2589         * src/gtk/gtkvscrollbutton.c
2590         * src/messageview.c
2591                 o improved mimeview behaviour when selecting a new message
2592                 o plus code cleanups to remove compile warnings
2593
2594
2595 2003-07-19 [alfons]     0.9.3claws30
2596
2597         * src/procmsg.c
2598         * src/compose.c
2599         * src/common/utils.[ch]
2600                 subject_get_reply_prefix_length() <- subject_get_prefix_length()
2601
2602 2003-07-19 [alfons]     0.9.3claws29
2603
2604         * src/prefs_folder_item.c
2605                 reinit "legacy" tmp_prefs, so we don't free nor use invalid 
2606                 string pointers
2607
2608 2003-07-19 [luke]       0.9.3claws28
2609
2610         * src/messageview.c
2611         * src/mimeview.[ch]
2612         * src/procmime.h
2613         * src/rfc2015.c
2614         * src/stock_pixmap.[ch]
2615         * src/gtk/Makefile.am
2616         * src/Makefile.am
2617         * src/gtk/gtkvscrollbutton.[ch]         ** NEW **
2618         * src/pixmaps/mime_*.xpm                ** NEW **
2619                 o mimeview rearrangement with a new icon shortcut bar
2620
2621 2003-07-19 [alfons]     0.9.3claws27
2622
2623         * src/folderview.c
2624                 o plug leaking nodes_to_recollapse
2625                 o add folderview_recollapse_all_nodes() (not used yet)
2626
2627 2003-07-19 [alfons]     0.9.3claws26
2628
2629         * src/compose.c
2630         * src/common/utils.c
2631                 honour #240 "Better SUBJECT handling" by cleaning the prefix
2632                 for both forwarding as replying
2633
2634 2003-07-18 [christoph]  0.9.3claws25
2635
2636         * configure.ac
2637         * src/common/sylpheed.[ch]
2638         * src/common/version.h.in
2639                 add version in numeric form to allow easy comparison
2640
2641         * src/plugins/demo/demo.c
2642                 add version check
2643                 - sylpheed version > plugin version => never allowed, sylpheed
2644                   could contain unknown API changes
2645                 - sylpheed version < minimum version required => don't load,
2646                   API required not available (if linking does not fail)
2647
2648 2003-07-18 [alfons]     0.9.3claws24
2649         
2650         * src/common/plugin.[ch]
2651                 const correctness
2652
2653 2003-07-18 [christoph]  0.9.3claws23
2654
2655         * src/common/hooks.c
2656                 fix crash when hooks where unregisted
2657
2658         * src/plugins/trayicon/trayicon.c
2659                 unregister detroy signal before destroying the widget
2660                 (still crashes when the plugin is unloaded)
2661
2662 2003-07-18 [alfons]     0.9.3claws22
2663         
2664         * src/folderview.c
2665                 delay expanding folder tree during drags until timeout triggered
2666                 (needs perhaps some tweaking, so testing is welcome)
2667
2668 2003-07-17 [alfons]     0.9.3claws21
2669
2670         * src/folderview.c
2671                 clean up cruft
2672
2673 2003-07-17 [christoph]  0.9.3claws20
2674
2675         * src/common/session.c
2676                 fix opening of SSL connections
2677
2678         * src/plugins/image_viewer/Makefile.am
2679                 add OPENSSL_CFLAGS (we should find a better solution to remove
2680                 this dependencies if they are not required)
2681
2682         * src/plugins/spamassassin/spamassassin.c
2683                 remove setlocale workaround (fixed in libspamc)
2684
2685         (closes Bug Bug 184 Entering non-ascii character deletes previous char
2686          if spell checking enabled)
2687
2688 2003-07-17 [alfons]     0.9.3claws19
2689
2690         * src/common/hooks.[ch]
2691         * src/plugins/clamav/clamav_plugin.c
2692         * src/plugins/spamassassin/spamassassin.c
2693         * src/plugins/trayicon/trayicon.c
2694                 fix signedness muck 
2695
2696 2003-07-17 [alfons]     0.9.3claws18
2697
2698         * src/procmime.c
2699                 plug memleak
2700
2701 2003-07-17 [alfons]     0.9.3claws17
2702
2703         * src/inc.c
2704                 plug memleak
2705
2706 2003-07-17 [paul]       0.9.3claws16
2707
2708         * src/common/defs.h
2709           src/mainwindow.c
2710           src/manual.[ch]
2711                 add link to the Claws site's FAQ page, after the suggestion
2712                 and patch by Fred Marton <Fred.Marton@uni-bayreuth.de>
2713                 Move url strings to defs.h
2714                 
2715         * src/mainwindow.c
2716                 fix typo to prevent "unknown menu entry" warnings
2717
2718 2003-07-17 [alfons]     0.9.3claws15
2719
2720         * src/folderview.[ch]
2721         * src/summaryview.[ch]
2722         * src/mimeview.[ch]
2723                 plug DnD leaks 
2724
2725 2003-07-17 [paul]       0.9.3claws14
2726
2727         * src/inc.c
2728                 remove two instances of 'GTK_EVENTS_FLUSH' because
2729                 they are unnecessary and probably cause a stack overflow
2730
2731 2003-07-16 [christoph]  0.9.3claws13
2732
2733         * src/mimeview.[ch]
2734                 use an invisible GTK notebook to switch between viewers
2735                 instead of reparenting widgets
2736
2737 2003-07-16 [christoph]  0.9.3claws12
2738
2739         * src/folder.c
2740                 move folder_item_update_freeze() to correct place in
2741                 folder_item_scan_full()
2742
2743 2003-07-16 [paul]       0.9.3claws11
2744
2745         * sync with 0.9.3cvs12
2746                 see ChangeLog 2003-07-14 and 2003-07-15
2747
2748 2003-07-16 [christoph]  0.9.3claws10
2749
2750         * src/imap.[ch]
2751         * src/prefs_account.[ch]
2752                 sync IMAP CRAM-MD5 authentication with sylpheed-main
2753
2754 2003-07-15 [alfons]     0.9.3claws9
2755
2756         * src/main.c
2757                 make --config-dir do something useful
2758
2759 2003-07-15 [alfons]     0.9.3claws8
2760
2761         * src/procmsg.c
2762                 o fix a bug where 'last' didn't really point to the last message
2763                   in the top level list of children, but to the last threaded
2764                   message. 
2765                 
2766                 o clean up and make it easier to sync
2767
2768 2003-07-15 [alfons]     0.9.3claws7
2769
2770         * src/mainwindow.c
2771                 make correct menu items sensitive       
2772
2773 2003-07-14 [alfons]     0.9.3claws6
2774
2775         * src/procmsg.c
2776                 tune the threader so it will not subject-thread any message
2777                 without a subject prefix (this will not thread correctly if 
2778                 a parent is delivered after their childs, but it looks 
2779                 better right now)
2780
2781 2003-07-13 [christoph]  0.9.3claws5
2782
2783         * src/mainwindow.c
2784                 group "Add mailbox *..." menu items in submenu
2785
2786 2003-07-13 [alfons]     0.9.3claws4
2787
2788         * src/summaryview.c
2789                 correct summary_toggle_pressed() signature and make sure
2790                 signal is not passed on
2791
2792 2003-07-13 [alfons]     0.9.3claws3
2793
2794         * src/summaryview.c
2795                 o for now don't pass on keys when they we're handled by 
2796                   ctree::key_press_event
2797                 o clean up
2798
2799 2003-07-13 [alfons]     0.9.3claws2
2800         
2801         * src/main.c
2802                 add command line option "--config-dir" to get the current 
2803                 configuration dir
2804
2805 2003-07-12 [alfons]     0.9.3claws1
2806
2807         * src/matcher.[ch]
2808         * src/matcher_parser_parse.y
2809         * src/prefs_filtering.c
2810         * src/filtering.c
2811                 add "Lock" filter action to lock messages;
2812
2813         * src/filtering.c       
2814                 remove debug_print()    
2815         * src/prefs_filtering.c
2816                 re-organize matcher part 9: 
2817                 make action text entries easily extendible;
2818                 merge widget selection for ACTION_MARK, ACTION_UNMARK, ACTION_LOCK,
2819                 ACTION_UNLOCK, ACTION_MARK_AS_READ, ACTION_MARK_AS_UNREAD
2820
2821 2003-07-12 [paul]
2822
2823         * tools/README
2824                 update old information and add missing
2825                 information
2826
2827 2003-07-12 [paul]       0.9.3claws
2828
2829         * 0.9.3claws released
2830         
2831 2003-07-12 [paul]       0.9.0claws103
2832
2833         * src/Makefile.am
2834                 add addrquery.h
2835
2836 2003-07-12 [melvin]     0.9.0claws102
2837
2838         * src/messageview.c
2839                 Fixed bug #215: Show MIME tab for single text/html messages. 
2840                 
2841 2003-07-12 [paul]       0.9.0claws101
2842
2843         * man/sylpheed.1
2844                 updated
2845
2846 2003-07-12 [paul]       0.9.0claws100
2847
2848         * po/es.po
2849           po/hr.po
2850           po/pl.po
2851           po/sr.po
2852                 update Spanish, Croatian, Polish, Serbian translations.
2853                 submitted by Ricardo Mones Lastra, Dragan, Witold
2854                 Wladyslaw Wojciech Wilk, Urke MMI
2855
2856 2003-07-12 [melvin]     0.9.0claws99
2857
2858         * po/fr.po
2859                 Updated French translations.
2860
2861 2003-07-12 [paul]       0.9.0claws98
2862
2863         * src/addressbook.c
2864                 disable 'Lookup' button as it has no effect
2865
2866 2003-07-11 [alfons]     0.9.0claws97
2867         
2868         * src/summaryview.c
2869                 summary_searchbar_pressed() should return TRUE to signal that
2870                 event was handled. when returning void, the return value passed
2871                 to GTK is actually random, but maybe FALSE, in which case the
2872                 event is handled by parent
2873                 
2874 2003-07-10 [paul]       0.9.0claws96
2875
2876         * ac/missing/gettext.m4
2877                 update to version 0.12
2878
2879 2003-07-10 [paul]       0.9.0claws95
2880
2881         * src/plugins/clamav/clamav_plugin.c
2882                 fix bug where multipart/alternative messages
2883                 would slip through without being scanned
2884
2885 2003-07-10 [christoph]  0.9.0claws94
2886
2887         * src/folder.c
2888                 correct check if folder supports removing when a message is
2889                 moved. if not the message is only copied.
2890
2891         (closes Bug 132 crash on startup in newsgroups folders)
2892
2893 2003-07-09 [alfons]     0.9.0claws93
2894
2895         * configure.ac
2896         * src/common/defs.h
2897                 --with-config-dir (default .sylpheed)
2898
2899 2003-07-09 [christoph]  0.9.0claws92
2900
2901         * configure.ac
2902                 use PKG_CHECK_MODULES to check for gtkmathview
2903                 (version 0.4.2 now required)
2904
2905 2003-07-08 [melvin]     0.9.0claws91
2906
2907         * src/action.c
2908                 Implemented a progress bar that counts the number of completed
2909                 tasks when the action runs more than one command.
2910
2911 2003-07-08 [alfons]     0.9.0claws90
2912
2913         * src/procmsg.c
2914                 if queued message has an invalid Message-Id, don't try to
2915                 find message it refers to (fixes #209 "crash when processing 
2916                 in folder")
2917
2918 2003-07-08 [paul]       0.9.0claws89
2919
2920         * sync with 0.9.3cvs2
2921                 see ChangeLog 2003-07-08
2922
2923 2003-07-08 [match]      0.9.0claws88
2924
2925         * src/ldapctrl.c
2926                 extend LDAP search for first/last name by parsing search term.
2927
2928 2003-07-08 [alfons]     0.9.0claws87
2929
2930         * src/send_message.c
2931                 fix bug #208 "Status message stuck when sending on POP3 account"
2932
2933 2003-07-07 [paul]       0.9.0claws86
2934
2935         * po/hr.po
2936                 new Croatian translation, submitted by
2937                 Dragan <drleskov@inet.hr>
2938
2939 2003-07-07 [paul]       0.9.0claws85
2940
2941         * sync with 0.9.3cvs1
2942                 see ChangeLog 2003-07-07
2943
2944 2003-07-05 [christoph]  0.9.0claws84
2945
2946         * src/Makefile.am
2947         * src/messageview.c
2948         * src/mimeview.[ch]
2949         * src/stock_pixmap.[ch]
2950         * src/pixmaps/messageview_text.xpm              ** NEW **
2951                 move mimeview tabs to the right side and use icons
2952                 instead of text to save some space
2953
2954         (patch by Luke Plant <lukeplant@softhome.net>)
2955
2956 2003-07-05 [christoph]  0.9.0claws83
2957
2958         * src/inc.c
2959                 add NULL pointer checks
2960
2961         (patch by Luke Plant <lukeplant@softhome.net>)
2962         (closes Bug 204 0.9.0 quits on authentication error?!)
2963
2964 2003-07-05 [alfons]     0.9.0claws82
2965
2966         * configure.ac
2967                 take the clue in bug #202 "./configure script - 
2968                 'if test' comparison failure" reported by John Kristoff. 
2969
2970 2003-07-04 [christoph]  0.9.0claws81
2971
2972         * src/plugins/spamassassin/spamassassin.c
2973                 set timeout for spam check
2974
2975 2003-07-04 [christoph]  0.9.0claws80
2976
2977         * src/main.c
2978                 destroy all FolderItems when shutting down to
2979                 allow folders to clean up
2980
2981 2003-07-04 [melvin]     0.9.0claws79
2982
2983         * src/gtk/gtkaspell.c
2984                 Fixed bug #184 "Entering non-ascii character deletes
2985                 previous char if spell checking enabled": this makes
2986                 the spell checking in multibytes (e.g. UTF-8)locales work.
2987                 (Patch by Luke Plant).
2988                 
2989 2003-07-04 [christoph]  0.9.0claws78
2990
2991         * sync with 0.9.2cvs1
2992                 see ChangeLog 2003-06-10
2993
2994 2003-07-04 [paul]       0.9.0claws77
2995
2996         * sync with 0.9.3 release
2997                 see ChangeLog 2003-07-04
2998
2999 2003-07-03 [christoph]  0.9.0claws76
3000
3001         * src/folder.[ch]
3002         * src/imap.c
3003         * src/mbox_folder.c
3004         * src/mh.c
3005         * src/news.c
3006                 move folder_item_get_path() stuff into a folder virtual function
3007
3008         * src/procmsg.c
3009                 use folder_item_fetch_msg() to get message and do not contruct
3010                 the filename from path and number
3011
3012 2003-07-03 [paul]       0.9.0claws75
3013
3014         * sync with 0.9.2cvs12
3015                 see ChangeLog 2003-07-03
3016
3017 2003-07-02 [paul]       0.9.0claws74
3018
3019         * src/messageview.c
3020                 fix text-selection for replying
3021
3022 2003-07-02 [paul]       0.9.0claws73
3023
3024         * sync with 0.9.2cvs11
3025                 see ChangeLog 2003-07-02
3026
3027 2003-07-02 [paul]       0.9.0claws72
3028
3029         * src/procmsg.c
3030                 revert last commit because it breaks more
3031                 than it fixes
3032
3033 2003-07-02 [paul]       0.9.0claws71
3034
3035         * src/procmsg.c
3036                 fix thread by subject/sort by date
3037
3038 2003-07-01 [paul]       0.9.0claws70
3039
3040         * sync with 0.9.2cvs10
3041                 see ChangeLog 2003-07-01
3042
3043 2003-06-30 [paul]       0.9.0claws69
3044
3045         * sync with 0.9.2cvs9
3046                 see ChangeLog 2003-06-30
3047
3048 2003-06-28 [match]      0.9.0claws68
3049
3050         * src/addressbook.c
3051                 fix null ptr.
3052
3053 2003-06-27 [paul]       0.9.0claws67
3054
3055         * sync with 0.9.2cvs7
3056                 see ChangeLog 2003-06-27
3057
3058 2003-06-26 [christoph]  0.9.0claws66
3059
3060         * src/folder.c
3061                 freeze folder updates while a folder is scanned
3062
3063         (closes Bug 185 New message counter)
3064
3065 2003-06-26 [darko]      0.9.0claws65
3066
3067         * src/ldapserver.c
3068                 fix infinite loop when adding a new LDAP server
3069
3070 2003-06-26 [paul]       0.9.0claws64
3071
3072         * sync with 0.9.2cvs6
3073                 see ChangeLog 2003-06-26
3074
3075 2003-06-26 [paul]       0.9.0claws63
3076
3077         * sync with 0.9.2cvs5
3078                 see ChangeLog 2003-06-25 and 2003-06-26
3079
3080 2003-06-25 [match]      0.9.0claws62
3081
3082         * src/addr_compl.c
3083                 Fixed tab/backtab for dropped-down completion list to
3084                 move next/previous field. (close bug 147)
3085
3086 2003-06-25 [christoph]  0.9.0claws61
3087
3088         * src/addr_compl.[ch]
3089         * src/addrindex.[ch]
3090         * src/folderview.c
3091         * src/inc.c
3092         * src/news.c
3093         * src/summaryview.c
3094         * src/toolbar.c
3095                 fix warnings
3096
3097 2003-06-25 [leandro]    0.9.0claws60
3098
3099         * src/compose.c
3100                 o cleanups
3101                 o gray out "Message/Remove references" menu item if not
3102                   replying to a message
3103
3104 2003-06-24 [leandro]    0.9.0claws59
3105
3106         * src/compose.[ch]
3107                 o removed "Message/Create new thread" menu item
3108                 o added "Message/Remove references" menu item
3109                   (it's off by default and will not check anymore
3110                    if the subject changed)
3111
3112 2003-06-23 [alfons]     0.9.0claws58
3113
3114         * src/procmsg.c
3115                 try better grouping messages threaded by subject based on their age.
3116                 still not perfect - because the message tree is not sorted by date.  
3117
3118 2003-06-23 [thorsten]   0.9.0claws57
3119
3120         * src/pop.[ch]
3121                 added mail_receive_hook to allow modifications
3122                 directly after retrieval (e.g. adding headers).
3123
3124 2003-06-23 [paul]       0.9.0claws56
3125
3126         * src/sourcewindow.c
3127                  enable the use of Ctrl+A to select all text in
3128                  the sourcewindow
3129                  Patch submitted by Ivan Francolin Martinez
3130                  <ivanfm@users.sourceforge.net>
3131
3132 2003-06-22 [christoph]  0.9.0claws55
3133
3134         * src/folder.[ch]
3135                 o add notification hook for folder tree changes
3136                 o invoke hooks after folder tree scanning
3137
3138         * src/folderview.[ch]
3139                 register hook for folder tree changes that
3140                 updates the ctree
3141
3142         (there are more places that should be updated, like add, remove 
3143          or move folder)
3144
3145         (closes Bug 164 Crash on rebuild folder tree)
3146         (closes Bug 190 Crash on 'rebuilding folder tree')
3147
3148 2003-06-21 [leandro]    0.9.0claws54
3149
3150         * src/compose.[ch]
3151                 create a new thread if subject changes
3152                 (it's on by default, can be disabled in Message menu)
3153
3154 2003-06-21 [alfons]     0.9.0claws53
3155
3156         * src/summaryview.c
3157                 quiet little compiler
3158
3159 2003-06-21 [christoph]  0.9.0claws52
3160
3161         update gettext stuff to version 0.12
3162
3163 2003-06-19 [alfons]     0.9.0claws51
3164
3165         * src/common/log.c
3166         * src/common/plugin.c
3167                 move defs.h before glib.h to prevent MIN/MAX redefs
3168
3169 2003-06-19 [alfons]
3170
3171         * src/addressbook.c
3172                 translatable
3173
3174 2003-06-19 [match]      0.9.0claws50
3175
3176         * src/addressbook.[ch]
3177         * src/addrindex.[ch]
3178         * src/addr_compl.[ch]
3179         * src/editldap.[ch]
3180         * src/editldap_basedn.[ch]
3181         * src/addritem.[ch]
3182         * src/ldapquery.h
3183                 re-implemented dynamic LDAP search. works without
3184                 slowdown on display sender with addressbook
3185                 option.
3186         * src/addrbook.c
3187                 documented code.
3188
3189 2003-06-19 [paul]       0.9.0claws49
3190
3191         * src/compose.c
3192                 fix Bug #136 'Nonprovided quotation marks crash claws'
3193                 patch submitted by Pawel Pêkala <c0rn@gazeta.pl>
3194
3195 2003-06-19 [alfons]     0.9.0claws48
3196
3197         * src/prefs_common.[ch]
3198         * src/procmsg.c
3199                 restrict threading by subject by checking thread for
3200                 age (prefs_common.thread_by_subject_max_age)
3201
3202 2003-06-18 [christoph]  0.9.0claws47
3203
3204         * src/imap.c
3205                 fix memory leak in imap_cmd_fetch()
3206
3207 2003-06-18 [christoph]  0.9.0claws46
3208
3209         * src/prefs_gtk.c
3210                 fix memory leak in prefs_set_default() when used multiple
3211                 times or after prefs have been read
3212
3213 2003-06-18 [christoph]  0.9.0claws45
3214
3215         * src/common/plugin.c
3216                 fix memory leak in plugin_unload()
3217
3218 2003-06-18 [christoph]  0.9.0claws44
3219
3220         * src/imap.c
3221                 fix memory leak in imap_cmd_ok()
3222
3223 2003-06-18 [christoph]  0.9.0claws43
3224
3225         * src/folder.c
3226                 stop messages that are downloaded from POP3 and added to
3227                 an IMAP inbox from being filtered twice (first by POP3
3228                 and again when IMAP folder is scaned to get the UID of
3229                 the APPEND operation when no UIDPLUS is available)
3230
3231 2003-06-18 [alfons]
3232
3233         * tools/Makefile.am
3234                 phoenix <- firebird     
3235
3236 2003-06-18 [paul]
3237
3238         * tools/launch_phoenix          ** REMOVED **
3239           tools/launch_firebird         ** NEW **
3240                 renamed and edited to reflect the browser's name change from
3241                 'phoenix' to 'firebird'
3242
3243 2003-06-18 [paul]       0.9.0claws42
3244
3245         * sync with 0.9.2cvs2
3246                 see ChangeLog 2003-06-16
3247
3248 2003-06-17 [alfons]     0.9.0claws41
3249
3250         * src/procmsg.c
3251                 prevent threading problems when a node is an ancestor (parent / great parent),
3252                 which mostly happens with circular references (thanks to Phillipe Gramoullé
3253                 for finding an sample set of messages)
3254
3255 2003-06-16 [christoph]  0.9.0claws40
3256
3257         * src/main.c
3258                 don't popup main window on --receive or --receive-all
3259
3260         * src/mainwindow.[ch]
3261         * src/plugins/trayicon/trayicon.c
3262                 allow hiding of main window by clicking on the trayicon
3263                 (doesn't work correctly in seperate window mode and may
3264                  cause unexpected GTK problems I couldn't find yet)
3265
3266         * src/common/ssl.c
3267                 remove incorrect warning
3268
3269 2003-06-15 [alfons]     0.9.0claws39
3270
3271         * src/gtk/gtkstext.c
3272                 don't output debug text;
3273                 #ifdef out print_line() if not debugging (thanks to Martin Wicke
3274                 for pointing this out);
3275
3276 2003-06-14 [alfons]     0.9.0claws38
3277         
3278         * src/messageview.c
3279                 remove printf() and make one if..else comply with coding style
3280
3281 2003-06-14 [alfons]     0.9.0claws37
3282
3283         * AUTHORS
3284                 add Martin Wicke
3285         * src/action.c
3286         * src/messageview.[ch]
3287         * src/summaryview.c
3288                 apply patch #754162 "Quoting messages filtered by actions" submitted
3289                 by Martin Wicke, which allows quoting message body changed by an
3290                 action (Thanks!).
3291
3292 2003-06-13 [alfons]     0.9.0claws36
3293
3294         * src/utils.c
3295                 add several other subject reply prefixes (suggested by Christoph and Ivan Martinez)
3296                 use case insensitive regexp (suggested by Ivan Martinez)
3297
3298 2003-06-13 [christoph]  0.9.0claws35
3299
3300         * configure.ac
3301         * src/plugins/trayicon/Makefile.am
3302         * src/plugins/trayicon/eggtrayicon.[ch]                         ** REMOVE **
3303         * src/plugins/trayicon/trayicon.c
3304         * src/plugins/trayicon/libeggtrayicon/.cvsignore                ** NEW **
3305         * src/plugins/trayicon/libeggtrayicon/Makefile.am               ** NEW **
3306         * src/plugins/trayicon/libeggtrayicon/eggtrayicon.[ch]          ** NEW **
3307         * src/plugins/trayicon/libeggtrayicon/gtk2-funcs.[ch]           ** NEW **
3308         * src/plugins/trayicon/libeggtrayicon/gtkplugxembed.[ch]        ** NEW **
3309         * src/plugins/trayicon/libeggtrayicon/xembed.h                  ** NEW **
3310                 replace my own EggTrayIcon backport with the backport
3311                 used by (l|x)mule and gabber.
3312
3313 2003-06-13 [alfons]     0.9.0claws34
3314
3315         * AUTHORS
3316         * src/common/utils.c
3317                 add Aw: to list of reply prefixes (thanks to Martin Zwickel)
3318
3319 2003-06-13 [alfons]     0.9.0claws33
3320
3321         * src/compose.c
3322                 clean up a little bit
3323
3324 2003-06-12 [alfons]     0.9.0claws32
3325
3326         * src/compose.c
3327                 const correctness fix
3328
3329         * src/common/sylpheed.[ch]
3330                 () -> (void)
3331                 prevent redef MIN/MAX
3332                 
3333         * src/common/utils.[ch]
3334                 () -> (void)
3335
3336 2003-06-12 [melvin]     0.9.0claws31
3337
3338         * src/compose.c
3339                 Updated to take into accounts changes in GtkAspell.
3340
3341 2003-06-12 [alfons]     0.9.0claws30
3342
3343         * src/compose.c
3344         * src/procmsg.c
3345         * src/common/utils.[ch]
3346                 handle reply subject prefixes better (initial 
3347                 suggestion by Robert Story adapted and enhanced 
3348                 using regexps)
3349
3350 2003-06-12 [melvin]     0.9.0claws29
3351
3352         * src/compose.c
3353                 Use new gtkaspell_checkers_strerror() to get the speller's
3354                 error message instead of accessing the (now private)
3355                 checkers structure.
3356                 Minor code clean up
3357
3358         * src/main.c
3359                 Use #ifdef instead of #if for USE_ASPELL
3360                 Use the new spell checkers init/quit functions 
3361
3362         * src/gtk/gtkaspell.c
3363                 Use #ifdef instead of #if for USE_ASPELL
3364                 Moved in the majority of GtkAspell structures that were
3365                 exported before by gtkaspell.h
3366         
3367         * src/gtk/gktaspell.h
3368                 Made gtkaspell.h contain only the necessary data to be
3369                 publicized by moving many structures to gtkaspell.c.
3370                 Enclosed all the declaration in a #ifdef USE_ASPELL #endif
3371                 gtkaspell_checkers_new(): replaced by...
3372                 gtkaspell_checkers_init(): new function for initialization
3373                 gtkaspell_checkers_delete(): replaced by...
3374                 gtkaspell_checkers_quit(): new function
3375                 gtkaspell_checkers_strerror(): new function that returns
3376                 the checker's last error message.
3377                 
3378 2003-06-11 [melvin]     0.9.0claws28
3379
3380         * po/POTFILES.in
3381                 Updated to take into account gtkaspell.c migration to
3382                 ./src/gtk/ (Thanks to Ricardo Mones Lastra for reporting it)
3383
3384 2003-06-10 [alfons]     0.9.0claws27
3385
3386         * src/filtering.[ch]
3387         * src/folder.c
3388         * src/matcher.c
3389         * src/scoring.[ch]
3390                 - try fixing bug #18 (any brave testers?)
3391                 - add more robustness by refusing previously 
3392                   unchecked NULL pointers 
3393
3394 2003-06-10 [alfons]     0.9.0claws26
3395
3396         * src/procmsg.c
3397                 fix bug #176 by don't checking MsgInfos with a NULL msgid 
3398
3399 2003-06-09 [alfons]     0.9.0claws25
3400
3401         * src/prefs_common.c
3402                 fix bug #163 "Icon switching doesnt work properly" by 
3403                 preventing early freeing of prefs_common.pixmap_theme_path.
3404
3405 2003-06-09 [christoph]  0.9.0claws24
3406
3407         * src/gtk/gtkaspell.c
3408                 revert Thorsten's fix and add forgotten g_strdup for
3409                 aspell path (it should not be possible to alter the path a
3410                 GtkASpell uses from outside)
3411
3412 2003-06-09 [thorsten]   0.9.0claws23
3413
3414         * src/gtk/gtkaspell.c
3415                 dont free prefs_common.aspell_path when closing compose
3416
3417 2003-06-08 [colin]      0.9.0claws22
3418
3419         * src/plugins/spamassassin/spamassassin.c
3420                 fix prefs types
3421
3422 2003-06-07 [christoph]  0.9.0claws21
3423
3424         * src/Makefile.am
3425         * src/compose.c
3426         * src/gtkaspell.[ch]            ** REMOVE **
3427         * src/gtk/Makefile.am
3428         * src/gtk/gtkaspell.[ch]        ** NEW **
3429                 o make gtkaspell independent from sylpheed's prefs
3430                 o move gtkaspell.[ch] to gtk directory
3431
3432 2003-06-07 [christoph]  0.9.0claws20
3433
3434         * src/Makefile.am
3435         * src/crash.c
3436         * src/export.c
3437         * src/filesel.[ch]              ** REMOVE **
3438         * src/folder.c
3439         * src/main.[ch]
3440         * src/common/sylpheed.[ch]
3441         * src/gtk/Makefile.am
3442         * src/gtk/filesel.[ch]          ** NEW **
3443         * src/gtk/pluginwindow.c
3444         * src/gtk/sslcertwindow.c
3445                 move filesel.[ch] to gtk directory
3446
3447 2003-06-07 [alfons]     0.9.0claws19
3448
3449         * src/filesel.c
3450                 make (multi) file selection dialog work again (Claws-only)
3451
3452 2003-06-07 [thorsten]   0.9.0claws18
3453
3454         * po/de.po
3455                 fix typos
3456
3457 2003-06-07 [alfons]     0.9.0claws17
3458
3459         * configure.ac
3460         * src/mimeview.c
3461                 detect apache mishap in which case don't include fnmatch.h
3462                 if regex.h is already included
3463
3464 2003-06-06 [christoph]  0.9.0claws16
3465
3466         * configure.ac
3467         * src/mimeview.h
3468                 add check for fnmatch.h and include it when available
3469
3470         * src/mimeview.[ch]
3471                 fix wrong case sensitivity of Content-Types
3472
3473         * src/gtk/Makefile.am
3474                 need the same include paths in gtk directory as in
3475                 common directory because .h files in common can
3476                 include files from these directories, when included
3477                 in gtk's .h or .c files
3478
3479 2003-06-06 [alfons]     0.9.0claws15
3480
3481         * src/mimeview.c
3482         * src/summaryview.c
3483                 make it compile again because of regex.h / fnmatch.h 
3484                 include problems (related to recent mime stuff, can
3485                 someone check this?)
3486
3487 2003-06-06 [thorsten]   0.9.0claws14
3488
3489         * src/folderview.c
3490                 possible use of uninitialized pointer while dragging
3491
3492 2003-06-06 [paul]       0.9.0claws13
3493
3494         * src/compose.c
3495                 fix bug where the insert sig button would be effective
3496                 only when auto_sig was set
3497
3498 2003-06-06 [paul]       0.9.0claws12
3499
3500         * sync with 0.9.2 release
3501
3502 2003-06-02 [paul]       0.9.0claws11
3503
3504         * sync with 0.9.1cvs1
3505                 see ChangeLog 2003-06-02
3506                 
3507         * po/de.po
3508                 update by Jens
3509
3510 2003-06-01 [christoph]  0.9.0claws10
3511
3512         * src/account.c
3513                 don't use substring search to find accounts by email address
3514
3515         (closes Bug 169 Overly loose matching of "From" address)
3516
3517 2003-05-31 [christoph]  0.9.0claws9
3518
3519         * doc-src/rfc2683.txt
3520         * src/imap.c
3521                 limit IMAP command length as recommended in RFC2683
3522                 (message number lists will be split into multiple imap
3523                 sets, the limit of 1000 octets is not a hard limit)
3524
3525         (closes Bug 161 sylpheed-claws exits with segfault when logging
3526          in to certain imap-servers)
3527
3528 2003-05-29 [alfons]     0.9.0claws8
3529
3530         * src/toolbar.[ch]
3531                 add print button (calling summary_print());
3532                 fine tune setting tooltip text;
3533                 (if someone needs other buttons, please take these 
3534                 commits as a guide, instead of bothering us - also
3535                 see 0.8.11claws150) 
3536
3537 2003-05-29 [darko]      0.9.0claws7
3538
3539         * src/compose.c
3540                 fix crash when word wrapping kicks in due to
3541                 changed text by spell checker
3542
3543 2003-05-29 [paul]       0.9.0claws6
3544
3545         * src/compose.c
3546                 fix bug where changing account would insert
3547                 sig even if auto_sig was FALSE
3548                 
3549         * ChangeLog
3550           ChangeLog.jp
3551           INSTALL
3552                 sync with 0.9.1 release
3553
3554 2003-05-28 [christoph]  0.9.0claws5
3555
3556         * src/imap.c
3557                 fix truncation of too long commands
3558
3559         (closes Bug 167 IMAP hangs trying to get envelope
3560          information in imap_get_uncached_messages)
3561
3562 2003-05-27 [paul]       0.9.0claws4
3563
3564         * tools/Makefile.am
3565           tools/maildir2sylpheed.pl     ** NEW FILE **
3566                 add kmail to sylpheed mailbox conversion script
3567
3568 2003-05-27 [paul]       0.9.0claws3
3569
3570         * sync with 0.9.0cvs10
3571                 see ChangeLog 2003-05-26
3572
3573 2003-05-26 [paul]       0.9.0claws2
3574
3575         * sync with 0.9.0cvs9
3576                 see ChangeLog 2003-05-26
3577
3578 2003-05-24 [paul]       0.9.0claws1
3579
3580         * sync with 0.9.0cvs8
3581                 see ChangeLog 2003-05-23
3582
3583 2003-05-24 [paul]       0.9.0claws
3584
3585         * version 0.9.0claws released
3586
3587 2003-05-24 [paul]       0.8.11claws177
3588
3589         * src/plugins/dillo-viewer/Makefile.am
3590           src/plugins/traycon/Makefile.am
3591                 add missing files
3592                 
3593         * po/bg.po
3594           po/en_GB.po
3595           po/es.po
3596           po/it.po
3597           po/pt_BR.po
3598           po/ru.po
3599           po/sr.po
3600                 update Bulgarian, British English, Spanish, Italian, 
3601                 Brazilian Portuguese, Russian, and Serbian translations, 
3602                 submitted by George Danchev, [me], Ricardo Mones Lastra,
3603                 André Filipe de Assunção e Brito, Alessandro Maestri, 
3604                 Ruslan N. Balkin, and Urke MMI
3605
3606 2003-05-23 [melvin]     0.8.11claws176
3607
3608         * po/fr.po
3609                 Updated French translations
3610
3611 2003-05-22 [paul]       0.8.11claws175
3612
3613         * src/Makefile.am
3614           src/addrbook.[ch]
3615           src/addrcache.[ch]
3616           src/addr_compl.[ch]
3617           src/adressbook.[ch]
3618           src/addrindex.[ch]
3619           src/addritem.[ch]
3620           src/editaddress.c
3621           src/editgroup.c
3622           src/editldap_basedn.c
3623           src/editldap.c
3624           src/jpilot.c
3625           src/vcard.c
3626                 revert to get ldap into it previous working state
3627                 
3628         * po/zh_TW.Big5.po
3629                 new Taiwanese translation,
3630                 submitted by Tsu-Fan Cheng <tscheng@ic.sunysb.edu>
3631
3632 2003-05-22 [christoph]  0.8.11claws174
3633
3634         * src/plugins/spamassassin/libspamc.[ch]
3635                 sync libspamc with SpamAssaain release 2.55
3636
3637 2003-05-22 [paul]       0.8.11claws173
3638
3639         * sync with 0.9.0cvs7
3640                 see ChangeLog 2003-05-22
3641                 
3642         * src/summaryview.c
3643                 revert change in 0.8.11claws172: follow
3644                 Hiroyuki's decision and that's the end of it.
3645
3646 2003-05-21 [paul]       0.8.11claws172
3647
3648         * src/summaryview.c
3649                 fix discrepency between open_unread_on_enter
3650                 and always_show_msg
3651
3652 2003-05-21 [paul]       0.8.11claws171
3653
3654         * sync with 0.9.0cvs6
3655                 see ChangeLog 2003-05-21
3656
3657 2003-05-21 [paul]       0.8.11claws170
3658
3659         * sync with 0.9.0cvs5
3660                 see ChangeLog 2003-05-21
3661
3662 2003-05-20 [paul]       0.8.11claws169
3663
3664         * sync with 0.9.0cvs4
3665                 see ChangeLog 2003-05-20
3666                 fixes bug #152, 'encoding of IMAP folders names'
3667
3668 2003-05-20 [paul]       0.8.11claws168
3669
3670         * sync with 0.9.0cvs3
3671                 see ChangeLog 2003-05-20
3672                 
3673         * src/tools/convert_mbox.pl
3674                 minor change in the comments, submitted by Fred Marton
3675
3676 2003-05-19 [paul]       0.8.11claws167
3677
3678         * src/plugins/clamav/Makefile.am
3679           configure.ac
3680                 link clamav_lib to the plugin and not to the main program
3681
3682 2003-05-19 [christoph]
3683
3684         * src/Makefile.am
3685                 add -export-dynamic for linking
3686
3687 2003-05-19 [paul]       0.8.11claws166
3688
3689         * sync with 0.9.0cvs1
3690                 see ChangeLog 2003-05-19
3691
3692 2003-05-19 [paul]       0.8.11claws165
3693
3694         * src/inc.c
3695                 fix 'pop before smtp' timeout
3696
3697 2003-05-18 [alfons]     0.8.11claws164
3698
3699         * src/prefs_matcher.c
3700                 put "execute" action command line ("expression") in edit box
3701
3702 2003-05-18 [christoph]  0.8.11claws163
3703
3704         * src/mimeview.[ch]
3705         * src/plugins/dillo_viewer/dillo_viewer.c
3706         * src/plugins/image_viewer/viewer.c
3707         * src/plugins/mathml_viewer/mathml_viewer.c
3708                 let a viewer have a list of Content-Types
3709
3710 2003-05-18 [paul]       0.8.11claws162
3711
3712         * src/prefs_filtering.c
3713                 add 'Recipient' label for FORWARD, FORWARD_AS_ATTACHMENT,
3714                 and REDIRECT actions
3715
3716 2003-05-17 [christoph]
3717
3718         * README.claws
3719                 o remove dynamic signatures that was syned with main
3720                 o add infos about no longer "build in" image viewer
3721                 o update bugtracker URL
3722
3723 2003-05-17 [christoph]  0.8.11claws161
3724
3725         * src/folder.c
3726         * src/folderview.c
3727         * src/imap.c
3728                 don't use imap_scan_folder anymore. Instead call folder_item_scan
3729                 for every folder after rebuilding the folder tree.
3730
3731         (closes Bug 19 imap_scan_folder() computes incorrectly number of new
3732          messages)
3733
3734 2003-05-17 [christoph]  0.8.11claws160
3735
3736         * src/imap.c
3737                 don't use STATUS command on current folder to check for
3738                 content changes. imap_cmd_ok() now tracks changes to
3739                 folder and number of existing messages.
3740
3741 2003-05-17 [paul]       0.8.11claws159
3742
3743         * src/plugins/clamav/clamav_plugin.c
3744                 remove unnecessary debug_print
3745
3746 2003-05-16 [thorsten]   0.8.11claws158
3747
3748         * src/plugins/demo.c
3749                 included missing intl.h
3750
3751 2003-05-16 [paul]       0.8.11claws157
3752
3753         * po/POTFILES.in
3754                 remove non-existant entries
3755         
3756         * src/plugins/clamav/clamav_plugin.c
3757           src/plugins/clamav/clamav_plugin_gtk.c
3758           src/plugins/dillo_viewer/dillo_prefs.c
3759           src/plugins/dillo_viewer/dillo_viewer.c
3760                 gettextise
3761
3762 2003-05-16 [christoph]  0.8.11claws156
3763
3764         * po/POTFILES.in
3765                 include plugin .c files for translation until I
3766                 find a better solution to have plugins have their
3767                 own textdomain
3768         * src/plugins/demo/demo.c
3769         * src/plugins/image_viewer/plugin.c
3770         * src/plugins/mathml_viewer/mathml_viewer.c
3771         * src/plugins/spamassassin/spamassassin.c
3772         * src/plugins/spamassassin/spamassassin_gtk.c
3773         * src/plugins/trayicon/trayicon.c
3774                 add gettext macros for plugin name and description
3775
3776 2003-05-16 [paul]
3777
3778         * sync with 0.9.0
3779
3780 2003-05-16 [paul]       0.8.11claws155
3781
3782         * sync with lastest 0.9.0pre1
3783                 see ChangeLog 2003-05-16
3784
3785 2003-05-15 [paul]       0.8.11claws154
3786
3787         * sync with latest 0.9.0pre1
3788                 see ChangeLog 2003-05-14 and 2003-05-15
3789
3790 2003-05-14 [christoph]  0.8.11claws153
3791
3792         * src/plugins/image_viewer/viewer.c
3793         * src/plugins/image_viewer/viewer.glade         ** NEW **
3794         * src/plugins/image_viewer/viewerprefs.c
3795                 make it possible to disable the autoload function in the
3796                 imageviewer again
3797
3798 2003-05-14 [christoph]  0.8.11claws152
3799
3800         * src/folder.c
3801                 fix folder update after adding a message
3802
3803 2003-05-13 [alfons]     0.8.11claws151
3804
3805         * src/common/session.c
3806                 remove debug traces
3807                 
3808         * src/addrcache.[ch]
3809         * src/filtering.[ch]
3810         * src/folder.[c]
3811         * src/gtkaspell.[ch]
3812         * src/imap.[ch]
3813         * src/mbox_folder.[ch]
3814         * src/mh.[ch]
3815         * src/mimeview.h
3816         * src/msgcache.[ch]
3817         * src/news.[ch]
3818         * src/passphrase.[ch]
3819         * src/prefs_common.[ch]
3820         * src/prefs_gtk.[ch]
3821         * src/procmsg.c
3822         * src/scoring.[ch]
3823                 be pedantic; (in prototypes () implies (int))
3824
3825 2003-05-13 [alfons]     0.8.11claws150
3826
3827         * src/prefs_toolbar.[ch]
3828         * src/summaryview.[ch]
3829         * src/toolbar.[ch]
3830                 change misleading text in toolbar prefs;
3831                 add toolbar action for ignore thread (toggles ignore thread flag);
3832                 clean up a little bit;
3833
3834 2003-05-12 [paul]
3835
3836         * tools/convert_mbox.pl
3837                 bug fixed by Fred Marton
3838
3839 2003-05-12 [paul]
3840
3841         * sync with 0.9.0pre1
3842
3843 2003-05-09 [paul]       0.8.11claws149
3844
3845         * sync with 0.8.11cvs43
3846                 see ChangeLog 2003-05-09
3847
3848 2003-05-08 [christoph]  0.8.11claws148
3849
3850         * src/imap.[ch]
3851                 o use CAPABILIY as first command and check for PREAUTH
3852                   information in the response to it
3853                 o rewrite all imap_cmd_* functions to use an IMAPSession
3854                   instead of a SockInfo as parameter
3855                 o do STARTTLS after fetching and checking the server
3856                   capabilities
3857
3858 2003-05-08 [paul]       0.8.11claws147
3859
3860         * tools/Makefile.am
3861           tools/README
3862           tools/convert_mbox.pl         ** NEW FILE **
3863                 add mbox conversion script. Submitted by 
3864                 Fred Marton <Fred.Marton@uni-bayreuth.de>
3865
3866 2003-05-07 [christoph]
3867
3868         * doc-src/glade.txt
3869         * src/gtk/pluginwindow.glade
3870         * src/plugins/image_viewer/viewerprefs.glade
3871         * src/plugins/spamassassin/spamassassin_gtk.glade
3872                 add glade files for user interfaces and a description how
3873                 to use glade to create the sylpheed code
3874
3875 2003-05-07 [paul]       0.8.11claws146
3876
3877         * sync with 0.8.11cvs41
3878                 see ChangeLog 2003-05-07
3879
3880 2003-05-06 [christoph]  0.8.11claws145
3881
3882         * src/main.c
3883         * src/plugins/image_viewer/viewer.c
3884                 fix usage of imlib in imageviewer plugin
3885
3886         * src/gtk/prefswindow.c
3887                 handle window close event correctly
3888
3889 2003-05-06 [paul]       0.8.11claws144
3890
3891         * src/common/ssl.c
3892                 fix typo introduced in sync
3893
3894 2003-05-06 [paul]       0.8.11claws143
3895
3896         * sync with 0.8.11cvs39
3897                 see ChangeLog 2003-05-06
3898
3899 2003-05-06 [paul]       0.8.11claws142
3900
3901         * AUTHORS
3902           po/cs.po
3903                 updated Czech translation, submitted by 
3904                 Radek Vybiral <Radek.Vybiral@vsb.cz>
3905                 
3906         * src/plugins/clamav/clamav_plugin_gtk.c
3907                 clean up
3908
3909 2003-05-03 [alfons]     0.8.11claws141
3910
3911         * src/compose.[ch]
3912                 make paste as quotation work even when the call to 
3913                 text_inserted() was deferred (fixes bug #140 "Paste 
3914                 as quotation does not work when using "external" 
3915                 clipboard")
3916
3917 2003-05-03 [thorsten]   0.8.11claws140
3918
3919         * src/addrquery.h
3920           src/ldapquery.h
3921           src/mainwindow.c
3922                 removed C++ comments
3923         * src/addr_compl.c
3924                 function with non-int retval/param used before
3925                 implementation/declaration
3926
3927 2003-05-02 [paul]       0.8.11claws139
3928
3929         * src/addr_compl.[ch]
3930           src/addressbook.[ch]
3931           src/addrindex.c
3932           src/summaryview.c
3933                 revert match's changes to (finally) remove the bug where
3934                 opening a folder causes massive slowdown when using the 
3935                 'Display sender using address book' option
3936
3937 2003-05-01 [melvin]     0.8.11claws138
3938
3939         * src/plugins/dillo_viewer/dillo_prefs.[ch]
3940         * src/plugins/dillo_viewer/dillo_viewer.c
3941                 Fixed bug where "Cancel" button from prefs issued
3942                 warnings.
3943                 Comply a little more to coding style
3944
3945 2003-05-01 [paul]       0.8.11claws137
3946
3947         * sync with 0.8.11cvs38
3948                 see ChangeLog 2003-05-01
3949
3950 2003-05-01 [paul]       0.8.11claws136
3951
3952         * po/bg.po
3953                 updated by George Danchev
3954
3955 2003-04-30 [christoph]  0.8.11claws135
3956
3957         * src/plugins/dillo_viewer/dillo_prefs.c
3958         * src/plugins/image_viewer/viewerprefs.c
3959         * src/plugins/spamassassin/spamassassin_gtk.c
3960                 remove gtk_widget_ref() calls for widgets in
3961                 glade code
3962
3963 2003-04-30 [paul]       0.8.11claws134
3964
3965         * src/addrindex.c
3966                 ok, this time a better fix for the bug where opening folder
3967                 has massive slowdown when using the 'Display sender using 
3968                 address book' option
3969
3970 2003-04-30 [paul]       0.8.11claws133
3971
3972         * src/addrindex.c
3973                 revert the 'fix' of 0.8.11claws128 because it doesn't fix it
3974         
3975 2003-04-30 [melvin]     0.8.11claws132
3976
3977         New: Dillo plugin preferences (patch by Dimitar Haralanov)
3978
3979         * src/plugins/dillo_viewer/dillo_prefs.[ch]     *** NEW ***
3980                 Preferences for the dillo plugin
3981         * src/plugins/dillo_viewer/dillo_viewer.c
3982                 Support for preferences
3983         * src/plugins/dillo_viewer/Makefile.am
3984                 Added dillo_prefs.[ch]
3985
3986 2003-04-30 [alfons]     0.8.11claws131
3987
3988         * src/common/plugin.[ch]
3989                 see? this ANSI C'fication immediately gives us type
3990                 checking for free.
3991
3992 2003-04-30 [alfons]     0.8.11claws130
3993
3994         * src/common/plugin.[ch]
3995         * src/plugins/clamav/clamav_plugin.[ch]
3996         * src/plugins/clamav/clamav_plugin_gtk.c
3997         * src/plugins/demo/demo.c
3998         * src/plugins/dillo_viewer/dillo_viewer.c
3999         * src/plugins/image_viewer/plugin.c
4000         * src/plugins/image_viewer/viewer.[ch]
4001         * src/plugins/image_viewer/viewerprefs.[ch]
4002         * src/plugins/mathml_viewer/mathml_viewer.c
4003         * src/plugins/spamassassin/spamassassin.[ch]
4004         * src/plugins/spamassassin/spamassassin_gtk.c
4005         * src/plugins/trayicon/trayicon.c
4006                 clean up
4007
4008 2003-04-30 [alfons]     0.8.11claws129
4009
4010         * src/common/utils.c
4011                 make is_ascii_str() fail gracefully when NULL pointer
4012                 is passed
4013
4014 2003-04-30 [paul]       0.8.11claws128
4015
4016         * src/addrindex.c
4017                 fix bug where opening folder has massive slowdown when
4018                 using the 'Display sender using address book' option
4019
4020 2003-04-30 [paul]       0.8.11claws127
4021
4022         * src/plugins/clamav/clamav_plugin.c
4023           src/plugins/clamav/clamav_plugin_gtk.c
4024           src/plugins/demo/demo.c
4025           src/plugins/dillo_viewer/dillo_viewer.c
4026           src/plugins/image_viewer/plugin.c
4027           src/plugins/mathml_viewer/mathml_viewer.c
4028           src/plugins/spamassassin/spamassassin.c
4029           src/plugins/spamassassin/spamassassin_gtk.c
4030           src/plugins/trayicon/trayicon.c
4031                 get rid of eye-hurting function signatures
4032
4033 2003-04-30 [paul]       0.8.11claws126
4034
4035         * src/plugins/trayicon/trayicon.c
4036                 add description
4037                 
4038         * src/mimeview.c
4039                 be more descriptive
4040
4041 2003-04-30 [paul]       0.8.11claws125
4042
4043         * configure.ac
4044                 arrange the plugins in reverse alphabetical order
4045                 
4046         * src/plugins/clamav/clamav_plugin.[ch]
4047           src/plugins/clamav/clamav_plugin_gtk.c
4048                 rename some params
4049                 resize max_size window
4050                 re-arrange the order of some gui elements
4051                 improve descriptions
4052         
4053         * src/plugins/image_viewer/plugin.c
4054           src/plugins/mathml_viewer/mathml_viewer.c
4055                 add descriptions
4056                 
4057         * src/plugins/spamassassin/spamassassin_gtk.c
4058                 resize max_size window
4059                 re-arrange the order of some gui elements
4060                 
4061         * src/messageview.c
4062           src/mimeview.c
4063                 correct typos
4064
4065 2003-04-30 [alfons]     0.8.11claws124
4066
4067         * src/imap.c
4068                 fix a leak found while browsing Martin Kluge's 
4069                 valgrind log (Claws only)
4070
4071 2003-04-29 [darko]      0.8.11claws123
4072
4073         * src/gtk/gtkstext.h
4074                 include wchar.h if it is available, fixes compilation
4075                 on HP-UX systems
4076
4077 2003-04-29 [melvin]     0.8.11claws122
4078
4079         * src/prefs_actions.c
4080                 Improved help text of Actions' syntax
4081
4082 2003-04-28 [paul]       0.8.11claws121
4083
4084         * src/action.c
4085                 a better fix for the crash when performing an action
4086                 on a mime part
4087
4088 2003-04-28 [paul]       0.8.11claws120
4089
4090         * src/action.c
4091                 fix crash when performing an action on a
4092                 mime part
4093
4094 2003-04-28 [paul]       0.8.11claws119
4095
4096         * sync with 0.8.11cvs36
4097                 see ChangeLog 2003-04-28
4098
4099 2003-04-27 [paul]       0.8.11claws118
4100
4101         * more sync with 0.8.11cvs35
4102                 see ChangeLog 2003-04-25
4103
4104 2003-04-26 [christoph]  0.8.11claws117
4105
4106         * src/folder.c
4107                 fix remove virtual check
4108
4109 2003-04-26 [paul]       0.8.11claws116
4110
4111         * src/messageview.c
4112                 fix return-receipt, make it work again
4113
4114 2003-04-26 [paul]       0.8.11claws115
4115
4116         * src/mimeview.c
4117                 restore double-clicking of the [application/pgp-signature 
4118                 (Select "Check signature" to check)] line in the message view,
4119                 broken in recent sync
4120
4121 2003-04-26 [christoph]  0.8.11claws114
4122
4123         * src/folder.c
4124                 check if remove virtual really exists before
4125                 calling the function
4126
4127 2003-04-25 [match]      0.8.11claws113
4128
4129         * src/addrindex.c
4130         * src/addrbook.c
4131         * src/ldapquery.[ch]
4132         * src/ldapctrl.[ch]
4133                 fix memleak.
4134         * src/ldapserver.[ch]
4135                 fix memleak. fix segfault.
4136                 plug a Claws memleak
4137
4138 2003-04-25 [alfons]     0.8.11claws112
4139
4140         * src/folder.c
4141                 plug a Claws memleak
4142
4143 2003-04-25 [alfons]     0.8.11claws111
4144
4145         * src/common/session.c
4146                 plug a memleak
4147
4148 2003-04-25 [paul]       0.8.11claws110
4149
4150         * sync with 0.8.11cvs35
4151                 see ChangeLog 2003-04-24 and 2003-04-25
4152                 
4153         * src/gtk/pluginwindow.c
4154                 correct another strange float value
4155
4156 2003-04-24 [christoph]  0.8.11claws109
4157
4158         * src/folder.c
4159                 freeze folder item updates when unsetting new flags
4160
4161         * src/gtk/pluginwindow.c
4162                 correct strange float value
4163
4164 2003-04-23 [paul]       0.8.11claws108
4165
4166         * sync with 0.8.11cvs33
4167                 see ChangeLog 2003-04-23
4168
4169 2003-04-22 [paul]       0.8.11claws107
4170
4171         * src/Makefile.am
4172           src/messageview.c
4173           src/mimeview.c
4174           src/pgptext.[ch]      ** REMOVED **
4175                 remove pgptext.[ch] as its not used any more
4176
4177 2003-04-22 [paul]       0.8.11claws106
4178
4179         * sync with 0.8.11cvs31
4180                 see ChangeLog 2003-04-21 and 2003-04-22
4181
4182 2003-04-21 [alfons]     0.8.11claws105
4183
4184         * src/main.c
4185                 No access to GTK structures if we're a spawned child
4186                 (and clean up code a little bit...) Should fix #126.
4187
4188 2003-04-21 [melvin]     0.8.11claws104
4189
4190         * src/plugins/dillo_viewer/README
4191                 Improved slightly the text.
4192
4193 2003-04-21 [melvin]     0.8.11claws103
4194
4195         * src/plugins/dillo_viewer/README *** NEW ***
4196                 Added a README file for the Dillo plugin
4197
4198 2003-04-20 [paul]
4199
4200         * tools/README
4201           tools/outlook2sylpheed.pl
4202                 updated and improved by Ricardo Mones Lastra
4203
4204 2003-04-18 [oliver]     0.8.11claws102
4205
4206         * src/inc.c 
4207         * src/prefs_account.h
4208                 remove Pop3SessionType (used by selective download)
4209         * src/prefs_toolbar.c
4210                 enable set Default Toolbar button
4211
4212 2003-04-18 [paul]       0.8.11claws101
4213
4214         * sync with 0.8.11cvs29
4215                 see ChangeLog 2003-04-18
4216
4217 2003-04-17 [paul]       0.8.11claws100
4218
4219         * src/prefs_common.[ch]
4220           src/summaryview.c
4221                 remove 'Open next message on deletion' option,
4222                 as the same effect can now be achieved via the
4223                 'Always open messages in summary when selected'
4224                 option.
4225
4226 2003-04-17 [paul]       0.8.11claws99
4227
4228         * sync with 0.8.11cvs28
4229                 see ChangeLog 2003-04-17
4230
4231 2003-04-17 [christoph]  0.8.11claws98
4232
4233         * ac/spamassassin.m4
4234         * src/plugins/spamassassin/libspamc.[ch]
4235         * src/plugins/spamassassin/utils.[ch]
4236                 sync libspamc with SpamAssassin project
4237
4238 2003-04-17 [christoph]  0.8.11claws97
4239
4240         * src/common/socket.h
4241         * src/gtk/sslcertwindow.h
4242                 rename old USE_SSL to USE_OPENSSL
4243
4244 2003-04-17 [paul]       0.8.11claws96
4245
4246         * src/prefs_common.h
4247                 use gulong for P_COLOR so that it compiles/runs on
4248                 64-bit systems. Patch submitted by James Noyes
4249                 <jnoyes-claws@retrogeeks.com>
4250                 
4251         * po/de.po
4252                 updated by Jens
4253
4254 2003-04-17 [paul]       0.8.11claws95
4255
4256         * sync with 0.8.11cvs27
4257                 see ChangeLog 2003-04-16
4258
4259 2003-04-15 [paul]       0.8.11claws94
4260
4261         * src/prefs_common.[ch]
4262                 rearrange to stop the window getting too long:
4263                         move Receive dialog stuff to Receive tab
4264                         move Send dialog to Send tab
4265                         remove Dialogs frame
4266                 rename 'Open messages in summary with cursor keys' to
4267                 'Always open messages in summary when selected', as its
4268                 more appropriate
4269
4270 2003-04-15 [paul]       0.8.11claws93
4271
4272         * src/prefs_common.[ch]
4273           src/summaryview.c
4274                 add new option '/Interface/Open next message on deletion'
4275
4276 2003-04-15 [paul]       0.8.11claws92
4277
4278         * src/summaryview.[ch]
4279                 add /Mark/Lock and /Mark/Unlock to the pop-up
4280                 menu. Patch submitted by Ivan Francolin Martinez
4281                 <ivanfm@users.sourceforge.net>
4282
4283 2003-04-15 [paul]       0.8.11claws91
4284
4285         * sync with 0.8.11cvs24
4286                 see ChangeLog 2003-04-15
4287
4288 2003-04-14 [jens]       0.8.11claws90
4289
4290         * updated German translation and some corrections from
4291                 Roland Bless <bless@tm.uka.de>
4292
4293 2003-04-14 [paul]       0.8.11claws89
4294
4295         * sync with 0.8.11cvs22
4296                 see ChangeLog 2003-04-14
4297
4298 2003-04-13 [paul]       0.8.11claws88
4299
4300         * src/plugins/clamav/clamav_plugin.c
4301                 fix memory leaks
4302                 clean up
4303
4304 2003-04-12 [paul]       0.8.11claws87
4305
4306         * src/plugins/clamav/clamav_plugin.c
4307                 activate enable/disable archive scanning option
4308                 
4309         * src/plugins/clamav/.cvsignore         ** NEW FILE **
4310
4311 2003-04-12 [paul]       0.8.11claws86
4312
4313         * src/plugins/Makefile.am
4314           src/plugins/clamav/Makefile.am                ** NEW FILE **
4315           src/plugins/clamav/README                     ** NEW FILE ** 
4316           src/plugins/clamav/clamav_plugin.[ch]         ** NEW FILES **
4317           src/plugins/clamav/clamav_plugin_gtk.c        ** NEW FILE **
4318                 add Clam AntiVirus plugin
4319
4320 2003-04-12 [paul]       0.8.11claws85
4321
4322         * sync with 0.8.11cvs21
4323                 see ChangeLog 2003-04-11
4324
4325 2003-04-11 [paul]       0.8.11claws84
4326
4327         * po/es.po
4328                 update Spanish translation. Submitted by Ricardo
4329                 Mones Lastra.
4330
4331 2003-04-10 [christoph]  0.8.11claws83
4332
4333         * src/mbox.c
4334                 fix typo that did not move unfiltered mails to destination
4335                 folder
4336
4337         (closes Bug 115 Sylpheed 0.8.11claws81 does not deliver mail correctly
4338          when filtering from spool)
4339
4340 2003-04-10 [christoph]  0.8.11claws82
4341
4342         * src/imap.c
4343                 use BODY.PEEK instead of BODY in in message fetch operation
4344                 to make sure the IMAP server does not set the \Seen flag for
4345                 messages. Sylpheed does that later itself, when the message
4346                 is opened in sylpheed
4347
4348         (closes Bug 111 Claws destroys unread marks)
4349
4350 2003-04-09 [oliver]     0.8.11claws81
4351         
4352         * src/folder.c
4353                 fix crash in folder_destroy
4354         * README.claws
4355                 remove selective download
4356
4357 2003-04-09 [christoph]  0.8.11claws80
4358
4359         * src/imap.c
4360                 fix crash in imap_get_msginfo() when then fetched message
4361                 is not found
4362
4363         (closes Bug 110 Crash during mail composition)
4364
4365 2003-04-08 [christoph]  0.8.11claws79
4366
4367         * src/folder.c
4368         * src/prefs_account.c
4369                 Filter new messages that are found in an INBOX folder
4370                 when 'Filter messages on receiving' is enabled in the
4371                 Folder's AccountPrefs. This allows to use Sylpheed's
4372                 filtering engine for IMAP folders where messages are
4373                 added to the INBOX by a MTA
4374
4375 2003-04-08 [paul]       0.8.11claws78
4376
4377         * src/procmsg.h
4378                 clean up after last commit
4379
4380 2003-04-08 [paul]       0.8.11claws77
4381
4382         * sync with 0.8.11cvs20
4383                 see ChangeLog 2003-04-07 and 2003-04-08
4384
4385 2003-04-07 [christoph]  0.8.11claws76
4386
4387         * src/filtering.[ch]
4388         * src/inc.[ch]
4389         * src/mbox.c
4390         * src/procmsg.[ch]
4391                 add procmsg_msginfo_filter() to execute filtering actions
4392
4393 2003-04-06 [christoph]  0.8.11claws75
4394
4395         * src/imap.c
4396                 use IMAPSet for imap_cmd_store() and imap_cmd_envelope()
4397
4398 2003-04-06 [christoph]  0.8.11claws74
4399
4400         * src/common/utils.[ch]
4401                 add g_int_compare() function for slist sorting
4402
4403         * src/imap.c
4404                 fetch all MsgInfos with one command in imap_get_msginfos()
4405                 using an imap set with a list of ranges
4406
4407         * src/news.c
4408                 use new g_int_compare() function
4409
4410 2003-04-06 [thorsten]   0.8.11claws73
4411
4412         * src/mh.c
4413                 corrected implementation of mh_folder_destroy()
4414
4415 2003-04-05 [christoph]  0.8.11claws72
4416
4417         * src/account.c
4418         * src/folder.[ch]
4419         * src/folderview.c
4420         * src/imap.c
4421         * src/inc.c
4422         * src/main.c
4423         * src/mainwindow.c
4424         * src/mbox_folder.c
4425         * src/mh.c
4426         * src/mimeview.h
4427         * src/msgcache.[ch]
4428         * src/news.c
4429         * src/procmime.h
4430         * src/procmsg.[ch]
4431         * src/setup.c
4432         * src/gtk/gtkutils.c
4433                 o rename structure field names class and new to klass and
4434                   new_msgs, to allow including files in C++
4435                 o add 'extern "C"' block to some header files
4436                 o add MsgInfoList and MsgNumberList as alias for GSList for
4437                   developers to know what type of list is expected
4438
4439         * src/plugins/image_viewer/plugin.c
4440         * src/plugins/image_viewer/viewer.[ch]
4441         * src/plugins/image_viewer/viewerprefs.[ch]
4442                 rename function names to prevent conflicts
4443
4444 2003-04-05 [paul]       0.8.11claws71
4445
4446         * sync with 0.8.11cvs18
4447                 see ChangeLog 2003-04-03 and 2003-04-04
4448
4449 2003-04-02 [christoph]  0.8.11claws70
4450
4451         * src/folder.[ch]
4452         * src/imap.[ch]
4453         * src/mbox_folder.[ch]
4454         * src/mh.[ch]
4455         * src/news.[ch]
4456                 o Make all virtual folder functions private
4457                 o remove unused folder code
4458
4459         * src/common/socket.[ch]
4460         * src/summaryview.c
4461                 fix warnings
4462
4463 2003-03-30 [alfons]     0.8.11claws69
4464
4465         * src/send_message.c
4466                 remove two debug traces and see if people still report
4467                 errors
4468
4469 2003-03-30 [alfons]     0.8.11claws68
4470
4471         * src/send_message.c
4472         * src/commons/session.c
4473                 add more debug traces
4474
4475 2003-03-30 [christoph]  0.8.11claws67
4476
4477         * src/folder.c
4478                 change processing folder name from .processing to processing
4479
4480         * src/common/ssl.c
4481                 disable SSL certificate check because it causes Xlib error
4482                 when the child process want's to open an GTK window
4483
4484 2003-03-30 [christoph]  0.8.11claws66
4485
4486         * src/folder.c
4487                 don't use default folder for processing folder item because
4488                 it can be a non local folder
4489
4490         (fixes bug reported by Stephen Lewis <slewis@paradise.net.nz>)
4491
4492 2003-03-30 [alfons]     0.8.11claws65
4493
4494         * src/send_message.c
4495                 try fixing crashes when sending messages: my gcc 2.95.4 seems 
4496                 to generate bad code for 'send_send_data_progressive': When
4497                 called from 'send_send_data_finished', the 'data' pointer is
4498                 cleared just before the assignment to the dialog pointer
4499
4500 2003-03-29 [christoph]  0.8.11claws64
4501
4502         * src/common/prefs.h
4503         * src/plugins/image_viewer/Makefile.am
4504         * src/plugins/image_viewer/plugin.c
4505         * src/plugins/image_viewer/viewer.[ch]
4506         * src/plugins/image_viewer/viewerprefs.[ch]     ** NEW **
4507                 add PrefsPage for ImageViewer
4508
4509 2003-03-28 [thorsten]   0.8.11claws63
4510
4511         * src/common/session.c
4512                 added some comments
4513
4514 2003-03-28 [paul]       0.8.11claws62
4515
4516         * sync with 0.8.11cvs16
4517                 see ChangeLog 2003-03-28
4518
4519 2003-03-28 [paul]       0.8.11claws61
4520
4521         * sync with 0.8.11cvs15
4522                 see ChangeLog 2003-03-28
4523
4524 2003-03-27 [christoph]  0.8.11claws60
4525
4526         * src/folder.c
4527         * src/imap.c
4528         * src/common/socket.[ch]
4529                 set socket state to DISCONNECTED when any operation
4530                 fails to allow reconnecting in IMAP code without
4531                 checking the return code of all calls to the command
4532                 functions
4533
4534         * src/folderview.c
4535         * src/summaryview.c
4536                 remove some more stuff that depends on specific
4537                 folder types
4538
4539 2003-03-27 [paul]       0.8.11claws59
4540
4541         * sync with 0.8.11cvs14
4542                 see ChangeLog 2003-03-27
4543                 
4544         * src/selective_download.[ch]   ** REMOVED **
4545                 really removed
4546
4547 2003-03-27 [christoph]  0.8.11claws58
4548
4549         * src/folder.c
4550                 fix handling of tmp_flags in flag copy function
4551
4552 2003-03-27 [paul]       0.8.11claws57
4553
4554         * sync with 0.8.11cvs13
4555                 see ChangeLog 2003-03-27
4556
4557 2003-03-27 [oliver]     0.8.11claws56
4558
4559         * src/maiwindow.c
4560                 remove sel_download_cb
4561
4562 2003-03-27 [oliver]     0.8.11claws55
4563         
4564         * src/inc.c
4565                 remove POP3_TOP
4566         
4567 2003-03-26 [oliver]     0.8.11claws54
4568
4569         *src/pop.h
4570                 remove POP3_TOP*
4571         * README.claws
4572                 remove selective donwload readme
4573
4574 2003-03-26 [oliver]     0.8.11claws53
4575         * src/matcher.[ch]
4576         * src/matcher_parser_parse.y 
4577         * src/pop.c 
4578         * src/prefs_account.[ch]
4579         * src/prefs_filtering.c
4580                 remove selective donwload
4581
4582 2003-03-26 [oliver]     0.8.11claws52
4583
4584         * src/inc.[ch] 
4585         * src/filtering.c 
4586         * src/mainwindow.c 
4587                 remove selective donwload
4588
4589 2003-03-26 [oliver]     0.8.11claws51
4590         
4591         * src/Makefile.am
4592         * src/selective_download.[ch]   ** REMOVE **    
4593
4594 2003-03-26 [christoph]  0.8.11claws50
4595
4596         * src/news.c
4597                 fix NEWS that got broken by a sync with sylpheed-main
4598
4599 2003-03-26 [christoph]  0.8.11claws49
4600
4601         * src/mimeview.c
4602                 fix mime type guessing when no mime type is found for a file
4603
4604 2003-03-25 [christoph]  0.8.11claws48
4605
4606         * src/mimeview.c
4607         * src/procmime.c
4608                 remove mime type guessing from mime parser and use
4609                 name based mime types in viewer lookup for mime type
4610                 application/octet-stream
4611
4612 2003-03-25 [christoph]  0.8.11claws47
4613
4614         * doc-src/readme.txt
4615         * doc-src/rfc2554.txt
4616                 add RFC about SMTP AUTH
4617
4618         * src/send_message.c
4619         * src/common/smtp.[ch]
4620                 add extra error code for authentication errors and
4621                 clear temporary password when this error occurs
4622
4623         (closes Bug 84 authentication failure while sending should
4624          prompt for password again)
4625
4626 2003-03-25 [christoph]  0.8.11claws46
4627
4628         * configure.ac
4629         * src/Makefile.am
4630         * src/imageview.[ch]                            ** REMOVE **
4631         * src/messageview.[ch]
4632         * src/mimeview.[ch]
4633         * src/prefs_common.[ch]
4634         * src/textview.c
4635         * src/plugins/Makefile.am
4636         * src/plugins/image_viewer/.cvsignore           ** NEW **
4637         * src/plugins/image_viewer/Makefile.am          ** NEW **
4638         * src/plugins/image_viewer/plugin.c             ** NEW **
4639         * src/plugins/image_viewer/viewer.[ch]          ** NEW **
4640                 move image viewer into a plugin (building is enabled by default)
4641                 [ToDo: Prefs for resize and autoview]
4642
4643 2003-03-25 [paul]       0.8.11claws45
4644
4645         * sync with 0.8.11cvs12
4646                 see ChangeLog 2003-03-26
4647
4648 2003-03-25 [paul]       0.8.11claws44
4649
4650         * sync with 0.8.11cvs11
4651                 see ChangeLog 2003-03-22, 2003-03-24 and 2003-03-25
4652                 
4653         Note: Selective Download is broken.
4654                 
4655 2003-03-22 [christoph]  0.8.11claws43
4656
4657         * src/folder.c
4658                 code cleanup for flags copying
4659
4660 2003-03-22 [christoph]  0.8.11claws42
4661
4662         * src/plugins/trayicon/trayicon.c
4663                 fix setting the transparent area when the window size
4664                 is forced by the system tray
4665
4666 2003-03-22 [christoph]  0.8.11claws41
4667
4668         * src/plugins/trayicon/gnome-mail.xpm           ** REMOVE **
4669         * src/plugins/trayicon/gnome-nomail.xpm         ** REMOVE **
4670         * src/plugins/trayicon/newmail.xpm              ** NEW **
4671         * src/plugins/trayicon/nomail.xpm               ** NEW **
4672         * src/plugins/trayicon/trayicon.c
4673         * src/plugins/trayicon/unreadmail.xpm           ** NEW **
4674                 o replace GBiff icons with KBiff icons resized to 16x16 pixel
4675                 o add icon for unread mails
4676                 o set transparency for window
4677
4678 2003-03-22 [christoph]  0.8.11claws40
4679
4680         * src/news.c
4681                 init news session to prevent crash when session is closed
4682
4683 2003-03-22 [christoph]  0.8.11claws39
4684
4685         * src/imap.c
4686         * src/common/session.[ch]
4687                 Init session data to make sure we don't have invalid pointers
4688                 for read_ch and write_ch when new multi process sessions are
4689                 not used
4690
4691         * src/main.c
4692         * src/common/plugin.c
4693         * src/common/sylpheed.c
4694         * src/plugins/demo/demo.c
4695         * src/plugins/dillo_viewer/dillo_viewer.c
4696         * src/plugins/mathml_viewer/mathml_viewer.c
4697         * src/plugins/spamassassin/spamassassin.c
4698         * src/plugins/spamassassin/spamassassin_gtk.c
4699                 add plugin types to allow loading plugins at different times
4700                 (and maybe for different frontends), because it's not good to
4701                 load GTK-Plugins gefore gtk_init was called
4702
4703         * configure.ac
4704         * src/plugins/Makefile.am
4705         * src/plugins/trayicon/.cvsignore               ** NEW **
4706         * src/plugins/trayicon/Makefile.am              ** NEW **
4707         * src/plugins/trayicon/eggtrayicon.c            ** NEW **
4708         * src/plugins/trayicon/eggtrayicon.h            ** NEW **
4709         * src/plugins/trayicon/gnome-mail.xpm           ** NEW **
4710         * src/plugins/trayicon/gnome-nomail.xpm         ** NEW **
4711         * src/plugins/trayicon/trayicon.c               ** NEW **
4712                 New Trayicon plugin that shows an icon in a systray that uses
4713                 XEMBED protocol like Gnome's systray. Icon shows if there
4714                 are new mails and a tooltip shows information about new,
4715                 unread and total messages.
4716
4717 2003-03-22 [paul]       0.8.11claws38
4718
4719         * src/common/smtp.c
4720                 fix ESMTP AUTH CRAM-MD5
4721                 [sync with main (still version 0.8.11cvs6), see
4722                  ChangeLog 2003-03-22]
4723
4724 2003-03-21 [colin]      0.8.11claws37
4725
4726         * src/send_message.c
4727                 Fix USE_SSL => USE_OPENSSL
4728
4729 2003-03-21 [colin]      0.8.11claws36
4730
4731         * src/folderview.c
4732                 Fix counts in drag and dropped subfolders
4733
4734 2003-03-21 [colin]      0.8.11claws35
4735
4736         * src/folder.c 
4737         * src/folderview.c
4738                 speed up a bit folder dnd
4739
4740 2003-03-20 [alfons]     0.8.11claws34
4741
4742         * src/main.c
4743         * src/toolbar.c
4744         * src/procmsg.c
4745                 don't send locked queue messages
4746                 (feature request "[ 705245 ] Locking message in outbox 
4747                  should prevent sending")
4748
4749 2003-03-20 [christoph]  0.8.11claws33
4750
4751         * src/folder.c
4752                 remove NEW and UNREAD flag in special folders when scanning
4753                 
4754         * src/common/smtp.c
4755                 fix ESMTP AUTH CRAM-MD5
4756
4757 2003-03-20 [paul]       0.8.11claws32
4758
4759         * src/prefs_account.c
4760                 Re-write 'Tunnel command to open connection' as
4761                 'Use command to communicate with server', and disable
4762                 it for all except IMAP accounts
4763
4764 2003-03-20 [paul]       0.8.11claws31
4765
4766         * sync with 0.8.11cvs6
4767                 see ChangeLog 2003-03-20
4768
4769 2003-03-19 [match]      0.8.11claws30
4770
4771         * src/addritem.[ch]
4772                 include documentation. minor refactoring.
4773         * src/addr_compl.[ch]
4774         * src/addrindex.[ch]
4775         * src/addresbook.[ch]
4776         * src/summaryview.c
4777                 re-enable address lookup (was disabled in
4778                 0.8.11claws20).
4779
4780 2003-03-19 [christoph]  0.8.11claws29
4781
4782         * src/procmsg.c
4783                 add temp flag handling, will make moving and copying
4784                 messages possible again
4785
4786         * src/folder.c
4787                 correct calulation of folder stats
4788
4789 2003-03-18 [match]      0.8.11claws28
4790
4791         * src/editgroup.h
4792                 remove case sensitive comparison (closes bug 80).
4793
4794 2003-03-18 [christoph]  0.8.11claws27
4795
4796         * src/imap.c
4797                 fix imap using a tunnel command
4798
4799         (closes bug 87)
4800
4801 2003-03-18 [christoph]  0.8.11claws26
4802
4803         * src/folder.[ch]
4804         * src/imap.c
4805         * src/procmsg.[ch]
4806                 rewrite flag handling for folders
4807
4808 2003-03-18 [christoph]  0.8.11claws25
4809
4810         * src/folder.c
4811         * src/procmsg.c
4812         * src/summaryview.c
4813                 unset NEW and UNREAD flags when message is ignored, to make
4814                 sure messages don't show up as unread on other IMAP clients,
4815                 because the IGNORE_THREAD flag can not be syncronized through
4816                 the IMAP folder
4817
4818 2003-03-17 [christoph]  0.8.11claws24
4819
4820         * src/imap.c
4821                 don't use recursion to fetch uids when the number of messages
4822                 does not match. Moved code into subfunction that is used
4823                 again when needed, to prevent an endless loop.
4824
4825 2003-03-17 [thorsten]   0.8.11claws23
4826
4827         * src/imageview.[ch]
4828                 export imageview_get_resized_size() (for plugins)
4829         * src/prefs_common.[ch]
4830                 added prefs_common_get() (for plugins)
4831
4832 2003-03-17 [christoph]  0.8.11claws22
4833
4834         * src/imap.c
4835                 o remove UID guessing from copy code
4836                 o support UIDPLUS extension for APPEND command
4837
4838 2003-03-17 [paul]       0.8.11claws21
4839
4840         * src/gtk/about.c
4841                 remove 'Compiled-plugins' section.
4842                 
4843         * src/plugins/dillo_viewer/dillo_viewer.c
4844                 slight change to description text
4845
4846 2003-03-16 [match]      0.8.11claws20
4847         * src/ldapserver.[ch]           ** NEW **
4848         * src/ldapctrl.[ch]             ** NEW **
4849         * src/ldapquery.[ch]            ** NEW **
4850         * src/ldaputil.[ch]             ** NEW **
4851         * src/addrcindex.[ch]           ** NEW **
4852         * src/addrquery.h               ** NEW **
4853         * src/addritem.[ch]
4854         * src/addrcache.[ch]
4855         * src/addrindex.[ch]
4856         * src/addr_compl.[ch]
4857         * src/addressbook.[ch]
4858         * src/addrbook.[ch]
4859         * src/editgroup.c
4860         * src/editaddress.c
4861         * src/editldap.c
4862         * src/editldap_basedn.c
4863         * src/vcard.c
4864         * src/jpilot.c
4865         * src/Makefile.am
4866                 included dynamic LDAP queries. improved address
4867                 completion.
4868
4869 2003-03-16 [paul]       0.8.11claws19
4870
4871         * tools/multiwebsearch.pl
4872                 fix a fatal typo
4873
4874 2003-03-16 [christoph]  0.8.11claws18
4875
4876         * src/mimeview.c
4877         * src/plugins/dillo_viewer/dillo_viewer.c
4878         * src/plugins/mathml_viewer/mathml_viewer.c
4879                 make unregistering of MimeViewerFactorys possible
4880
4881 2003-03-16 [alfons]     0.8.11claws17
4882
4883         * configure.ac
4884                 correct typo
4885
4886 2003-03-16 [melvin]     0.8.11claws16
4887
4888         * src/plugins/dillo_viewer.c
4889                 Fixed bug where it was not possible to view more than
4890                 one text/html attachment per message (bug discovered
4891                 by Christoph Hohmann).
4892
4893 2003-03-15 [melvin]     0.8.11claws15
4894
4895         * src/prefs_actions.c
4896                 Fixed compilation warnings.
4897
4898 2003-03-15 [melvin]     0.8.11claws14
4899
4900         * src/plugins/Makefile.am
4901         * src/plugins/dillo_viewer/.cvsignore                   ** NEW **
4902         * src/plugins/dillo_viewer/Makefile.am                  ** NEW **
4903         * src/plugins/dillo_viewer/dillo_viewer.c               ** NEW **
4904                 Added a html mail viewer plugin that uses Dillo v0.7.0 or
4905                 newer (http://dillo.auriga.wearlab.de/).
4906
4907 2003-03-15 [christoph]  0.8.11claws13
4908
4909         * src/imap.c
4910                 don't query imap folder for attributes because we already
4911                 for them from imap_status
4912
4913         * src/mimeview.[ch]
4914                 add support for plugable MimeViewers (unloading Viewers
4915                 not yet complete)
4916
4917         * src/plugins/Makefile.am
4918         * src/plugins/mathml_viewer/.cvsignore          ** NEW **
4919         * src/plugins/mathml_viewer/Makefile.am         ** NEW **
4920         * src/plugins/mathml_viewer/mathml_viewer.c     ** NEW **
4921                 add MathML Viewer (Content-Type text/mathml) using GtkMathView
4922                 widget from http://helm.cs.unibo.it/mml-widget/
4923
4924 2003-03-14 [christoph]  0.8.11claws12
4925
4926         * src/folder.[ch]
4927                 o error return code's should better be negative
4928                 o replace printf with debug_print
4929
4930         * src/imap.c
4931                 improve IMAP folder scan by checking UID-NEXT
4932
4933         * src/summaryview.c
4934                 remove check that are unnecessary in my opinion
4935
4936 2003-03-13 [christoph]  0.8.11claws11
4937
4938         * src/folder.[ch]
4939         * src/foldersel.c
4940         * src/folderview.c
4941         * src/imap.c
4942         * src/mbox_folder.c
4943         * src/mh.c
4944         * src/news.c
4945         * src/prefs_scoring.c
4946         * src/summaryview.c
4947                 use a common function to get a displayable name
4948                 for a FolderItem
4949
4950 2003-03-13 [paul]       0.8.11claws10
4951
4952         * tools/Makefile.am
4953           tools/README
4954           tools/multiwebsearch.conf     ** NEW FILE **
4955           tools/multiwebsearch.pl       ** NEW FILE **
4956                 add multiwebsearch Actions script
4957
4958 2003-03-13 [colin]      0.8.11claws9
4959
4960         * src/compose.c
4961                 Remove leading emtpy lines from quoted text
4962                 before quoting it
4963
4964 2003-03-13 [melvin]     0.8.11claws8
4965
4966         * src/prefs_actions.c
4967                 Fixed a memory leak
4968                 Code clean ups
4969                 Added Cancel and OK buttons
4970                 Corrected help text
4971
4972 2003-03-13 [christoph]  0.8.11claws7
4973
4974         * src/account.c
4975         * src/folder.[ch]
4976         * src/imap.c
4977         * src/mainwindow.c
4978         * src/mbox_folder.c
4979         * src/mh.c
4980         * src/news.c
4981         * src/setup.c
4982                 replace more folder type stuff with folder class stuff
4983
4984 2003-03-13 [melvin]     0.8.11claws6
4985
4986         * src/prefs_actions.c
4987                 Added new tokens:
4988                 %u: user provided argument
4989                 %h: user provided argument (hidden on input)
4990                 %s: current text selection in the message view 
4991
4992 2003-03-13 [paul]       0.8.11claws5
4993
4994         * sync with 0.8.11cvs5
4995                 see ChangeLog 2003-03-11, 2003-03-12
4996
4997 2003-03-12 [christoph]  0.8.11claws4
4998
4999         * src/folder.c
5000                 use folder class idstr when writing folderlist.xml
5001
5002         * src/folder.h
5003         * src/imap.c
5004         * src/news.c
5005                 replace folder type checks with folder class checks
5006
5007 2003-03-12 [christoph]  0.8.11claws3
5008
5009         * src/folder.[ch]
5010         * src/imap.[ch]
5011         * src/main.c
5012         * src/mbox_folder.[ch]
5013         * src/mh.[ch]
5014         * src/news.[ch]
5015                 o create a list of known folder classes in the folder system
5016                 o use folder class id strings for folder item identifiers
5017
5018 2003-03-12 [christoph]  0.8.11claws2
5019
5020         * src/imap.c
5021                 fix imap uid validity check
5022
5023 2003-03-12 [christoph]  0.8.11claws1
5024
5025         * src/account.c
5026         * src/folder.[ch]
5027         * src/foldersel.c
5028         * src/folderview.c
5029         * src/imap.c
5030         * src/mainwindow.c
5031         * src/mbox_folder.c
5032         * src/mh.c
5033         * src/news.c
5034         * src/prefs_scoring.c
5035         * src/procmsg.c
5036         * src/setup.c
5037         * src/summaryview.c
5038                 initial restructuring of folder system, seperating
5039                 folders and folder classes
5040
5041 2003-03-12 [paul]       0.8.11claws
5042
5043         0.8.11claws release
5044
5045 2003-03-12 [christoph]
5046
5047         * src/gtk/prefswindow.c
5048                 fix translation of "Page Index"
5049
5050 2003-03-12 [paul]       0.8.10claws110
5051
5052         a sync from 0.8.11cvs4 before the release
5053
5054         * src/common/utils.c
5055                 subject_compare_for_sort(): allow null strings (fixes
5056                 summary sorting).
5057
5058 2003-03-11 [paul]       0.8.10claws109
5059
5060         * po/es.po
5061                 update Spanish translation, submitted by
5062                 Ricardo Mones Lastra
5063
5064 2003-03-11 [melvin]     0.8.10claws108
5065
5066         * po/fr.po
5067                 Updated French translations
5068
5069 2003-03-11 [paul]       0.8.10claws107
5070
5071         * manual/en/Makefile.am
5072           manual/en/*.html
5073                 update English manual, add a new page
5074                 updated by Francois Barriere <fbarriere@atmel.fr>
5075                 
5076         * po/bg.po
5077           po/it.po
5078           po/sr.po
5079                 update Bulgarian, Italian, and Serbian translations
5080                 submitted by George Danchev, Alessandro Maestri, and
5081                 Urke MMI
5082
5083 2003-03-10 [paul]       0.8.10claws106
5084
5085         * src/gtk/about.c
5086           src/gtk/prefswindow.c
5087                 make some strings translatable
5088
5089 2003-03-10 [darko]      0.8.10claws105
5090
5091         * src/compose.c
5092                 code cleanup to make Hiro happy
5093
5094 2003-03-10 [paul]       0.8.10claws104
5095
5096         * sync with 0.8.11cvs2
5097                 see ChangeLog 2003-03-10
5098
5099 2003-03-09 [melvin]     0.8.10claws103
5100
5101         * src/textview.c
5102                 textview_set_font(): fix for message display in
5103                 UTF-8 locales (thanks to Sergey Vlasov).
5104                 (was unintentionnaly reverted in 0.8.6claws6)   
5105
5106 2003-03-08 [darko]      0.8.10claws102
5107
5108         * src/compose.c
5109                 fix infinite loop in wrapping as reported
5110                 by happycactus
5111                 obsoletes patch #696482
5112
5113 2003-03-08 [christoph]  0.8.10claws101
5114
5115         * src/imap.c
5116                 add workaround for IMAP servers that do not
5117                 support the "UID SEARCH UID" command
5118
5119 2003-03-07 [christoph]  0.8.10claws100
5120
5121         * src/plugins/spamassassin/spamassassin.[ch]
5122         * src/plugins/spamassassin/spamassassin_gtk.c
5123                 code cleanup
5124
5125 2003-03-07 [paul]       0.8.10claws99
5126
5127         * po/es.po
5128                 updated Spanish translation, submitted by
5129                 Ricardo Mones Lastra
5130
5131 2003-03-07 [christoph]  0.8.10claws98
5132
5133         * src/send.c
5134                 fix in 0.8.10claws94 was wrong
5135                 local delivery does not require escaping, remove escaping
5136                 code to make signatures of mails with "." lines valid
5137                 
5138                 NOTE: requires that sendmail is executed with "-i" option,
5139                       what is the default now, but has to be changed in all
5140                       exsiting accounts)
5141
5142 2003-03-07 [paul]       0.8.10claws97
5143
5144         * sync with 0.8.11 release
5145                 see ChangeLog 2003-03-07
5146
5147 2003-03-06 [paul]       0.8.10claws96
5148
5149         * src/compose.c
5150                 revert commit 0.8.10claws92
5151
5152 2003-03-06 [paul]       0.8.10claws95
5153
5154         * src/folderview.c
5155                 fix (solaris) bug 73, 'Crash when selecting top-level folder'
5156
5157         * src/gtkaspell.c
5158                 fix bug 74, 'Crash opening editor window with pseudo-color
5159                 display'
5160                 
5161         Patches submitted by Kevin Vigor <kevin@vigor.nu>
5162
5163 2003-03-06 [christoph]  0.8.10claws94
5164
5165         * src/send.c
5166                 fix rfc2821 (4.5.2) violation in SMTP data sending,
5167                 all lines starting with a period get an extra period
5168                 inserted
5169                 (found by Simon 'corecode' Schubert)
5170
5171 2003-03-06 [paul]       0.8.10claws93
5172
5173         * src/folderview.c
5174                 if configured font can't be loaded fall back to gtk
5175                 default. (with thanks to Christoph)
5176                 
5177                 closes long-standing bug 15 'Crashes on startup'
5178
5179 2003-03-06 [paul]       0.8.10claws92
5180
5181         * src/compose.c
5182                 freeze text before autosave and thaw afterwards
5183                 fixes bug 67 'autosave make re-rediting message crazy'
5184
5185 2003-03-06 [christoph]  0.8.10claws91
5186
5187         * src/compose.c
5188                 ignore address comment in dupe check for Cc-list
5189
5190         (closes reopened bug 47 Replying to message strips name part of
5191          e-mail addresses of Cc: lines)
5192
5193 2003-03-06 [paul]       0.8.10claws90
5194
5195         * src/Makefile.am
5196                 remove reference to gtkxtext.h as its no longer in
5197                 the repository
5198
5199 2003-03-06 [paul]       0.8.10claws89
5200
5201         * sync with 0.8.10cvs25
5202                 see ChangeLog 2003-03-06
5203
5204 2003-03-06 [oliver]     0.8.10claws88
5205         
5206         * src/messageview.c
5207                 remove include
5208
5209 2003-03-06 [oliver]     0.8.10claws87
5210         
5211         * src/folderview.c 
5212                 remove changes introduced inclaws74
5213         * src/messageview.c
5214                 another attempt to sanely delete and update
5215                 messages deleted in separate messageview
5216
5217 2003-03-05 [christoph]  0.8.10claws86
5218
5219         * src/summaryview.c
5220                 check if "From" matches any account's address if
5221                 addressbook completion of addresses is disabled too
5222
5223         (closes Bug 70 "Display recipient in from" doesn't check
5224          folder's default account)
5225
5226 2003-03-05 [christoph]  0.8.10claws85
5227
5228         * src/compose.c
5229         * src/common/utils.[ch]
5230                 don't strip address comments when building Cc lists
5231
5232         (closes Bug 47 Replying to message strips name part of e-mail addresses
5233          of Cc: lines)
5234
5235         * src/folder.c
5236                 fix return value of copy function
5237
5238 2003-03-05 [christoph]  0.8.10claws84
5239
5240         * src/imap.c
5241                 don't ask imap server for non rfc822 headers
5242
5243         (closes bug 71 IMAP FETCH asks for FROM header field twice)
5244
5245         * src/imap.c
5246                 destroy session on socket error to allow reconnecting
5247
5248 2003-03-05 [christoph]  0.8.10claws83
5249
5250         * configure.ac
5251                 fix building with gnome when no prefix is set
5252
5253         (closes bug 66 Gnome directory is set to NONE)
5254
5255 2003-03-05 [paul]       0.8.10claws82
5256
5257         * sync with 0.8.10cvs23
5258                 see ChangeLog 2003-03-05
5259
5260 2003-03-04 [christoph]  0.8.10claws81
5261
5262         * src/folder.c
5263                 o fix moving and copying when folder returns 0 for new
5264                   message number
5265                 o remove some code for single message copy and move
5266                   operations and use functions for multiple messages
5267
5268         (closes bug 63 Strange behaviour MOVING messages from MH to IMAP)
5269
5270         * src/news.c
5271                 remove unused include
5272
5273 2003-03-04 [paul]       0.8.10claws80
5274
5275         * src/gtk/about.c
5276                 list 'Compiled plugins'
5277
5278 2003-03-03 [christoph]  0.8.10claws79
5279
5280         * src/news.[ch]
5281                 have to multiply the percentage of the current fetch with
5282                 the percentage that it has of the total fetch operation
5283                 for correct values
5284
5285 2003-03-03 [christoph]  0.8.10claws78
5286
5287         * src/news.c
5288                 fix calculation of expected lines for progress indicator
5289
5290 2003-03-03 [christoph]  0.8.10claws77
5291
5292         * src/summaryview.c
5293         * src/common/utils.c
5294                 fix segfault when opening the root news folder
5295
5296 2003-03-03 [christoph]  0.8.10claws76
5297
5298         * src/mainwindow.[ch]
5299         * src/common/Makefile.am
5300         * src/common/progressindicator.[ch]
5301                 add UI independent progress indicator handling
5302
5303         * src/news.[ch]
5304                 use new progress indicator for message info fetching
5305
5306         * src/common/hooks.h
5307                 code cleanup
5308
5309 2003-03-03 [oliver]     0.8.10claws75
5310
5311         * src/toolbar.c
5312         * src/compose.c
5313                 removed commented code
5314
5315 2003-03-03 [oliver]     0.8.10claws74
5316
5317         * src/toolbar.[ch]
5318                 cleanups and refactoring
5319         * src/compose.[ch]
5320                 compose_reply_mode reply & forwarding interface for
5321                 toolbar buttons
5322         * src/folderview.c
5323                 act on messages marked for deletion in folderview_selected
5324                 based on prefs_common.immediate_exec since a message might 
5325                 have been deleted by messageview in a folder we are changing 
5326                 to (does anybody understand what I'm on about ?)
5327
5328 2003-03-03 [oliver]     0.8.10claws73
5329         
5330         * src/messageview.[ch]
5331                 new functions
5332                 - messageview_delete: delete message shown in messagview
5333                 - messageview_update_view: update messageview to currently 
5334                   selected summaryview message
5335                 - add separate messageview to msgview_list in order to update 
5336                   toolbar to new toolbar style on the fly (TOOLBAR_NONE, TOOLBAR_ICON etc.)
5337         * src/summaryview.[ch]
5338                 summary_get_selection returns a list of selected msgs
5339                 in summaryview
5340         * src/mainwindow.c
5341                 toolbar reply refactoring
5342
5343 2003-03-03 [paul]       0.8.10claws72
5344
5345         * sync with 0.8.10cvs21
5346                 see ChangeLog 2003-03-03
5347
5348 2003-03-02 [christoph]  0.8.10claws71
5349
5350         * src/common/passcrypt.c
5351                 use POSIX includes
5352
5353 2003-03-02 [christoph]  0.8.10claws70
5354
5355         * configure.ac
5356         * src/prefs_account.c
5357         * src/prefs_gtk.[ch]
5358         * src/common/.cvsignore
5359         * src/common/Makefile.am
5360         * src/common/passcrypt.c                ** NEW **
5361         * src/common/passcrypt.h.in             ** NEW **
5362                 Implement password encryption in config files
5363                 using unix encrypt and setkey functions. The crypt
5364                 key can be set as a configure parameter. Old
5365                 passwords will be converted if they do not begin
5366                 with '!'
5367
5368 2003-03-02 [paul]       0.8.10claws69
5369
5370         * src/prefs_account.c
5371                 fix compile error
5372
5373 2003-03-01 [thorsten]   0.8.10claws68
5374
5375         * po/el.po
5376           po/hr.po
5377           po/it.po
5378           po/nl.po
5379           po/sr.po
5380           po/sv.po
5381                 corrected format strings
5382         * po/en_GB.po
5383                 corrected headers
5384                 (fix compile errors with GNU gettext-0.11.5)
5385
5386 2003-03-01 [oliver]     0.8.10claws67
5387
5388         * src/summaryview.c
5389                 menu callbacks call toolbar_menu_reply
5390
5391 2003-03-01 [oliver]     0.8.10claws66
5392
5393         * src/mainwindow.c
5394         * src/messageview.c
5395                 menu callbacks call toolbar_menu_reply
5396         * src/toolbar.[ch]
5397                 callbacks from menu handled by toolbar_menu_reply
5398
5399 2003-03-01 [paul]       0.8.10claws65
5400
5401         * src/addressbook.c
5402                 revert commit 0.8.10claws54 - breaks editing of
5403                 addressbook.
5404                 
5405         * po/bg.po
5406                 update Bulgarian translation, submitted by
5407                 George Danchev
5408
5409 2003-02-28 [christoph]  0.8.10claws64
5410
5411         * src/account.c
5412         * src/addressadd.c
5413         * src/compose.c
5414         * src/gtkaspell.c
5415         * src/gtkxtext.h                ** REMOVE **
5416         * src/imap.c
5417         * src/matcher.[ch]
5418         * src/mh.c
5419         * src/news.c
5420         * src/pine.c
5421         * src/prefs_common.c
5422         * src/prefs_matcher.c
5423         * src/procheader.[ch]
5424         * src/procmsg.[ch]
5425         * src/toolbar.c
5426         * src/common/ssl_certificate.c
5427         * src/gtk/colorlabel.c
5428         * src/gtk/menu.c
5429                 o fix warnings
5430                 o remove code obsoleted by new cache and folder system rework
5431
5432 2003-02-28 [oliver]     0.8.10claws63
5433         
5434         * src/toolbar.[ch]
5435                 * fix bug where reply in Messageview replied to 
5436                 Message displayed in summaryview
5437                 (reportedd via ML by chinatinte at gmx dot ch)
5438                 * fix bug where toolbar popups (WITH_QUOTE, WITHOUT_QOUTE)
5439                 didn't work in separate MessageView Toolbar
5440                 (wondering if anybody uses this at all ?)
5441         * src/summaryview.[ch]
5442                 use toolbar.c's toolbar_reply instead of summary_reply (removed)
5443                 (generalize reply and forward code);
5444         * src/messageview.c 
5445                 remove focus_in event which updated summaryview to messageview
5446
5447 2003-02-28 [paul]       0.8.10claws62
5448
5449         * po/Makefile.in.in
5450                 add the --check option
5451                 Patch submitted by Ricardo Mones Lastra
5452
5453 2003-02-28 [paul]       0.8.10claws61
5454
5455         * src/prefs_account.c
5456                 re-order 'Signature' items
5457
5458 2003-02-28 [paul]       0.8.10claws60
5459
5460         * sync with 0.8.10cvs20
5461                 see ChangeLog 2003-02-28
5462
5463 2003-02-28 [paul]       0.8.10claws59
5464
5465         * po/POTFILES.in
5466                 update to reflect recent movement of files
5467
5468 2003-02-28 [paul]       0.8.10claws58
5469
5470         * sync with 0.8.10cvs19
5471                 see ChangeLog 2003-02-28
5472
5473 2003-02-27 [martin]     0.8.10claws57
5474
5475         * src/prefs_matcher.c 
5476                 fix segfault in prefs_matcher_ok() when the
5477                 last entry is deleted and prevents that the
5478                 message "entry not saved" comes up after deleting
5479                 an entry
5480
5481 2003-02-27 [martin]     0.8.10claws56
5482
5483         * src/prefs_filtering.c 
5484                 fix segfault in prefs_filtering_ok() when the
5485                 last entry is deleted and prevents that the
5486                 message "entry not saved" comes up after deleting
5487                 an entry
5488
5489 2003-02-27 [paul]       0.8.10claws55
5490
5491         * sync with 0.8.10cvs18
5492                 see ChangeLog 2003-02-27
5493
5494 2003-02-27 [paul]       0.8.10claws54
5495
5496         * src/addressbook.c
5497                 fix bug where the address book crashes with 
5498                 multiple lookups.
5499                 Patch [687729] submitted by David Frager 
5500                 <dbfrager@users.sourceforge.net>
5501
5502 2003-02-25 [christoph]  0.8.10claws53
5503
5504         * src/Makefile.am
5505         * src/colorlabel.[ch]           ** REMOVE **
5506         * src/gtk/Makefile.am
5507         * src/gtk/colorlabel.[ch]       ** NEW **
5508                 move colorlabel files to gtk directory
5509
5510         * src/esmtp.[ch]                ** REMOVE **
5511                 has been merged into smtp.[ch] in 0.7.5
5512
5513 2003-02-25 [christoph]  0.8.10claws52
5514
5515         * src/Makefile.am
5516         * src/about.[ch]                ** REMOVE **
5517         * src/gtk/Makefile.am
5518         * src/gtk/about.[ch]            ** NEW **
5519                 move about files to gtk directory
5520
5521 2003-02-25 [christoph]  0.8.10claws51
5522
5523         * src/folder.c
5524                 some code optimization of folder scanning code
5525
5526         Patch submitted by Simon 'corecode' Schubert <corecode@corecode.ath.cx> 
5527
5528 2003-02-25 [christoph]  0.8.10claws50
5529
5530         * src/main.c
5531         * src/common/sylpheed.c
5532                 add command line parameter parsing to common code
5533
5534 2003-02-24 [christoph]
5535
5536         * Makefile.am
5537         * configure.ac
5538                 fix gnome prefix problems, the configure script now removed
5539                 `gnome-config --prefix` from `gnome-config --datadir`
5540                 and adds $(prefix} instead
5541
5542         (closes Bug 24 Makefile does not respect prefix when installing
5543          GNOME data)
5544
5545 2003-02-24 [christoph]  0.8.10claws49
5546
5547         * src/news.c
5548                 check for valid session before trying to authenticate
5549
5550         (closes Bug 60 crash if "authenticate on logon" is activated
5551          and newsserver-hostname is not valid)
5552
5553 2003-02-24 [melvin]     0.8.10claws48
5554
5555         * src/prefs_actions.c
5556                 Make sure all user's input is sent to the action and then
5557                 close the socket..
5558
5559 2003-02-23 [alfons]     0.8.10claws46
5560
5561         * src/summaryview.c
5562                 also wait cursor when deleting files
5563
5564 2003-02-23 [paul]
5565
5566         * tools/freshmeat_search.pl
5567           tools/google_search.pl
5568                 scripts should now work for any browser/browser command line
5569
5570 2003-02-22 [christoph]  0.8.10claws45
5571
5572         * src/procmsg.c
5573                 fix IMAP flag setting, IMAP flag is not handled correctly
5574                 anymore by the folder system and information about the
5575                 folder should not be saved in the MsgInfo (in my opinion)
5576
5577         Patch submitted by Simon 'corecode' Schubert <corecode@corecode.ath.cx>
5578
5579 2003-02-22 [christoph]  0.8.10claws44
5580
5581         * src/summaryview.c
5582                 fix spelling of "label" ;-)
5583
5584 2003-02-22 [thorsten]   0.8.10claws43
5585
5586         * src/mimeview.c
5587           src/prefs_common.[ch]
5588           src/procmime.[ch]
5589                 do not use description as attachment name
5590
5591 2003-02-22 [alfons]     0.8.10claws42
5592
5593         * src/summaryview.c
5594                 freeze/thaw folder item updates when changing color labels,
5595                 and put a wait cursors on
5596
5597 2003-02-22 [thorsten]   0.8.10claws41
5598
5599         * src/mimeview.c
5600                 save-all fixes: crash if invoked on multipart container,
5601                 mimeinfo access, pathseparators, error dialog
5602
5603 2003-02-21 [alfons]     0.8.10claws40
5604
5605         * src/prefs_gtk.c
5606                 remove unused var
5607
5608 2003-02-21 [colin]      0.8.10claws39
5609
5610         * src/send.c
5611                 Fix smtp logging
5612
5613 2003-02-21 [colin]      0.8.10claws38
5614
5615         * src/summaryview.c
5616                 Freeze/thaw folderItem updates when filtering messages 
5617                 via Tools/Filter messages
5618
5619 2003-02-21 [paul]       0.8.10claws37
5620
5621         * src/compose.c
5622                 revert commit 0.8.10claws26, there are ulterior motives
5623                 for users to set a Reply-To header when posting to
5624                 newsgroups
5625
5626 2003-02-21 [paul]       0.8.10claws36
5627
5628         * sync with 0.8.10cvs17
5629                 see ChangeLog 2003-02-21
5630
5631 2003-02-20 [christoph]  0.8.10claws35
5632
5633         * src/imap.c
5634                 IMAP UID fetch speedup using SEARCH
5635
5636         Patch submitted by Simon 'corecode' Schubert <corecode@corecode.ath.cx>
5637
5638         * src/imap.c
5639                 fix problem with UIDs in IMAP UID cache that no longer existed
5640
5641 2003-02-20 [christoph]  0.8.10claws34
5642
5643         * src/imap.c
5644         * src/procheader.c
5645         * src/procheader.h
5646                 IMAP header fetch speedup (fetch only headers cached in MsgInfo)
5647
5648         Patch submitted by Simon 'corecode' Schubert <corecode@corecode.ath.cx>
5649
5650         * src/imap.c
5651                 Rewrite imap_cmd_gen_recv use sock_getline instead
5652                 of sock_gets to avoid problems with too long reply
5653                 lines
5654     
5655 2003-02-20 [colin]      0.8.10claws33
5656         
5657         * src/prefs_account.c
5658                 Better wording
5659
5660 2003-02-20 [colin]      0.8.10claws32
5661
5662         * src/compose.c
5663                 Remove useless '&& !to_sender' 
5664
5665 2003-02-20 [darko]
5666
5667         * AUTHORS
5668                 change my e-mail address
5669
5670 2003-02-19 [colin]      0.8.10claws31
5671
5672         * src/prefs_common.c
5673                 X11 style colors for every configurable color
5674
5675 2003-02-19 [alfons]     0.8.10claws30
5676
5677         * src/prefs_gtk.[ch]
5678         * src/prefs_common.c
5679                 for color_new accept both plain integers and X11 style color
5680                 names (as found in /usr/lib/X11/rgb.txt)
5681
5682 2003-02-19 [paul]       0.8.10claws29
5683
5684         * src/mainwindow.c
5685                 add tooltips to online/offline button and account selector
5686                 button
5687
5688 2003-02-19 [paul]       0.8.10claws28
5689
5690         * src/folder.c
5691           src/news.c
5692           src/prefs_account.[ch]
5693           src/prefs_common.[ch]
5694                 move 'Maximum number of articles to download' to
5695                 account prefs.
5696                 clean up account prefs gui a little by hiding entries
5697                 rather then greying out entries
5698
5699 2003-02-19 [hiro]       0.8.10claws27
5700
5701         * src/common/utils.c
5702                 fix bug #54 'yesterdays date is displayed in the message 
5703                 summary window'
5704
5705 2003-02-19 [paul]       0.8.10claws26
5706
5707         * src/compose.c
5708                 fix bug reported in Feature Request [688596] 
5709                 'Reply-to header in news'
5710
5711 2003-02-18 [paul]       0.8.10claws25
5712
5713         * src/select-keys.c
5714                 add a 'List all keys' button to key selection dialog
5715
5716 2003-02-18 [colin]      0.8.10claws24
5717         
5718         * src/stock_pixmap.c
5719                 fix compile error
5720
5721 2003-02-18 [colin]      0.8.10claws23
5722
5723         * src/common/smtp.[ch]
5724           src/prefs_account.c
5725                 Try to starttls if it seems to be the only
5726                 way to authenticate a user
5727
5728 2003-02-18 [paul]       0.8.10claws22
5729
5730         * src/Makefile.am
5731           src/folderview.c
5732           src/stock_pixmap.[ch]
5733           src/pixmaps/drafts_close.xpm  ** NEW FILE **
5734           src/pixmaps/drafts_open.xpm   ** NEW FILE **
5735                 as a Drafts folder is a special folder allow it to have
5736                 its own unique icons
5737
5738 2003-02-18 [colin]      0.8.10claws21
5739
5740         * src/imap.c
5741                 Fix port selection when using starttls
5742
5743 2003-02-18 [paul]       0.8.10claws20
5744
5745         * src/mainwindow.c
5746           src/prefs_common.[ch]
5747                 make blue the default new mail colour
5748
5749 2003-02-18 [paul]       0.8.10claws19
5750
5751         * sync with 0.8.10cvs14
5752                 see ChangeLog 2003-02-18
5753
5754 2003-02-17 [jens]       0.8.10claws18
5755
5756         * src/common/md5.c
5757                 fixed a compile problem with gcc 3.3
5758                 works on 2.95.3 too (testet on PPC as it is big endian)
5759
5760 2003-02-17 [paul]       0.8.10claws17
5761
5762         * sync with 0.8.10cvs13
5763                 see ChangeLog 2003-02-17
5764
5765 2003-02-17 [paul]       0.8.10claws16
5766
5767         * sync with 0.8.10cvs12
5768                 see ChangeLog 2003-02-17
5769
5770 2003-02-16 [match]      0.8.10claws15
5771
5772         * src/addressbook.c
5773                 Eliminates reloading of address data when items
5774                 deleted or added. Applied submitted by
5775                 Luke Plant <lukeplant@softhome.net>
5776
5777 2003-02-16 [paul]       0.8.10claws14
5778
5779         * src/news.c
5780                 when a 'protocol error' is encountered disconnect from
5781                 the server. This means that the user can carry on viewing
5782                 other articles and doesn't have to either wait until the
5783                 server timesout or quit sylpheed.
5784                 Fixes bug #53 'Unable to read messages in newsgroups, 
5785                 displayed message doesn't change'
5786
5787 2003-02-15 [christoph]  0.8.10claws13
5788
5789         * src/imap.c
5790                 fix bug that stopped scanning of folders when an
5791                 IMAP folder was empty
5792
5793         (closes bug 46 stop scan messages in folders after empty folder)
5794
5795 2003-02-15 [paul]
5796
5797         * tools/Makefile.am
5798           tools/README
5799           tools/freshmeat_search.pl     ** NEW FILE **
5800           tools/google_search.pl        ** NEW FILE **
5801                 Add 2 Actions scripts which search freshmeat/google
5802                 for the selected text using the browser configured
5803                 in sylpheedrc.
5804                 
5805         Note: These scripts are very dependent on the format of the
5806         browser command and may not work on every occasion. Testing
5807         is welcome. 
5808
5809 2003-02-14 [alfons]     0.8.10claws12
5810
5811         * src/compose.c
5812                 fix breakage because of uninitialized account pointer.
5813                 please verify.
5814
5815 2003-02-14 [paul]       0.8.10claws11
5816
5817         * src/compose.c
5818           src/prefs_account.[ch]
5819           src/prefs_common.[ch]
5820                 move signature settings to Account Prefs
5821
5822 2003-02-14 [paul]       0.8.10claws10
5823
5824         * sync with 0.8.10cvs11
5825                 see ChangeLog 2003-02-14
5826
5827 2003-02-13 [thorsten]   0.8.10claws9
5828
5829         * src/news.c
5830                 revert news progressbar (GUI separation)
5831
5832 2003-02-13 [paul]       0.8.10claws8
5833
5834         * src/compose.c
5835                 make replies behave correctly, re: RFC 1036, Section 2.2.3,
5836                 paragraph 1
5837
5838 2003-02-13 [paul]       0.8.10claws7
5839
5840         * src/compose.[ch]
5841           src/summaryview.c
5842                 fix 'Follow-up and Reply-to' so that it creates a reply to
5843                 the newsgroup and the sender. If the message has the keyword
5844                 'poster' in the Followup-To header, all replies go to the
5845                 sender, re: RFC 1036, Section 2.2.3
5846                 rename all instances of 'ignore_replyto' to 'to_sender', both
5847                 were previously used, now we use just one.
5848
5849 2003-02-13 [paul]       0.8.10claws6
5850
5851         * sync with 0.8.10cvs9
5852                 see ChangeLog 2003-02-13
5853
5854 2003-02-13 [paul]       0.8.10claws5
5855
5856         * configure.ac
5857                 show which plugins are configured in the configure
5858                 output.
5859
5860 2003-02-12 [thorsten]   0.8.10claws4
5861
5862         * src/news.c
5863                 show progress while fetching news headers
5864
5865 2003-02-12 [christoph]  0.8.10claws3
5866
5867         * configure.ac
5868         * src/plugins/Makefile.am
5869                 use AM_CONDITIONAL to enable plugins, automake correctly
5870                 manages this when creating distdir
5871
5872 2003-02-12 [christoph]  0.8.10claws2
5873
5874         * ac/spamassassin.m4
5875         * src/plugins/spamassassin/Makefile.am
5876                 fix building SpamAssassin plugin without OpenSSL
5877
5878 2003-02-12 [paul]       0.8.10claws1
5879
5880         * ac/Makefile.am
5881           src/Makefile.am
5882           src/plugins/Makefile.am
5883                 fix failure of 'make release'
5884
5885 2003-02-12 [paul]       0.8.10claws
5886
5887         * 0.8.10claws released
5888
5889 2003-02-12 [paul]       0.8.9claws56
5890
5891         * po/bg.po
5892           po/es.po
5893           po/it.po
5894           po/ru.po
5895           po/sr.po
5896                 updated translations by George Danchev, Ricardo Mones Lastra,
5897                 Alessandro Maestri, Ruslan N. Balkin and Urke MMI respectively
5898                 
5899         * sylpheed.spec.in
5900                 Allow the building of RPMs by a regular user. Submitted
5901                 by Sergei Astanin
5902
5903 2003-02-11 [alfons]     0.8.9claws55
5904
5905         * src/colorlabel.c
5906                 don't use pixmaps for label color rect but draw rectangles
5907                 so we can respect the color map of palette based visuals
5908                 (fixes the long time crashes on Suns - thanks to Andreas
5909                 Engel and Steve O'Hara-Smith for testing)
5910
5911 2003-02-11 [christoph]  0.8.9claws54
5912
5913         * src/matcher_parser_parse.y
5914                 correct bug where filering rules of not existing folders in
5915                 matcherrc were added to global filtering
5916                 
5917         (closes Debian Bug #180253 - Directory's filter-rules are merged with
5918          main filter-rules after removing directory, http://bugs.debian.org/180253)
5919         
5920 2003-02-11 [paul]       0.8.9claws53
5921
5922         * sync with 0.8.10cvs7
5923                 see ChangeLog 2003-02-09
5924
5925 2003-02-11 [melvin]     0.8.9claws52
5926
5927         * po/fr.po
5928                 Updated French tranlsations
5929
5930 2003-02-10 [paul]       0.8.9claws51
5931
5932         * sylpheed.spec.in
5933                 correct --enable-openssl
5934                 Fix submitted by Sergei Astanin <asita@users.sourceforge.net>
5935
5936 2003-02-09 [martin]     0.8.9claws50
5937
5938         * src/prefs_matcher.c
5939                 fix segfault in prefs_matcher_substitute_cb() when
5940                 no row is selected
5941
5942 2003-02-09 [paul]       0.8.9claws49
5943
5944         * src/folderview.c
5945                 fix bug where a newsgroup folder's processing rules were
5946                 merged with the global filtering rules when the newsgroup
5947                 folder was deleted, causing some seriously bad results,
5948                 see <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=180253>
5949
5950 2003-02-08 [melvin]     0.8.9claws48
5951
5952         * src/compose.c
5953                 Corrected and modified an alert message.
5954
5955 2003-02-07 [paul]       0.8.9claws47
5956
5957         * src/folderview.c
5958                 fix bug where both an 'Account properties' window and a
5959                 'Folder properties' window were opened when clicking on
5960                 'Properties' in an NNTP or IMAP folder's popup menu.
5961
5962 2003-02-07 [paul]       0.8.9claws46
5963
5964         * sync with 0.8.10cvs6
5965                 see ChangeLog 2003-02-06
5966
5967 2003-02-06 [christoph]  0.8.9claws45
5968
5969         * src/mbox.c
5970                 freeze folder updates while importing mbox files
5971                 (closes bug 43 importing mbox took hours)
5972                 
5973         Patch submitted by Jens Rantil <jens.rantil@telia.com>
5974
5975 2003-02-06 [thorsten]   0.8.9claws44
5976
5977         * po/de.po
5978                 Updated german translations
5979
5980 2003-02-06 [thorsten]   0.8.9claws43
5981
5982         * src/news.h
5983                 use guint for message numbers (fix count in grouplist dialog)
5984
5985 2003-02-05 [paul]       0.8.9claws42
5986
5987         * sync with 0.8.10cvs2
5988                 see ChangeLog 2003-02-05
5989
5990 2003-02-04 [colin]      0.8.9claws41
5991
5992         * src/prefs_common.[ch]
5993           src/procmsg.c
5994           src/summaryview.c
5995                 Add an option to disable threading by subject
5996
5997 2003-02-04 [christoph]  0.8.9claws40
5998
5999         * src/inc.c
6000                 only abort fetching mails from multiple accounts when the
6001                 error is fatal and does not allow to check any more accounts
6002                 (currently only disk full error)
6003
6004         (closes bug 31 after POP3 error: "no such mail" Sylpheed does not
6005          receive mails for other accouts)
6006
6007 2003-02-04 [christoph]  0.8.9claws39
6008
6009         * src/folder.c
6010                 first add the new message to the cache, then
6011                 send the update notification
6012
6013         (closes bug 39 after sending message folderview doesnt get updated)
6014
6015 2003-02-04 [colin]      0.8.9claws38
6016
6017         * src/inc.c
6018                 _really_ fix this Connecting... status
6019
6020 2003-02-04 [paul]       0.8.9claws37
6021
6022         * sync with 0.8.10
6023                 see ChangeLog 2003-02-04
6024
6025 2003-02-04 [paul]       0.8.9claws36
6026
6027         * sync with 0.8.9cvs6
6028                 see ChangeLog 2003-02-03
6029
6030 2003-02-04 [paul]       0.8.9claws35
6031
6032         * po/pt_BR.po
6033                 updated by André Filipe de Assunção e Brito 
6034                 <bedecko@netsite.com.br>
6035
6036 2003-02-03 [thorsten]   0.8.9claws34
6037
6038         * po/de.po
6039                 Updated german translations
6040
6041 2003-02-02 [paul]       0.8.9claws33
6042
6043         * po/es.po
6044                 updated by Ricardo Mones Lastra
6045
6046 2003-02-02 [thorsten]   0.8.9claws32
6047
6048         * src/mh.c
6049                 Fix mh_get_msginfo() segfault if file is inaccessible
6050
6051 2003-01-31 [colin]      0.8.9claws31
6052
6053         * src/procheader.c
6054                 Fix last commit's bug
6055
6056 2003-01-31 [colin]      0.8.9claws30
6057
6058         * src/procheader.c
6059                 Missing a change for gpg-signed messages
6060
6061 2003-01-31 [paul]       0.8.9claws29
6062
6063         * src/pixmaps/gpg_signed.xpm    ** NEW FILE **
6064           src/procheader.c
6065           src/stock_pixmap.[ch]
6066           src/summaryview.c
6067                 indicate GnuPG signed messages by displaying an icon
6068                 in the Attachment column.
6069
6070 2003-01-31 [paul]       0.8.9claws28
6071
6072         * sync with 0.8.9cvs4
6073                 see ChangeLog 2003-01-31
6074
6075 2003-01-31 [alfons]     0.8.9claws27
6076
6077         * src/textview.c
6078                 tune URI parser to accept mailto URLs with a '?'
6079                 (patch from Ruslan Balkin)
6080
6081 2003-01-31 [colin]      0.8.9claws26
6082
6083         * src/summaryview.c
6084                 Fix a leak introduced in claws24
6085
6086 2003-01-31 [colin]      0.8.9claws25
6087
6088         * src/summaryview.c
6089                 Freeze/Thaw folder updates when deleting dups
6090
6091 2003-01-31 [colin]      0.8.9claws24
6092         
6093         * src/addr_compl.c
6094           src/summaryview.c
6095           src/msgcache.c
6096                 little speed improvements
6097
6098 2003-01-31 [colin]      0.8.9claws23
6099
6100         * src/summaryview.c
6101                 Fix segfault when forwarding nothing
6102                 Patch from "Ruslan N. Balkin" <baron@voices.ru>
6103                 
6104 2003-01-30 [paul]       0.8.9claws22
6105
6106         * sync with 0.8.9cvs3
6107                 see ChangeLog 2003-01-30
6108
6109 2003-01-30 [paul]       0.8.9claws21
6110
6111         * sync with 0.8.9cvs2
6112                 see ChangeLog 2003-01-30
6113
6114 2003-01-29 [paul]       0.8.9claws20
6115
6116         * sync with 0.8.9cvs1
6117                 see ChangeLog 2003-01-29
6118
6119 2003-01-28 [paul]       0.8.9claws19
6120
6121         * po/POTFILES.in
6122                 update to reflect changes. 
6123                 thanks to Ricardo Mones Lastra
6124
6125 2003-01-27 [christoph]  0.8.9claws18
6126
6127         * ac/openssl.m4
6128         * ac/spamassassin.m4
6129         * src/plugins/spamassassin/README
6130         * src/plugins/spamassassin/libspamc.[ch]
6131         * src/plugins/spamassassin/utils.[ch]
6132                 updated to latest libspamc
6133
6134 2003-01-27 [christoph]  0.8.9claws17
6135
6136         * src/folder.c
6137                 fix wrong use of procheader_get_header_fields
6138
6139 2003-01-27 [christoph]  0.8.9claws16
6140
6141         * src/news.c
6142         * src/prefs_account.[ch]
6143         * src/common/nntp.[ch]
6144                 allow to force authentication for NNTP servers
6145
6146         Patch submitted by Florian Mickler <dmk@d-labs.de>
6147
6148 2003-01-26 [paul]       0.8.9claws15
6149
6150         * src/summaryview.c
6151                 speed up of marking messages as read
6152                 patch submitted by Jens Rantil <ztyx@users.sourceforge.net>
6153
6154 2003-01-26 [christoph]  0.8.9claws14
6155
6156         * src/Makefile.am
6157         * src/mgutils.[ch]              ** REMOVE **
6158         * src/xml.[ch]                  ** REMOVE **
6159         * src/xmlprops.[ch]             ** REMOVE **
6160         * src/common/Makefile.am
6161         * src/common/mgutils.[ch]       ** NEW **
6162         * src/common/xml.[ch]           ** NEW **
6163         * src/common/xmlprops.[ch]      ** NEW **
6164                 move xml files to common directory
6165
6166 2003-01-26 [christoph]  0.8.9claws13
6167
6168         * src/plugins/spamassassin/spamassassin_gtk.c
6169                 only set gtk entry text if string is available
6170
6171 2003-01-26 [melvin]     0.8.9claws12
6172
6173         * src/description_window.c
6174                 Allow resizing of the window
6175                 Allow automatic horizontal scroll bar
6176                 Do not vertically expand and fill
6177
6178 2003-01-26 [christoph]  0.8.9claws11
6179
6180         * src/Makefile.am
6181         * src/gtkutils.[ch]             ** REMOVE **
6182         * src/common/sylpheed.c
6183         * src/gtk/Makefile.am
6184         * src/gtk/description_window.c
6185         * src/gtk/gtkutils.[ch]         ** NEW **
6186         * src/gtk/prefswindow.c
6187                 move gtkutils to gtk directory
6188
6189 2003-01-26 [paul]       0.8.9claws10
6190
6191         * src/summaryview.c
6192                 rename summary_unread_clicked() to summary_status_clicked()
6193
6194 2003-01-26 [melvin]     0.8.9claws9
6195
6196         * src/prefs_actions.c
6197                 Cosmetical changes to the help text
6198
6199 2003-01-26 [paul]       0.8.9claws8
6200
6201         * src/folder.[ch]
6202           src/mainwindow.c
6203           src/prefs_common.c
6204           src/prefs_sumamry_column.c
6205           summaryview.[ch]
6206                 rename the 'Unread' column to 'Status'
6207
6208 2003-01-25 [match]      0.8.9claws7
6209
6210         * src/mgutils.[ch]
6211                 removed reference to LDAP constants. removed error2string.
6212                 included functions to support LDAP dynamic queries.
6213         * src/syldap.h
6214                 moved LDAP constants here.
6215         * src/addressbook.c
6216         * src/addrindex.c
6217         * src/importldif.c
6218                 removed references to LDAP constants and references to
6219                 error2string.
6220
6221 2003-01-25 [paul]       0.8.9claws6
6222
6223         * src/summaryview.c
6224                 summary_thread_build(), summary_thread_init(): remove 
6225                 unneeded reference to summaryview->folder_item
6226
6227 2003-01-25 [christoph]  0.8.9claws5
6228
6229         * src/gtk/description_window.c
6230                 o allow description texts to expand over multiple columns
6231                 o translate all columns
6232         * src/prefs_actions.c
6233                 change syntax description to use new multi column feature
6234
6235         Patch submitted by Ivan F. Martinez <ivanfm@users.sourceforge.net>
6236
6237 2003-01-25 [match]      0.8.9claws4
6238
6239         * src/vcard.c
6240                 fixed bug with Quoted-Printable
6241
6242 2003-01-25 [paul]       0.8.9claws3
6243
6244         * src/folder.[ch]
6245           src/summaryview.[ch]
6246                 implement per-folder collapsed/expanded threads setting
6247                 
6248         * src/prefs_common.c
6249                 remove global collapsed/expanded threads option
6250
6251 2003-01-25 [christoph]  0.8.9claws2
6252
6253         * po/POTFILES.in
6254                 add pluginwindow and prefswindow
6255         * src/compose.c
6256                 make send respond correctly to messages that could be added
6257                 to the queue folder, but the UID of the message is unknown
6258         * src/folder.c
6259         * src/imap.c
6260                 don't return guessed UIDs in imap_add_msg anymore. We return
6261                 0 to tell the folder system it was appened but the UID is
6262                 unknown. Folder system now get's the UID by scaning the folder
6263                 and searching the cache for the Message-ID
6264                 (closes bug #29 Messages queued, but not sent)
6265
6266 2003-01-25 [paul]       0.8.9claws1
6267
6268         * src/codeconv.c
6269                 conv_encode_header():  fix bug when long headers with 8-bit
6270                 characters are used, so that the encoded words are wrapped.
6271                 If the space in the original text falls on the wrap boundary,
6272                 it can be lost.
6273                 Patch by Sergey Vlasov.
6274                 
6275         * src/folderview.c
6276                  fix bug where a change to the sorting method or thread view
6277                  of a folder's messages is lost if simpify-subject is set and
6278                  toggled on or off.
6279                  Patch by Luke Plant.
6280
6281 2003-01-24 [paul]       0.8.9claws
6282
6283         * sylpheed-0.8.9claws released
6284         
6285         * Makefile.am
6286           sylpheed.spec.in
6287                 remove reference to 'INSTALL.jp'
6288
6289 2003-01-23 [paul]       0.8.8claws128
6290
6291         * po/es.po
6292           po/it.po
6293           po/ru.po
6294           po/sr.po
6295                 updated translations. submitted by Ricardo Mones Lastra,
6296                 Alessandro Maestri, Ruslan N. Balkin and Urke MMI respectively.
6297
6298 2003-01-23 [colin]      0.8.8claws127
6299
6300         * src/compose.c
6301                 Fix drafted and queued news articles re-edition
6302
6303 2003-01-23 [melvin]     0.8.8claws126
6304
6305         * po/fr.po
6306                 Updated French translations
6307
6308 2003-01-23 [colin]      0.8.8claws125
6309
6310         * src/inc.c
6311                 Fix "Connecting to..." status message
6312
6313 2003-01-22 [paul]       0.8.8claws124
6314
6315         * po/bg.po
6316                 updated by George Danchev
6317                 
6318         * src/folder.c
6319                 revert last commit [0.8.8claws111] as it breaks folder d'n'd
6320                 and folder deletion
6321
6322 2003-01-21 [paul]       0.8.8claws123
6323
6324         * po/bg.po
6325                 updated by George Danchev
6326                 
6327         * src/about.c
6328                 its now 2003
6329                 
6330         * src/toolbar.c
6331                 don't translate 'Separator'
6332                 
6333         * src/plugins/spamassassin/Makefile.am
6334                 add aspell to CPPFLAGS
6335                 
6336         * src/plugins/spamassassin/spamassassin.c
6337           src/plugins/spamassassin/spamassassin_gtk.c
6338                 set correct default for spamassassin_receive_spam
6339                 slightly re-word descriptions and some
6340                 other minor changes
6341
6342 2003-01-19 [alfons]     0.8.8claws122
6343                 
6344         * src/mimeview.c
6345                 mimeview_save_as(): we might as well show the file name for
6346                 the single case "Save As" too
6347
6348 2003-01-19 [alfons]     0.8.8claws121
6349
6350         * src/crash.c
6351                 change bug tracker URL to bugzilla URL
6352
6353 2003-01-19 [alfons]     0.8.8claws120
6354
6355         * src/mimeview.c
6356                 mimeview_save_all(): display name of file before overwriting;
6357                 continue saving all, even when one overwrite was cancelled
6358
6359 2003-01-19 [christoph]  0.8.8claws119
6360
6361         * src/summaryview.c
6362         * src/procmsg.[ch]
6363                 fix wrong usage of procmsg_find_children in summaryview
6364                 by using procmsg_update_unread_children instead of
6365                 summaryview_update_unread_children
6366
6367 2003-01-19 [christoph]  0.8.8claws118
6368
6369         * src/procmsg.c
6370                 fix infinite loop in procmsg_find_children
6371                  (closes bug #25 sylpheed crashes on delete.)
6372
6373         Patch submitted by Ivan F. Martinez <ivanfm@users.sourceforge.net>
6374
6375 2003-01-19 [paul]       0.8.8claws117
6376
6377         * po/pt_BR.po
6378                 updated by Ivan Francolin Martinez
6379
6380 2003-01-18 [melvin]     0.8.8claws116
6381
6382         * src/prefs_actions.c
6383                 Removed syntax limitation of only one '&' at the end of command.
6384                         Now actions that contain '>/dev/null 2>&1' are possible.
6385
6386 2003-01-18 [melvin]     0.8.8claws115
6387
6388         * src/prefs_actions.c
6389                 Actions IO dialog: when the action ends
6390                 the "Close" button now has focus and [Escape] closes the
6391                 window.
6392
6393 2003-01-18 [christoph]  0.8.8claws114
6394
6395         * src/procmsg.c
6396                 o add debug output when MsgInfos are really freed
6397                 o free GSLists in procmsg_find_children and
6398                   procmsg_update_unread_children
6399
6400 2003-01-18 [christoph]  0.8.8claws113
6401
6402         * src/mainwindow.c
6403                 reorder Configuration menu
6404
6405 2003-01-18 [christoph]  0.8.8claws112
6406
6407         * src/compose.c
6408                 fix applying templates to forwarded messages
6409
6410         Patch submitted by Ivan Francolin Martinez <ivanfm@users.sourceforge.net>
6411
6412 2003-01-17 [christoph]  0.8.8claws111
6413
6414         * src/folder.c
6415                 destroy folder items, when a folder item is removed
6416
6417 2003-01-17 [christoph]  0.8.8claws110
6418
6419         * src/folder.c
6420                 fix wrong folder stats update when ignored message is
6421                 deleted
6422
6423 2003-01-17 [colin]      0.8.8claws109
6424         
6425         * src/mainwindow.c
6426         * src/summaryview.c
6427                 Quicksearch bugfixes: 
6428                 - hide help button at startup if not extended
6429                 - switch to extended when looking for replies
6430
6431 2003-01-17 [paul]
6432
6433         * sync with 0.8.9 release
6434
6435 2003-01-17 [paul]       0.8.8claws108
6436
6437         * sync with 0.8.8cvs11
6438                 see ChangeLog 2003-01-17
6439
6440 2003-01-16 [colin]      0.8.8claws107
6441
6442         * src/procmsg.c
6443                 Changed encryption test to re-ask passphrase
6444                 if an encrypted message hasn't been decrypted
6445                 Fixes bug #5
6446
6447 2003-01-16 [christoph]  0.8.8claws106
6448
6449         * src/prefs_gtk.c
6450         * src/prefs_toolbar.c
6451         * src/gtk/prefswindow.h
6452         * src/plugins/spamassassin/spamassassin_gtk.c
6453                 remove page destroy function that is not used anymore
6454
6455 2003-01-16 [paul]       0.8.8claws105
6456
6457         * sync with 0.8.8cvs9
6458                 see ChangeLog 2002-01-16
6459
6460 2003-01-16 [colin]      0.8.8claws104
6461
6462         * src/compose.[ch]
6463                 Fix bug with autosaved drafts for IMAP, when draft
6464                 folder is specified - fixes bugzilla bug #20
6465
6466 2003-01-15 [paul]       0.8.8claws103
6467
6468         * src/compose.[ch]
6469           src/procmsg.c
6470                 store folder and message-id of message forwarding
6471                 in queue header and set forward flag after sending
6472
6473 2003-01-15 [paul]       0.8.8claws102
6474
6475         * sync with 0.8.8cvs8
6476                 see ChangeLog 2002-01-15
6477
6478 2003-01-15 [colin]      0.8.8claws101
6479
6480         * src/Makefile.am
6481                 Fix linking with GNU libiconv
6482
6483 2003-01-15 [darko]      0.8.8claws100
6484
6485         * src/pine.c
6486                 fix crash when importing pine address book
6487                 entry with an empty name (reported by DY
6488                 <dybulk at tri8.net>)
6489
6490 2003-01-14 [paul]       0.8.8claws99
6491
6492         * configure.in  ** REMOVED **
6493           configure.ac  ** NEW FILE **
6494                 rename configure.in to configure.ac, as it is now
6495                 preferred
6496
6497 2003-01-14 [melvin]     0.8.8claws98
6498
6499         * src/folderview.c
6500                 folderview_check_new(): More precise function description
6501
6502 2003-01-14 [melvin]     0.8.8claws97
6503
6504         * src/folderview.c
6505                 folderview_check_new(): return the number of new messages 
6506                         since last check.
6507         * src/inc.c
6508                 inc_account_mail(): Disable counting of new messages for IMAP
6509                         and NNTP until bug [19] and [14] are fixed.
6510
6511 2003-01-14 [paul]       0.8.8claws96
6512
6513         * sync with 0.8.8cvs6
6514                 see ChangeLog 2003-01-14
6515
6516 2003-01-13 [alfons]     0.8.8claws95
6517
6518         * src/textview.c
6519                 tune email address validation (c. 0.8.8claws89): if . is 
6520                 just one char away from @, the address is invalid too 
6521                 (correctly rejects addresses like foo@.com)
6522
6523 2003-01-13 [paul]       0.8.8claws94
6524
6525         * src/messageview.c
6526           src/toolbar.c
6527                 fixes to the Message View toolbar and menu:
6528                 fix non-functioning Forward button
6529                 make Reply button consider default_reply_list
6530                 remove 'Follow-up...' menu entry
6531                 add 'Forward' and 'Redirect' menu entries
6532
6533 2003-01-13 [melvin]     0.8.8claws93
6534
6535         * src/inc.c
6536                 Fixed typo that could make new messages count incorrect.
6537
6538 2003-01-13 [melvin]     0.8.8claws92
6539
6540         * src/folderview.[ch]
6541                 folderview_check_new(): return the number of new messages.
6542         * src/inc.c
6543                 Should fix bug [14] where new mail notification worked 
6544                         incorrectly with IMAP accounts.
6545                 inc_spool_account(): return number of new msgs, or -1 on error
6546                 inc_all_spool(): return number of new msgs
6547                 
6548 2003-01-13 [melvin]     0.8.8claws91
6549
6550         * src/prefs_actions.c
6551                 Justify help text.
6552
6553 2003-01-12 [thorsten]   0.8.8claws90
6554
6555         * src/common/prefs.c
6556                 close file before rename
6557
6558 2003-01-12 [alfons]     0.8.8claws89
6559
6560         * AUTHORS
6561                 add Christian Mertes
6562         * src/common/utils.[ch]
6563                 g_stricase_hash(), g_stricase_equal(): functions for 
6564                 case insensitive hash tables
6565         * src/textview.c
6566                 use top level domain names to validate email address, based
6567                 on a patch by Christian Mertes (thanks!), but changed 
6568                 implementation to use a hash table 
6569
6570 2003-01-12 [paul]       0.8.8claws88
6571
6572         * po/bg.po
6573                 updated by George Danchev
6574
6575 2003-01-12 [alfons]     0.8.8claws87
6576
6577         * src/summaryview.c
6578                 delete / execute performance: use new style folder update
6579
6580 2003-01-12 [paul]       0.8.8claws86
6581
6582         * sync with 0.8.8cvs5
6583                 see ChangeLog 2003-01-13 (!)
6584
6585 2003-01-12 [alfons]     0.8.8claws85
6586
6587         * src/filtering.c
6588         * src/matcher_parser_parse.y
6589                 prepare change_score filtering action
6590         * src/matcher.[ch]
6591                 give up const-correctness on functions that call non-const-correct functions;
6592                 several casts to gpointer in g_free();
6593                 add change_score;
6594
6595 2003-01-12 [christoph]  0.8.8claws84
6596
6597         * src/compose.c
6598                 fix 2 warnings
6599
6600         * src/gtk/prefswindow.[ch]
6601         * src/plugins/spamassassin/spamassassin_gtk.c
6602                 changed the call of the widget create function
6603                 for PrefsPages, because sometimes the widget
6604                 create function needs a widget that already has
6605                 been attached to a window (to create GDK pixmaps
6606                 for exmaple). So we simply pass the GtkWindow as
6607                 the second parameter now.
6608
6609         * src/main.c
6610         * src/mainwindow.c
6611         * src/prefs_toolbar.[ch]
6612                 rewrite Toolbar Preferences using the new
6613                 prefs window
6614
6615 2003-01-11 [alfons]     0.8.8claws83
6616
6617         * src/addressadd.c
6618                 fix crash when adding sender to addressbook because status bar
6619                 isn't there (the status bar doesn't seem to be used though,
6620                 but I'll let Match decide what to do with it)
6621
6622 2003-01-11 [colin]      0.8.8claws82
6623
6624         * src/main.c
6625           src/toolbar.c
6626                 Two useless changes reversed
6627
6628 2003-01-11 [colin]      0.8.8claws81
6629
6630         * src/mainwindow.c
6631           src/mainwindow.h
6632                 Add mainwindow_get_mainwindow()
6633         * src/alertpanel.c
6634           src/alertpanel.h
6635                 Add alertpanel_error_log() 
6636         * src/compose.c
6637           src/inc.c
6638           src/messageview.c
6639           src/toolbar.c
6640           src/main.c
6641           src/procmsg.c
6642                 Network errors get a View Log button
6643
6644 2003-01-10 [alfons]     0.8.8claws80
6645
6646         * src/prefs_toolbar.c
6647         * src/toolbar.c
6648                 use the translatable string for "Separator" as file name for
6649                 separator toolbar items (probably make this uppercase?)
6650
6651 2003-01-10 [alfons]     0.8.8claws79
6652
6653         * src/prefs_toolbar.c
6654                 put right A_SEPARATOR description string in "displayed
6655                 toolbar items list" so manually added separators are
6656                 saved correctly (bug #10, "Adding a separator to the main 
6657                 toolbar fails, entry in xml file is wrong")
6658
6659 2003-01-10 [christoph]  0.8.8claws78
6660
6661         * src/imap.c
6662                 o fix warnings
6663                 o use CAPABILITY to check if NAMESPACE is available
6664
6665 2003-01-10 [christoph]  0.8.8claws77
6666
6667         * src/imap.[ch]
6668                 apply UIDPLUS IMAP extension support patch
6669
6670         Patch submitted by Simon 'corecode' Schubert
6671
6672 2003-01-10 [paul]       0.8.8claws76
6673
6674         * src/folderview.c
6675                 a sync from main which fixes the news account folders'
6676                 Properties bug
6677
6678 2003-01-10 [christoph]  0.8.8claws75
6679
6680         * src/folder.c
6681                 don't accept 0 as a valid uid returned by copy and move
6682                 functions. 0 means the message was copied or moved but the
6683                 new uid could not be fetched. It is not an error condition
6684                 for the copy or move operation.
6685
6686 2003-01-10 [paul]       0.8.8claws74
6687
6688         * src/prefs_filtering.c
6689                 change English used in Alert when entry is not
6690                 saved.
6691                 
6692         * sync with 0.8.8cvs4
6693                 see ChangeLog 2003-01-10
6694
6695 2003-01-10 [darko]      0.8.8claws73
6696
6697         * src/pine.c
6698                 fix crash when importing address book entry
6699                 without a valid address
6700
6701 2003-01-09 [alfons]     0.8.8claws72
6702
6703         * src/inc.c
6704                 filtering performance: use new style folder update
6705
6706 2003-01-09 [christoph]  0.8.8claws71
6707
6708         * src/compose.c
6709         * src/gtk/menu.[ch]
6710                 fix wrong selecting of mime encoding type, when
6711                 opening property dialog of attachments in the
6712                 compose window. 7bit was always selected and that
6713                 destoryed files with 8bit data.
6714                 (closes bug #9 Sylpheed-claws destroys attachments when
6715                  changing MIME-types)
6716
6717 2003-01-09 [paul]       0.8.8claws70
6718
6719         * sync with 0.8.8cvs3
6720                 see ChangeLog 2003-01-09
6721
6722 2003-01-08 [alfons]     0.8.8claws69
6723         
6724         * src/addressadd.c
6725                 apply patch by Kim Schulz to fix build breakage
6726                 because of missing variable
6727
6728 2003-01-08 [paul]       0.8.8claws68
6729
6730         * sync with 0.8.8cvs2
6731                 see ChangeLog 2002-01-08
6732
6733 2003-01-08 [paul]       0.8.8claws67
6734
6735         * po/it.po
6736                 updated by Alessandro Maestri
6737                 
6738         * src/addressadd.c
6739                 when using 'Add sender to addressbook' allow
6740                 name to be edited and remarks to be entered
6741                 Patch submitted by Luke Plant
6742
6743 2003-01-08 [darko]      0.8.8claws66
6744
6745         * README.claws, src/summaryview.c
6746                 fix description for marked messages
6747
6748 2003-01-08 [paul]
6749
6750         * tools/Makefile.am
6751           tools/launch_phoenix  ** NEW FILE **
6752                 add script that enables using Phoenix as the default
6753                 web browser. 
6754                 Submitted by Mohammed Sameer <Uniball@linux-egypt.org>
6755                 
6756         * tools/OOo2sylpheed.pl
6757                 remove full path to sylpheed executable, just 'sylpheed'
6758                 will do
6759                 
6760         * tools/README
6761                 add launch_phoenix informtion and re-arrange and compress
6762                 the data a little
6763
6764 2003-01-07 [christoph]  0.8.8claws65
6765
6766         * src/folder.c
6767                 fix update for source folder when moving messages
6768         * src/procmsg.[ch]
6769         * src/summaryview.c
6770                 use function to set to_folder for message infos and
6771                 automatically update the op_count for old and new
6772                 folder
6773
6774 2003-01-07 [melvin]     0.8.8claws64
6775
6776         * src/prefs_actions.c
6777                 Fixed bug where an '%p' Action on a displayed image crashed 
6778                         Sylpheed
6779                 Code clean up (get rid of duplicated code and removed unnecessary 
6780                                 structure member)
6781
6782 2003-01-07 [christoph]  0.8.8claws63
6783
6784         * src/compose.c
6785         * src/folder.[ch]
6786         * src/folderview.c
6787         * src/import.c
6788         * src/inc.c
6789         * src/main.c
6790         * src/mainwindow.c
6791         * src/messageview.c
6792         * src/prefs_folder_item.c
6793         * src/procmsg.c
6794         * src/summaryview.c
6795         * src/toolbar.c
6796                 o remove all folder update triggering from the UI code. The folder
6797                   system should know much better when a folder needs an update.
6798                 o to prevent multiple updates in a row the folder updates can be
6799                   frozen for some time.
6800
6801                 Note: - Please verify that no updates are missing
6802                       - Check where freeze/thaws should be added
6803
6804 2003-01-07 [christoph]  0.8.8claws62
6805
6806         * src/prefs_actions.c
6807                 don't translate empty strings
6808
6809         Patch submitted by Ivan Francolin Martinez <ivanfm@users.sourceforge.net>
6810
6811 2003-01-06 [christoph]  0.8.8claws61
6812
6813         * src/prefs_actions.c
6814                 mark strings for gettext
6815         * src/prefs_matcher.c
6816                 use new description window for Execute action and
6817                 match condition in Filtering
6818
6819         Patch submitted by Ivan Francolin Martinez <ivanfm@users.sourceforge.net>
6820
6821 2003-01-06 [alfons]     0.8.8claws60
6822
6823         keep myself inspired to re-organize matcher part 8; 
6824         yes, more to come (I need to move out the descriptive
6825         text for actions to matcher.c, or at least make it not
6826         depend on the wicked ordering)
6827
6828         * src/prefs_matcher.c
6829                 add documentation so others may comprehend the
6830                 UI part of the conditions
6831                 
6832 2003-01-06 [christoph]  0.8.8claws59
6833
6834         * src/prefs_actions.c
6835                 use new description window for syntax help
6836         * src/gtk/description_window.c
6837                 fix display of descriptions with column count != 2
6838
6839         Patch submitted by Ivan Francolin Martinez <ivanfm@users.sourceforge.net>
6840
6841 2003-01-06 [christoph]  0.8.8claws58
6842
6843         * src/quote_fmt.c
6844         * src/summaryview.[ch]
6845         * src/gtk/Makefile.am
6846         * src/gtk/description_window.[ch]       ** NEW **
6847                 use a generic window to display syntax descriptions
6848                 currently used in quote_fmt and summaryview (new description
6849                 for extended quick search)
6850
6851         Patch submitted by Ivan Francolin Martinez <ivanfm@users.sourceforge.net>
6852
6853 2003-01-06 [paul]       0.8.8claws57
6854
6855         * sync with 0.8.8cvs1
6856                 see ChangeLog 2003-01-06
6857
6858 2003-01-06 [christoph]  0.8.8claws56
6859
6860         * src/mainwindow.c
6861         * src/prefs_gtk.[ch]
6862         * src/gtk/prefswindow.[ch]
6863         * src/plugins/spamassassin/spamassassin_gtk.c
6864                 o remove page management from prefswindow, pages
6865                   will be an argument to prefswindow_open
6866                 o prefswindow_open gets a datapointer that is
6867                   passed to the widget_create function to allow
6868                   creation of prefswindow for specific items
6869
6870 2003-01-06 [colin]      0.8.8claws55
6871         
6872         * src/summaryview.c
6873                 We don't want regexp in the reply-finder, 
6874                 because MIDs can contain !,$,. and so on
6875
6876 2003-01-06 [jens]       0.8.8claws54
6877
6878         * src/jpilot.c
6879                 fixed a wrong free in jpilot_read_db_files
6880
6881 2003-01-06 [alfons]     0.8.8claws53
6882
6883         re-organize matcher part 8; more to come
6884        
6885         * src/matcher.c
6886                 matcherprop_to_string(): put g_free()s before the
6887                 switch-case break to fix memleaks                
6888
6889 2003-01-06 [colin]      0.8.8claws52
6890
6891         * src/summaryview.c
6892                 cleanup & reply-finder now displays the first 
6893                 matching message
6894
6895 2003-01-05 [alfons]     0.8.8claws51
6896
6897         re-organize matcher part 7; more to come
6898
6899         * src/matcher.[ch]
6900                 fixes for constant correctness;
6901                 more documentation;
6902
6903 2003-01-05 [alfons]     0.8.8claws50
6904
6905         re-organize matcher part 6; more to come
6906         
6907         * src/matcher.[ch]
6908                 fixes for constant correctness;
6909                 more documentation;
6910         * src/filtering.c
6911                 fix for constant correctness
6912
6913 2003-01-05 [colin]      0.8.8claws49
6914
6915         * src/account.[ch]
6916                 Add account_get_reply_account function
6917         * src/compose.c
6918                 Use account_get_reply_account function 
6919         * src/summaryview.c
6920                 Basic reply-finder - click on the replied
6921                 icon gets you to the outbox using quick-search
6922
6923 2003-01-05 [paul]       0.8.8claws48
6924
6925         * src/prefs_common.c
6926                 small change to English
6927                 
6928         * src/prefs_filtering.c
6929                 prefs_filtering_action_select(): improve logic and uniformity
6930                 of gui
6931
6932 2003-01-05 [alfons]     0.8.8claws47
6933
6934         fine tune solution to focus problems (bug #7)
6935
6936         * src/mainwindow.c
6937                 mainwindow_focus_in_event(): remove grab event check
6938         * src/summaryview.c
6939                 summary_button_pressed(): move selection on right-click
6940                 too. we can't possibly move the selection back after
6941                 canceling a dialog, because gtk's incomplete focus 
6942                 management. whether this is a good solution, only time
6943                 will tell.
6944
6945 2003-01-05 [christoph]  0.8.8claws46
6946
6947         * src/imap.c
6948                 fix crash when no imap connection could be established
6949
6950 2003-01-05 [paul]       0.8.8claws45
6951
6952         * src/mainwindow.c
6953           src/sumamryview.c
6954           src/gtk/menu.[ch]
6955                 fix bug 605957 'shortcuts in popup-menu'
6956                 make user-defined shortcuts work
6957                 show shortcuts that are already defined
6958                 in the main menu
6959                 Patch submitted by Luke Plant
6960
6961 2003-01-05 [alfons]     0.8.8claws44
6962
6963         * src/mainwindow.c
6964                 focus_in_event handler should not select summary view row 
6965                 when another window (menu, dialog) grabbed for events 
6966                 (bug #7, "[0.8.8claws42] Message summary focus") 
6967
6968 2003-01-04 [christoph]  0.8.8claws43
6969
6970         * src/procmsg.c
6971                 update save folder after adding the sent message
6972                  (closes bug #6 Folder View doesn't refresh for "Sent"-messages)
6973
6974 2003-01-02 [christoph]  0.8.8claws42
6975
6976         * src/common/plugin.c
6977                 fix unloading of all plugins and unload
6978                 plugins in reverse order
6979                 
6980         * src/gtk/pluginwindow.c
6981                 implement function of load and unload button
6982
6983         * src/gtk/prefswindow.c
6984         * src/gtk/prefswindow.h
6985                 rename register function and add new unregister
6986                 function
6987
6988         * src/plugins/spamassassin/spamassassin_gtk.c
6989                 unregister prefs page and update for changes in
6990                 src/gtk/prefswindow.c
6991
6992 2003-01-02 [paul]       0.8.8claws41
6993
6994         * po/es.po
6995                 updated by Ricardo Mones Lastra
6996
6997 2003-01-02 [paul]
6998
6999         * tools/tb2sylpheed
7000                 fixes and improvements by Urke MMI
7001
7002 2003-01-02 [thorsten]   0.8.8claws40
7003
7004         * src/procmsg.c
7005                 fixed wrong return value
7006
7007 2003-01-02 [thorsten]   0.8.8claws39
7008
7009         * src/prefs.c
7010                 fixed printing wrong variable
7011
7012 2003-01-02 [thorsten]   0.8.8claws38
7013
7014         * src/prefs.c
7015                 fixed acessing members of freed pfile struct
7016
7017 2003-01-02 [thorsten]   0.8.8claws37
7018
7019         * src/procmsg.c
7020                 detect loops across several messages
7021                 as suggested by Christoph Hohmann
7022
7023 2003-01-01 [match]      0.8.8claws36
7024
7025         * src/addrindex.c
7026                 fixed another memory leak.
7027
7028 2003-01-01 [match]      0.8.8claws35
7029
7030         * src/jpilot.[ch]
7031                 fixed memory leaks. applied Doxygen comments.
7032
7033 2003-01-01 [thorsten]   0.8.8claws34
7034
7035         * src/procmsg.c
7036                 inhibit endless loop if msg references itself
7037                 (closes Bug [ 660477 ] Infinite loop in parent flag search)
7038
7039 2003-01-01 [christoph]  0.8.8claws33
7040
7041         * src/mainwindow.c
7042         * src/gtk/Makefile.am
7043         * src/gtk/pluginwindow.c                ** NEW **
7044         * src/gtk/pluginwindow.h                ** NEW **
7045                 add plugin window
7046
7047         * src/plugins/demo/demo.c
7048         * src/plugins/spamassassin/spamassassin.c
7049         * src/plugins/spamassassin/spamassassin_gtk.c
7050                 write better plugin descriptions
7051
7052 2002-12-31 [christoph]  0.8.8claws32
7053
7054         * src/gtk/prefswindow.c
7055         * src/plugins/spamassassin/spamassassin_gtk.c
7056                 some small improvements to GTK code
7057
7058 2002-12-31 [christoph]  0.8.8claws31
7059
7060         * src/plugins/spamassassin/spamassassin_gtk.c
7061                 enable folder select button
7062
7063 2002-12-31 [christoph]  0.8.8claws30
7064
7065         * src/mainwindow.c
7066         * src/gtk/Makefile.am
7067         * src/gtk/prefswindow.c                         ** NEW **
7068         * src/gtk/prefswindow.h                         ** NEW **
7069                 add new prefs window
7070
7071         * src/common/plugin.c
7072                 don't try to load empty config lines
7073         
7074         * src/plugins/spamassassin/Makefile.am
7075         * src/plugins/spamassassin/spamassassin.c
7076         * src/plugins/spamassassin/spamassassin.h       ** NEW **
7077         * src/plugins/spamassassin/spamassassin_gtk.c   ** NEW **
7078                 GTK config for SpamAssassin Plugin using
7079                 the new prefs window
7080
7081 2002-12-31 [paul]       0.8.8claws29
7082
7083         * po/POTFILES.in
7084                 remove obsolete entry 'src/menu.c'
7085
7086 2002-12-31 [alfons]     0.8.8claws28
7087
7088         * src/matcher.[ch]
7089         * src/matcher_parser_parse.y
7090         * src/prefs_matcher.c
7091                 add "ignore_thread" and "~ignore_thread" condition so it's
7092                 possible to make the actions / scoring operate on the ignore
7093                 thread flag
7094
7095 2002-12-31 [christoph]  0.8.8claws27
7096
7097         * src/addrbook.c
7098         * src/addrindex.c
7099         * src/folder.c
7100         * src/matcher.c
7101         * src/prefs_account.c
7102         * src/prefs_actions.c
7103         * src/prefs_customheader.c
7104         * src/prefs_display_header.c
7105         * src/prefs_gtk.c
7106         * src/procmime.c
7107         * src/toolbar.c
7108         * src/xmlprops.c
7109         * src/common/prefs.[ch]
7110                 extend prefs file handling for reading and automatic handling
7111                 of blocks. When reading prefs_set_block_label will automatically
7112                 move on to the block. When writing it will copy all other blocks
7113                 automatically
7114
7115         * src/common/plugin.c
7116                 Now loading plugin filenames from [Plugins] block in
7117                 sylpheed rc file
7118
7119 2002-12-30 [christoph]  0.8.8claws26
7120
7121         * src/common/hooks.[ch]
7122                 return abort status to caller of hooks_invoke
7123                 
7124         * src/inc.[ch]
7125                 invoke message filtering hook and stop
7126                 default handling when filter returns abort
7127
7128         * src/common/plugin.[ch]
7129         * src/plugins/demo/demo.c
7130                 modify plugin loader, because resolving symbols for strings
7131                 does not work correctly
7132         
7133         * configure.in
7134         * ac/spamassassin.m4                            ** NEW **
7135         * src/plugins/spamassassin/.cvsignore           ** NEW **
7136         * src/plugins/spamassassin/Makefile.am          ** NEW **
7137         * src/plugins/spamassassin/README               ** NEW **
7138         * src/plugins/spamassassin/libspamc.[ch]        ** NEW **
7139         * src/plugins/spamassassin/spamassassin.c       ** NEW **
7140         * src/plugins/spamassassin/utils.[ch]           ** NEW **
7141                 add spamassassin plugin, see src/plugins/spamassassin/README
7142                 for details
7143
7144 2002-12-29 [alfons]     0.8.8claws25
7145
7146         * src/mainwindow.c
7147                 when moving focus from a message view to the main 
7148                 window, don't forget to select the summary node
7149                 of the displayed message. should fix "[ 659103 ] 
7150                 focus-follows-mouse confuses sylpheed"
7151
7152 2002-12-29 [christoph]  0.8.8claws24
7153
7154         * src/Makefile.am
7155         * src/stringtable.[ch]          ** REMOVE **
7156         * src/common/Makefile.am
7157         * src/common/stringtable.[ch]   ** NEW **
7158                 move stringtable files to common directory
7159
7160 2002-12-29 [christoph]  0.8.8claws23
7161
7162         * src/Makefile.am
7163         * src/menu.[ch]                 ** REMOVE **
7164         * src/gtk/Makefile.am
7165         * src/gtk/menu.[ch]             ** NEW **
7166                 move menu files to gtk directory
7167
7168 2002-12-29 [match]      0.8.8claws22
7169
7170         * src/addressbook.c
7171         * src/syldap.c
7172                 moved UI specific code out of LDAP code into addressbook
7173                 UI code. fixed memory leak.
7174
7175 2002-12-29 [christoph]  0.8.8claws21
7176
7177         * src/folder.c
7178                 only check for IGNORED parent message when message is
7179                 not IGNORED itself
7180
7181 2002-12-29 [alfons]     0.8.8claws20
7182
7183         * src/summaryview.c
7184                 set gtksctree's anchor correct (immediate execute
7185                 changes the tree's layout, and anchor points at 
7186                 the incorrect row). fixes "[ 657233 ] multiple msg 
7187                 delete sometimes off by 1".
7188                 we probably have to look for more tree layout /
7189                 anchor glitches.
7190
7191 2002-12-29 [paul]       0.8.8claws19
7192
7193         * src/summaryview.c
7194                 fix bug [ 659054 ] incorrect sorting of 'From' column
7195                 when using 'display sender using address book'
7196                 thanks to Alfons and Luke Plant
7197
7198 2002-12-29 [christoph]  0.8.8claws18
7199
7200         * src/folder.c
7201         * src/procmsg.[ch]
7202                 check parent messages for IGNORE THREAD flag, when adding,
7203                 moving or copying messages to a folder
7204
7205 2002-12-27 [alfons]     0.8.8claws17
7206
7207         re-organize matcher part 5; more to come
7208
7209         * src/matcher.c
7210                 hash keywords in matchparser_tab 
7211
7212 2002-12-27 [alfons]     0.8.8claws16
7213
7214         re-organize matcher part 4; more to come
7215
7216         * src/matcher_parser.h
7217         * src/matcher_parser_lex.l
7218         * src/matcher_parser_parse.y
7219                 cleanup
7220
7221 2002-12-27 [alfons]     0.8.8claws15
7222
7223         re-organize matcher part 3; more to come
7224
7225         * src/matcher.[ch]
7226                 cleanup
7227
7228 2002-12-27 [alfons]     0.8.8claws14
7229
7230         re-organize matcher part 2; more to come but this should
7231         work. cc me if there are any regressions.
7232
7233         * src/matcher.h
7234                 add prototype for get_matchparser_tab_id()
7235         * src/matcher_parser_lex.l
7236                 look up keywords using matchparser_tab_id();
7237
7238 2002-12-27 [alfons]     0.8.8claws12
7239
7240         re-organize matcher part 1
7241
7242         * src/matcher.h
7243                 map yacc generated constants to sylpheed matcher constants
7244         * src/matcher.c
7245                 add function to find a matcher constant from a string
7246
7247 2002-12-27 [christoph]  0.8.8claws11
7248
7249         * src/compose.c
7250                 MENUITEM_ADD casts the 4th argument from integer to pointer
7251                 so it probably should not be a pointer, this means we
7252                 should use account id for it and not the account's pointer
7253
7254 2002-12-27 [paul]       0.8.8claws10
7255
7256         * src/mainwindow.c
7257                 remove unneeded 'GtkWidget *vbox'
7258                 
7259         * src/summaryview.c
7260                 further sync with 0.8.8 - make sort
7261                 by recipient work as expected
7262                 
7263         * NEWS
7264                 sync with 0.8.8
7265
7266 2002-12-27 [paul]       0.8.8claws9
7267
7268         * po/pt_BR.po
7269                 updated by Ivan F. Martinez
7270                 
7271 2002-12-27 [darko]      0.8.8claws8
7272
7273         * src/common/utils.c
7274                 added locked pattern to extended search
7275
7276 2002-12-27 [alfons]     0.8.8claws7
7277
7278         * src/prefs_matcher.[ch]
7279                 clean up
7280
7281 2002-12-26 [alfons]     0.8.8claws6
7282
7283         * src/matcher.[ch]
7284         * src/matcher_parser_lex.l
7285         * src/matcher_parser_parse.y
7286         * src/prefs_matcher.c
7287                 allow color label as a condition in the matcher
7288
7289 2002-12-26 [oliver]     0.8.8claws5
7290         
7291         * src/toolbar.c 
7292                 enable Addressbook for Main and Messageview
7293         * src/prefs_actions.c
7294                 enable actions in Messageview
7295
7296 2002-12-26 [christoph]  0.8.8claws4
7297
7298         * src/common/plugin.c
7299                 add a little debug output
7300         * configure.in
7301         * src/plugins/demo/Makefile.am
7302                 better use of automake
7303
7304 2002-12-26 [christoph]  0.8.8claws3
7305
7306         * src/Makefile.am
7307         * src/common/Makefile.am
7308                 fix "make distdir"
7309
7310 2002-12-26 [christoph]  0.8.8claws2
7311
7312         * configure.in
7313                 sort configure checks into common / gtk / plugins
7314         * po/POTFILES.in
7315                 add src/prefs_gtk.c
7316         * src/Makefile.am
7317                 add plugins SUBDIR
7318         * src/main.c
7319         * src/common/sylpheed.[ch]
7320                 added now sylpheed_done function for shutdown
7321         * src/common/Makefile.am
7322         * src/common/plugin.[ch]                ** NEW **
7323                 plugin loader and unloader
7324         * src/plugins/.cvsignore                ** NEW **
7325         * src/plugins/Makefile.am               ** NEW **
7326                 build plugins
7327         * src/plugins/demo/.cvsignore           ** NEW **
7328         * src/plugins/demo/Makefile.am          ** NEW **
7329         * src/plugins/demo/demo.c               ** NEW **
7330                 small demo plugin that installs a logtext hook and
7331                 outputs the log text to stdout
7332
7333 2002-12-26 [paul]       0.8.8claws1
7334
7335         * po/es.po
7336                 updated by Ricardo Mones Lastra
7337
7338 2002-12-26 [paul]       0.8.8claws
7339
7340         * 0.8.8claws released
7341
7342 2002-12-26 [paul]       0.8.7claws12
7343
7344         * po/bg.po
7345                 updated by George Danchev
7346
7347 2002-12-26 [paul]       0.8.7claws11
7348
7349         * po/POTFILES.in
7350                 remove unneeded 'src/prefs.c' entry 
7351
7352 2002-12-26 [paul]       0.8.7claws10
7353
7354         * src/codeconv.c
7355           src/mainwindow.c
7356                 sync with 0.8.8 release
7357         
7358         * src/folder.[ch]
7359           src/mh.c
7360           src/summaryview.c
7361                 partial sync with 0.8.8 release
7362         
7363
7364 2002-12-25 [alfons]     0.8.7claws9
7365
7366         * src/matcher.[ch]
7367         * src/matcher_parser_lex.l
7368         * src/matcher_parser_parse.y
7369         * src/prefs_matcher.c
7370                 add locked flag to possible filtering / matcher 
7371                 conditions (also a good example what should be
7372                 done to add a simple boolean condition)
7373
7374 2002-12-25 [christoph]  0.8.7claws8
7375
7376         * src/Makefile.am
7377         * src/account.[ch]
7378         * src/addrbook.c
7379         * src/addressbook.c
7380         * src/addrindex.c
7381         * src/filtering.c
7382         * src/folder.c
7383         * src/matcher.c
7384         * src/prefs.[ch]                ** REMOVE **
7385         * src/prefs_account.c
7386         * src/prefs_actions.c
7387         * src/prefs_common.c
7388         * src/prefs_customheader.c
7389         * src/prefs_display_header.c
7390         * src/prefs_filtering.c
7391         * src/prefs_folder_item.c
7392         * src/prefs_gtk.[ch]            ** NEW **
7393         * src/prefs_matcher.c
7394         * src/prefs_scoring.c
7395         * src/prefs_summary_column.c
7396         * src/procmime.c
7397         * src/selective_download.c
7398         * src/toolbar.c
7399         * src/common/Makefile.am
7400         * src/common/prefs.[ch]         ** NEW **
7401                 split prefs.[ch] into prefs_gtk.[ch] and common/prefs.[ch]
7402
7403 2002-12-24 [alfons]     0.8.7claws7
7404
7405         * src/summaryview.c
7406                 summary_thread_build(): fix real cause of the crash mentioned in
7407                 0.8.7claws3. use subject_XXX() and not g_hash_table_XXX() functions,
7408                 this way we get meaningful ctree nodes 
7409
7410 2002-12-24 [oliver]     0.8.7claws6
7411
7412         * src/mainwindow.[ch]
7413         * src/messageview.[ch]
7414         * src/compose.[ch]
7415         * src/inc.c
7416         * src/summaryview.c
7417                 changes to use updated toolbar handling
7418                 
7419 2002-12-24 [oliver]     0.8.7claws5
7420
7421         * src/toolbar.[ch]
7422                 generic toolbar handling
7423                 used ideas from Ivan Francolin Martinez (ivanfm@users.sourceforge.net)
7424         * src/prefs_toolbar.[ch]
7425                 adjust to handling
7426         
7427 2002-12-24 [oliver]     0.8.7claws4
7428         
7429         * src/stock_pixmap.[ch]
7430                 move SYLPHEED_LOGO to end of list in order 
7431                 to remove it from Custom Toolbar`s Icon View
7432
7433 2002-12-24 [alfons]     0.8.7claws3
7434
7435         * src/summaryview.c
7436                 summary_thread_build(): fix crash because of focus != selection 
7437                 after threading. when deleting the selection, gtk tries but fails 
7438                 to find the correct focusable element. we now force the selection
7439                 to be focused. this should solve the infamous bug reported by 
7440                 Jason Wojciechowski (bug "[ 633443 ] Crash on deleting messages"). 
7441                 a test case is available. 
7442
7443 2002-12-24 [darko]      0.8.7claws2
7444
7445         * src/summaryview.c
7446                 don't crash when unmarking message with unread children
7447
7448 2002-12-23 [christoph]  0.8.7claws1
7449
7450         * src/Makefile.am
7451         * src/common/Makefile.am
7452                 update Makefiles for moved intl.h, version.h and defs.h
7453         * src/imap.c
7454                 rewrite imap_session_get to avoid duplicate code
7455
7456 2002-12-23 [paul]       0.8.7claws
7457
7458         * Santa-Claws released
7459         
7460         * po/hu.po
7461           po/ru.po
7462                 squeeze in updated Hungarian and Russian translations.
7463                 Submitted by  Gál Zoltán and Ruslan N. Balkin
7464
7465 2002-12-23 [paul]       0.8.6claws129
7466
7467         * po/pl.po
7468                 updated by Witold Wladyslaw Wojciech Wilk
7469
7470 2002-12-23 [paul]       0.8.6claws128
7471
7472         * src/quote_fmt_parse.y
7473                 fix typo and add licence header
7474
7475 2002-12-23 [paul]       0.8.6claws127
7476
7477         * po/en_GB.po
7478                 updated
7479
7480 2002-12-23 [paul]       0.8.6claws126
7481
7482         * po/it.po
7483                 updated translation, submitted by Alessandro Maestri
7484                 
7485 2002-12-23 [paul]       0.8.6claws125
7486
7487         * src/quote_fmt_parse.y
7488                 fix signature-stripping on replies bug. match
7489                 '-- \n' and not '-- '.
7490
7491 2002-12-22 [paul]       0.8.6claws124
7492
7493         * po/bg.po
7494           po/es.po
7495           po/sr.po
7496                 updated translations. submitted by George Danchev,
7497                 Ricardo Mones Lastra, and Urke MMI respectively
7498
7499 2002-12-21 [paul]       0.8.6claws123
7500
7501         * src/addrbook.c
7502                 fix coding style
7503
7504 2002-12-21 [paul]       0.8.6claws122
7505
7506         * src/addrbook.c
7507                 fix bug [643638] where if a person is in one or more
7508                 addressbook groups editing that person's email 
7509                 address results in removal from those groups.
7510                 Patch submitted by Luke Plant.
7511
7512 2002-12-20 [christoph]  0.8.6claws121
7513
7514         * src/common/utils.c
7515         * src/summaryview.c
7516                 reimplement expand_search_string using GString to
7517                 prevent crashs caused by miscalculated string
7518                 lengths reported by Paul
7519
7520 2002-12-20 [christoph]  0.8.6claws120
7521
7522         * src/summaryview.c
7523                 don't use "changed" to check if op_count has to be changed as it
7524                 is also set when the message has unread children
7525                 (closes bug [ 653221 ] crash while deleting duplicates)
7526
7527 2002-12-20 [paul]       0.8.6claws119
7528
7529         * sync with 0.8.6cvs27
7530                 see ChangeLog 2002-12-20
7531
7532 2002-12-20 [paul]       0.8.6claws118
7533
7534         * sync with 0.8.6cvs26
7535                 see ChangeLog 2002-12-19 and 2002-12-20
7536
7537 2002-12-19 [alfons]     0.8.6claws117
7538
7539         * src/textview.c
7540                 fix incorrect parsing of email addresses, submitted by 
7541                 Luke Plant (thanks!). Closes bug "[ 565480 ] duplicate 
7542                 name display if it contains @".
7543
7544 2002-12-18 [paul]       0.8.6claws116
7545
7546         * sync with 0.8.6cvs23
7547                 see ChangeLog 2002-12-18
7548
7549 2002-12-18 [paul]       0.8.6claws115
7550
7551         * src/Makefile.am
7552         * src/account.c
7553         * src/codeconv.c
7554         * src/gtkutils.[ch]
7555         * src/imap.c
7556                 sync with 0.8.6cvs22.
7557                 see ChangeLog 2002-12-17 and 2002-12-18
7558
7559 2002-12-17 [christoph]  0.8.6claws114
7560
7561         * src/imap.c
7562                 o don't create a session if imap greeting fails
7563                 o don't close socket when authentication fails
7564                   this is done by imap_session_destroy
7565
7566 2002-12-17 [thorsten]   0.8.6claws113
7567
7568         * tools/Makefile.am
7569           tools/README
7570           tools/google_msgid.pl ** NEW FILE **
7571                 Added "search for message-id" script and doc
7572
7573 2002-12-17 [thorsten]   0.8.6claws112
7574
7575         * po/hu.po
7576                 Updated hungarian translation
7577                 (updated by Gal Zoltan)
7578
7579 2002-12-16 [christoph]  0.8.6claws111
7580
7581         * src/addr_compl.c
7582                 remove stupid addressbook dump to debug output
7583         * src/mh.c
7584                 fix memory leak found by Hiro
7585
7586 2002-12-14 [paul]       0.8.6claws110
7587
7588         * src/compose.c
7589                 fix menubar sensitivity on send
7590                 
7591         * src/prefs_filtering.c
7592         * src/prefs_matcher.c
7593         * src/prefs_scoring.c
7594                 Fix english ;)
7595                 
7596         * src/common/quoted-printable.h
7597                 sync: fix typo
7598         
7599 2002-12-13 [christoph]  0.8.6claws109
7600
7601         * src/Makefile.am
7602         * src/manage_window.[ch]        ** REMOVE **
7603         * src/gtk/Makefile.am
7604         * src/gtk/manage_window.[ch]    ** NEW **
7605                 move manage_window files to gtk directory
7606
7607 2002-12-13 [christoph]  0.8.6claws108
7608
7609         * src/Makefile.am
7610         * src/gtkshruler.[ch]           ** REMOVE **
7611         * src/gtk/Makefile.am
7612         * src/gtk/gtkshruler.[ch]       ** NEW **
7613                 move gtkshruler files to gtk directory
7614
7615 2002-12-13 [christoph]  0.8.6claws107
7616
7617         * src/Makefile.am
7618         * src/compose.c
7619         * src/gtkstext.[ch]             ** REMOVE **
7620         * src/gtkutils.[ch]
7621         * src/textview.c
7622         * src/gtk/gtkstext.[ch]         ** NEW **
7623         * src/gtk/Makefile.am
7624                 o move stext functions to gtkstext.c to remove
7625                   dependency of gtkutils
7626                 o move gtkstext files to gtk directory
7627
7628         * src/gtk/Makefile.am
7629         * src/gtk/sslcertwindow.[ch]
7630                 UI stuff can always depend on common code so
7631                 it's ok to add ../common to include path
7632
7633 2002-12-13 [colin]      0.8.6claws106
7634
7635         * src/summaryview.c
7636                 Disconnect sighandlers for mainwindow when
7637                 quicksearch has the focus
7638                 Fix bug #653231
7639         * src/mainwindow.[ch]
7640                 Make key_pressed callback public, to be able
7641                 to disconnect it
7642
7643 2002-12-13 [christoph]  0.8.6claws105
7644
7645         * src/mh.c
7646                 create .mh_sequences file in new MH folders
7647                 (closes feature request [ 523162 ] MH folders should
7648                  get a .mh_sequences)
7649
7650 2002-12-13 [colin]      0.8.6claws104
7651
7652         * src/summaryview.c
7653                 Better handling of quicksearch show/hide
7654                 (basically the button stays under the mouse 
7655                  when toggled)
7656
7657 2002-12-13 [paul]       0.8.6claws103
7658
7659         * sync with 0.8.6cvs17
7660                 see ChangeLog 2002-12-13
7661
7662 2002-12-13 [paul]       0.8.6claws102
7663
7664         * po/es.po
7665                 updated by Ricardo Mones Lastra
7666
7667 2002-12-11 [colin]       0.8.6claws101
7668
7669         * src/folder.c
7670                 remove statusbar stuff
7671           src/folderview.c
7672                 set statusbar verbosity when moving folders
7673
7674 2002-12-11 [colin]       0.8.6claws100
7675         * src/prefs_filtering.c
7676         * src/prefs_matcher.c
7677         * src/prefs_scoring.c
7678                 Fix english ;)
7679
7680 2002-12-11 [colin]       0.8.6claws99
7681
7682         * src/prefs_common.[ch]
7683                 Add summary_quicksearch_type
7684         * src/summaryview.c
7685                 Save last used quicksearch type
7686
7687 2002-12-11 [jens]       0.8.6claws98
7688         * src/prefs_filtering.c
7689         * src/prefs_matcher.c
7690         * src/prefs_scoring.c
7691                 added dialog for incomplete rules in scoring, filtering and
7692                 matcher to ask wheather really close
7693
7694 2002-12-11 [colin]      0.8.6claws97
7695
7696         * src/folder.c
7697                 Fix folder dnd statusbar logging
7698
7699 2002-12-10 [christoph]  0.8.6claws96
7700
7701         * src/compose.c
7702         * src/folder.c
7703         * src/imap.c
7704         * src/inc.c
7705         * src/main.c
7706         * src/mainwindow.c
7707         * src/news.c
7708         * src/send.c
7709         * src/statusbar.[ch]
7710         * src/common/hooks.c
7711         * src/common/log.[ch]
7712                 o handle verbose logging in statusbar directly in statusbar code
7713                   and common code does not need any knowledge about a statusbar
7714                 o remove direct calls to statusbar_(puts|pop)_all functions
7715
7716 2002-12-10 [jens]       0.8.6claws95
7717
7718         * src/*.c
7719                 removed gettext from g_warnings
7720         * po/POTFILES.in
7721                 cleaned and updated
7722         * po/de.po
7723                 updated
7724
7725 2002-12-10 [colin]      0.8.6claws94
7726
7727         * src/main.c
7728                 finish crash dialog fix
7729
7730 2002-12-10 [colin]      0.8.6claws93
7731
7732         * src/main.c
7733                 "Fix" "sylpheed already running" instead of
7734                 crash dialog appearing after a crash
7735
7736 2002-12-10 [colin]      0.8.6claws92
7737
7738         * po/POTFILES.in
7739                 add src/gtk/sslcertwindow.c
7740
7741 2002-12-10 [paul]       0.8.6claws91
7742
7743         * po/POTFILES.in
7744                 updated to reflect recent changes
7745                 submitted by Alessandro Maestri
7746
7747 2002-12-09 [christoph]  0.8.6claws90
7748
7749         * src/Makefile.am
7750         * src/smtp.[ch]                 ** REMOVE **
7751         * src/common/Makefile.am
7752         * src/common/smtp.[ch]          ** NEW **
7753                 move smtp files to common directory
7754
7755 2002-12-09 [christoph]  0.8.6claws89
7756
7757         * src/Makefile.am
7758         * src/session.[ch]              ** REMOVE **
7759         * src/common/Makefile.am
7760         * src/common/session.[ch]       ** NEW **
7761                 move session files to common directory
7762
7763 2002-12-09 [paul]       0.8.6claws88
7764
7765         * src/account.c
7766                 fix bug [649746] edit accounts: move account reverted
7767                 Patch submitted by Luke Plant <lukeplant@users.sourceforge.net>
7768
7769 2002-12-09 [colin]      0.8.6claws87
7770
7771         * src/ssl_certificate.c
7772                 cleanup
7773
7774 2002-12-09 [colin]      0.8.6claws86
7775
7776         * src/ssl.c
7777                 Try to open the cert.pem database and 
7778                 issue a warning if it isn't there
7779
7780 2002-12-09 [colin]      0.8.6claws85
7781
7782         * src/common/ssl_certificate.c
7783         * src/gtk/sslcertwindow.c
7784                 Warning fixes
7785
7786 2002-12-09 [colin]      0.8.6claws84
7787
7788         * src/ssl_certificate.[ch] ** REMOVED **
7789         * src/common/ssl_certificate.[ch] ** NEW **
7790         * src/Makefile.am
7791         * src/common/Makefile.am
7792                 Moved ssl_certificate.[ch] to common
7793         * src/common/ssl.c 
7794                 Put back needed include
7795         * src/gtk/sslcertwindow.[ch]
7796                 Changed ssl_certificate.h include
7797         
7798 2002-12-09 [colin]      0.8.6claws83
7799
7800         * src/gtk/sslcertwindow.[ch]
7801                 Implement hook for certificate acception
7802         * src/ssl_certificate.[ch]
7803                 Implement hook for certificate acception
7804         * src/common/ssl.c
7805                 Reenable certificate acception check
7806         * src/mainwindow.c
7807                 Register sslcertwindow's hook
7808         
7809 2002-12-08 [christoph]  0.8.6claws82
7810
7811         * src/about.c
7812         * src/addr_compl.c
7813         * src/codeconv.c
7814         * src/manual.c
7815         * src/undo.c
7816         * src/common/utils.c
7817                 o add missing includes
7818                 o fix warnings
7819         * src/.cvsignore
7820         * src/common/.cvsignore
7821         * src/common/version.h          ** REMOVE **
7822                 remove autogenerated file
7823
7824 2002-12-08 [paul]       0.8.6claws81
7825
7826         * src/stringtable.c
7827                 put back needed include
7828
7829 2002-12-08 [colin]      0.8.6claws80
7830         
7831         * src/gtk/sslcertwindow.c
7832                 Cleaner popups when asking
7833         * src/ssl_certificate.c
7834         * src/prefs_common.[ch]
7835                 remove ssl certificate pref
7836                 put back needed include
7837         * src/undo.c
7838                 put back needed include
7839
7840 2002-12-08 [christoph]  0.8.6claws79
7841
7842         * src/folderview.c
7843         * src/logwindow.c
7844         * src/statusbar.c
7845         * src/summaryview.c
7846                 only abort hook invokation if required data is missing not
7847                 if our own data pointer is NULL, update hookfunction for
7848                 log window
7849
7850 2002-12-08 [paul]       0.8.6claws78
7851
7852         * src/about.c
7853         * src/addrcache.c
7854         * src/addrclip.c
7855         * src/addr_compl.c
7856         * src/addrselect.c
7857         * src/codeconv.c
7858         * src/colorlabel.c
7859         * src/enriched.c
7860         * src/esmtp.c
7861         * src/exporthtml.c
7862         * src/headerview.c
7863         * src/imageview.c
7864         * src/manual.c
7865         * src/noticeview.c
7866         * src/pgptext.c
7867         * src/scoring.c
7868         * src/sourcewindow.c
7869         * src/stringtable.c
7870         * src/undo.c
7871                 clean up: remove unneccesary includes
7872
7873 2002-12-08 [christoph]  0.8.6claws77
7874
7875         * src/folderview.c
7876         * src/statusbar.c
7877         * src/summaryview.c
7878         * src/common/hooks.[ch]
7879                 hook functions now have a gboolean return value, if a hook
7880                 returns TRUE it will stop executing of any more hooks in
7881                 the same hooklist for this invokation
7882
7883 2002-12-08 [colin]      0.8.6claws76
7884         
7885         * src/main.c
7886                 put back argv0 for CRASH_DIALOG
7887
7888 2002-12-08 [christoph]  0.8.6claws75
7889
7890         * src/Makefile.am
7891         * src/about.c
7892         * src/account.c
7893         * src/crash.c
7894         * src/esmtp.h
7895         * src/imap.[ch]
7896         * src/inc.c
7897         * src/main.c
7898         * src/mainwindow.c
7899         * src/news.c
7900         * src/pop.[ch]
7901         * src/prefs_account.[ch]
7902         * src/prefs_common.[ch]
7903         * src/send.[ch]
7904         * src/smtp.[ch]
7905         * src/ssl_certificate.[ch]
7906         * src/ssl_manager.[ch]
7907         * src/common/Makefile.am
7908         * src/common/log.c
7909         * src/common/nntp.[ch]
7910         * src/common/socket.[ch]
7911         * src/common/ssl.[ch]
7912         * src/gtk/sslcertwindow.[ch]
7913         * ac/openssl.m4
7914                 use new autoconf script to detect OpenSSL with extra parameters
7915                 to specify the location of libs and includes, also remove USE_SSL
7916                 to USE_OPENSSL
7917
7918         * src/common/sylpheed.[ch]
7919         * src/common/version.h.in
7920                 start seperation of common code initialization seperated from gui
7921
7922         * src/summaryview.c
7923                 The function that is called when a color label changes
7924                 should not change the color lable again
7925
7926 2002-12-08 [colin]      0.8.6claws74
7927
7928         * src/gtk/sslcertwindow.c
7929                 warning fixes
7930
7931 2002-12-08 [colin]      0.8.6claws73
7932
7933         * src/statusbar.c
7934           src/common/log.h
7935                 Register a hook for statusbar_puts_all
7936         * src/common/log.c
7937                 invoke statusbar_puts_all's hook
7938         
7939 2002-12-08 [colin]      0.8.6claws72
7940
7941         * src/ssl_certificate.c
7942                 Put back a badly-removed include
7943
7944 2002-12-08 [colin]      0.8.6claws71
7945
7946         * src/gtk/sslcertwindow.[ch]    ** NEW **
7947                 new certificate presentation
7948         * src/gtk/Makefile.am
7949                 add new files
7950         * src/ssl_certificate.[ch]
7951                 gtk cleanup, made utility functions public
7952         * src/ssl_manager.c
7953                 use new cert presentation
7954
7955 2002-12-07 [christoph]  0.8.6claws70
7956
7957         * src/Makefile.am
7958         * src/nntp.[ch]                 ** REMOVE **
7959         * src/common/Makefile.am
7960         * src/common/nntp.[ch]          ** NEW **
7961                 move nntp files to common directory
7962
7963 2002-12-07 [christoph]  0.8.6claws69
7964
7965         * src/procmsg.[ch]
7966         * src/summaryview.c
7967                 implement msginfo update callback using sylpheed's new
7968                 hook system. Invoke hooks from procmsg_msginfo_[un]set_flags.
7969
7970 2002-12-06 [christoph]  0.8.6claws68
7971
7972         * src/editgroup.c
7973                 This patch changes the 'Edit Group Details' dialog to
7974                 allow extended selections in either pane, so that
7975                 addresses can be added or removed from a group more
7976                 quickly and easily. (it actually is a net decrease in
7977                 file size, as some unnecessary functions have been
7978                 removed). 
7979                 (patch submitted by Luke Plant <lukeplant@users.sourceforge.net>)
7980
7981 2002-12-06 [christoph]  0.8.6claws67
7982
7983         * src/Makefile.am
7984         * src/template.[ch]             ** REMOVE **
7985         * src/common/Makefile.am
7986         * src/common/template.[ch]      ** NEW **
7987                 move template files to common directory
7988
7989         * src/nntp.c
7990                 add missing log.h include
7991
7992 2002-12-06 [melvin]     0.8.6claws66
7993
7994         * src/prefs_actions.c
7995                 Added the trailing ">" syntax to insert command's output
7996                 without replacing old text (in contrast to trailing "|").
7997
7998 2002-12-05 [colin]      0.8.6claws65
7999         
8000         * src/common/utils.c
8001                 Don't modify original search_string or it'll change
8002                 the next iterations in the for()
8003
8004 2002-12-05 [darko]      0.8.6claws64
8005
8006         * src/common/utils.c
8007                 proper check for filtering commands, found by Colin
8008
8009 2002-12-05 [darko]      0.8.6claws63
8010
8011         * src/common/utils.c
8012                 check proper string for NULL pointer, found by Colin
8013
8014 2002-12-05 [darko]      0.8.6claws62
8015
8016         * src/common/utils.[ch]
8017                 expand_search_string(): new function
8018                 converts Mutt-like patterns to Sylpheed's
8019                 filtering engine
8020         * src/summaryview.c
8021                 use expand_search_string() to allow Mutt-like
8022                 patterns in extended search
8023         * README.claws
8024                 document extended option in quick search
8025
8026 2002-12-05 [paul]       0.8.6claws61
8027
8028         * sync with 0.8.6cvs16
8029                 see ChangeLog 2002-12-05
8030                 
8031         * po/POTFILES.in
8032                 clean up
8033
8034 2002-12-04 [christoph]  0.8.6claws60
8035
8036         * src/imap.[ch]
8037                 put imap authentication code into a new function and
8038                 remove it from imap_session_new that will allow to
8039                 send other commands before authentication
8040
8041 2002-12-04 [christoph]  0.8.6claws59
8042
8043         * src/imap.[ch]
8044                 use already existing method to prevent unneeded IMAP
8045                 folder selects. Set imap_select parameters to NULL
8046                 in some functions if the values are not required.
8047
8048         * src/xml.h
8049                 remove no longer required include
8050
8051 2002-12-04 [paul]       0.8.6claws58
8052
8053         * po/es.po
8054                 updated by Ricardo Mones Lastra
8055                 
8056         * configure.in
8057           po/hu.po      ** NEW FILE **
8058                 initial Hungarian translation, submitted
8059                 by Gál Zoltán <galzoli@hu.inter.net>
8060
8061 2002-12-03 [christoph]  0.8.6claws57
8062
8063         * src/Makefile.am
8064         * src/gtksctree.[ch]            ** REMOVE **
8065         * src/gtk/Makefile.am
8066         * src/gtk/gtksctree.[ch]        ** NEW **
8067                 move gtksctree files to gtk directory
8068
8069 2002-12-03 [christoph]  0.8.6claws56
8070
8071         * src/Makefile.am
8072         * src/md5.[ch]                  ** REMOVE **
8073         * srm/common/Makefile.am
8074         * src/common/md5.[ch]           ** NEW **
8075                 move md5 files to common directory
8076
8077         * src/gtkstext.c
8078                 remove not required #include
8079
8080 2002-12-03 [sergey]     0.8.6claws55
8081
8082         * src/gtkutils.c
8083         * src/gtkutils.h
8084                 gtkut_window_popup(): new function.
8085         * src/mainwindow.c
8086                 main_window_popup(): use gtkut_window_popup() to raise
8087                 window without changing its position.
8088                 (see sylpheed-main ML message [sylpheed:17247])
8089
8090 2002-12-03 [sergey]     0.8.6claws54
8091
8092         * src/send.c
8093                 send_message_local(): removed first-dot escaping
8094                 (SMTP-only, not needed for sending through pipe)
8095
8096 2002-12-03 [paul]       0.8.6claws53
8097
8098         * po/POTFILES.in
8099                 update to reflect recent changes (thanks
8100                 to Ricardo Mones Lastra)
8101                 
8102         * tools/filter_conv.pl
8103                  fix problem with quoted strings. Patch submitted
8104                  by Luke Plant <lukeplant@softhome.net>
8105
8106 2002-12-03 [paul]       0.8.6claws52
8107
8108         * sync with 0.8.6cvs15
8109                 see ChangeLog 2002-12-03
8110
8111 2002-12-02 [christoph]  0.8.6claws51
8112
8113         * src/logwindow.[ch]
8114         * src/common/log.[ch]
8115                 implement logging using a hook function
8116
8117         * src/folderview.c
8118         * src/folder.[ch]
8119                 define hooklist name in header file to avoid
8120                 errors caused by wrong spelling of hooklist names
8121
8122         * src/toolbar.c
8123                 fix warnings
8124
8125 2002-12-02 [christoph]  0.8.6claws50
8126
8127         * src/common/Makefile.am
8128                 add src/common/hooks.[ch]
8129
8130         * src/common/hooks.[ch]
8131                 implement a simple hook system using glib's hook functions
8132
8133         * src/folder.[ch]
8134         * src/folderview.c
8135                 use new hook system for folder item updates
8136
8137 2002-12-02 [christoph]  0.8.6claws49
8138
8139         * doc-src/ui_seperation.txt     ** NEW **
8140                 information for ui seperation
8141
8142         * src/Makefile.am
8143                 remove files that were moved to common
8144                 include common directory by default for the header files
8145
8146         * src/inc.c
8147         * src/common/socket.c
8148         * src/automaton.[ch]
8149                 implement automaton using g_io_*-functions instead of
8150                 gdk_input_add to make it ui independent
8151
8152         * src/codeconv.c
8153         * src/compose.c
8154         * src/ldif.c
8155         * src/pgptext.c
8156         * src/procmime.c
8157         * src/rfc2015.c
8158         * src/smtp.c
8159         * src/unmime.c
8160                 remove common/ prefix because directory is now in
8161                 include path
8162
8163         * src/compose.c
8164         * src/folder.c
8165         * src/folderview.c
8166         * src/mainwindow.c
8167         * src/messageview.c
8168         * src/prefs_common.c
8169         * src/procmsg.c
8170         * src/rfc2015.c
8171                 fix warnings
8172
8173         * src/imap.c
8174         * src/inc.c
8175         * src/news.c
8176         * src/pop.c
8177         * src/send.c
8178         * src/smtp.c
8179         * src/ssl_certificate.c
8180                 add log.h header file for logging functions
8181
8182         * src/main.c
8183         * src/common/utils.c
8184         * src/summaryview.c
8185         * src/xml.c
8186                 o move debug_mode to common/utils.c
8187                 o add functions to set and get debug_mode
8188
8189         * src/defs.h                    ** REMOVE **
8190         * src/intl.h                    ** REMOVE **
8191         * src/socket.[ch]               ** REMOVE **
8192         * src/ssl.[ch]                  ** REMOVE **
8193         * src/utils.[ch]                ** REMOVE **
8194                 replaced by new files in src/common/
8195         
8196         * src/common/Makefile.am
8197                 add new files in src/common/
8198
8199         * src/common/defs.h             ** NEW **
8200         * src/common/intl.h             ** NEW **
8201         * src/common/log.[ch]           ** NEW **
8202         * src/common/socket.[ch]        ** NEW **
8203         * src/common/ssl.[ch]           ** NEW **
8204         * src/common/utils.[ch]         ** NEW **
8205                 replacement for files in src/
8206
8207 2002-12-02 [colin]      0.8.6claws48
8208
8209         * src/folderview.c
8210                 Scroll folderview if necessary during dnd
8211
8212 2002-12-02 [colin]      0.8.6claws47
8213
8214         * src/folder.[ch]
8215                 Add check to verify a move is within a single mailbox
8216         * src/folderview.c
8217                 Add specific error string for this check
8218
8219 2002-12-02 [colin]      0.8.6claws46
8220
8221         * src/folder.c
8222                 Add a test to folder moving, remove a statusbar_print
8223         * src/folderview.c
8224                 Add Move folder... context-menu item
8225                 Factorize folder moving code
8226                 Enable folder DND for mbox
8227
8228 2002-12-01 [christoph]  0.8.6claws45
8229
8230         * ac/aspell.m4
8231                 remove conf.aspelltest if the version check fails
8232
8233 2002-11-30 [christoph]  0.8.6claws44
8234
8235         * autogen.sh
8236                 run libtoolize --force in autogen to create missing
8237                 libtool scripts
8238
8239 2002-11-30 [christoph]  0.8.6claws43
8240
8241         * src/Makefile.am
8242         * src/pgptext.c
8243         * src/procmime.c
8244         * src/rfc2015.c
8245         * src/uuencode.[ch]             ** REMOVED **
8246         * src/common/Makefile.am
8247         * src/common/uuencode.[ch]      ** NEW **
8248                 move uuen/decoder to common directory
8249
8250 2002-11-30 [christoph]  0.8.6claws42
8251
8252         * src/Makefile.am
8253         * src/base64.[ch]               ** REMOVED **
8254         * src/codeconv.c
8255         * src/compose.c
8256         * src/ldif.c
8257         * src/pgptext.c
8258         * src/procmime.c
8259         * src/rfc2015.c
8260         * src/smtp.c
8261         * src/unmime.c
8262         * src/common/Makefile.am
8263         * src/common/base64.[ch]        ** NEW **
8264                 move base64 en/decoder to common directory
8265
8266 2002-11-30 [christoph]  0.8.6claws41
8267
8268         * src/common                    ** NEW **
8269                 new directory for UI independent code
8270         * src/gtk                       ** NEW **
8271                 new directory for GTK frontend
8272         * src/common/.cvsignore         ** NEW **
8273         * src/gtk/.cvsignore            ** NEW **
8274                 ignore build files
8275         * src/common/Makefile.am        ** NEW **
8276         * src/gtk/Makefile.am           ** NEW **
8277                 automake files to build new seperated stuff
8278         * src/Makefile.am
8279                 the binary will currently still be build with the
8280                 files in src, so we include the code from the
8281                 subdirs for now after building the libs there
8282
8283 2002-11-30 [paul]       0.8.6claws40
8284
8285         * src/compose.c
8286                 fix bug [642731] 'Wrong selected account with drafted mail'
8287
8288 2002-11-29 [oliver]     0.8.6claws39
8289         
8290         * src/messageview.c
8291                 o update summaryview when switching between different
8292                   messageviews          
8293         * src/toolbar.c  
8294                 o check if messageview holds already removed msg
8295                   from summaryview
8296                 
8297
8298 2002-11-29 [oliver]     0.8.6claws38
8299
8300         * src/toolbar.c 
8301                 remove not needed variables and includes
8302                 make messageview stay opened and move to next when msgs are deleted 
8303
8304 2002-11-29 [oliver]     0.8.6claws37
8305         
8306         * src/toolbar.c 
8307                 disable compose button (messageview toolbar) by default
8308                 deleted msgs are moved to trash
8309         
8310 2002-11-29 [melvin]     0.8.6claws36
8311
8312         * configure.in
8313                 Increased minimal gpgme version to 0.3.10 (Zombies out)
8314                 and to detect signatures expirations (gpgme 0.3.6)
8315
8316         * src/main.c
8317                 Use non obsolescent function for Gpgme engine checking.
8318
8319         * src/rfc2015.c
8320                 Inform about expired signatures or signatures which key
8321                 has expired. Expiration date is displayed.
8322
8323         * src/sigstatus.c
8324                 Inform about expired signatures or signatures which key
8325                 has expired.
8326
8327 2002-11-28 [paul]       0.8.6claws35
8328
8329         * src/folderview.c
8330                 re-instate 'Check for new messages' in Newsgroup
8331                 folders right-click menu, after a suggestion from
8332                 Tim Mann <timmann@users.sourceforge.net>
8333
8334         * src/main.c
8335                 after a crash check only local folders for new
8336                 messages
8337
8338 2002-11-28 [paul]       0.8.6claws34
8339
8340         * configure.in
8341                 apply patch that fixes the checking of GTK with XIM 
8342                 support on different OSs, such as FreeBSD. Patch 
8343                 submitted by Topia <topia@users.sourceforge.net>
8344                 
8345 2002-11-28 [paul]       0.8.6claws33
8346
8347         * src/mainwindow.c
8348           src/prefs_common.c
8349           src/prefs_toolbar.c
8350                 more changes to the English
8351
8352 2002-11-28 [paul]       0.8.6claws32
8353
8354         * sync with 0.8.6cvs13
8355                 see ChangeLog 2002-11-28 (no sync needed
8356                 for src/compose.c)
8357
8358 2002-11-28 [Ivan Francolin Martinez (ivanfm@users.sourceforge.net)]     0.8.6claws31
8359         
8360         * src/mainwindow.[ch]
8361                 add patch by Ivan F. Martinez introducing messageview Toolbar
8362                 some changes and committed by oliver    
8363
8364 2002-11-28 [Ivan Francolin Martinez (ivanfm@users.sourceforge.net)]     0.8.6claws30
8365
8366         * src/messageview.[ch]
8367                 add patch by Ivan F. Martinez introducing messageview Toolbar
8368                 some changes and committed by oliver    
8369
8370 2002-11-28 [Ivan Francolin Martinez (ivanfm@users.sourceforge.net)]     0.8.6claws29
8371
8372         * src/compose.[ch]
8373                 add patch by Ivan F. Martinez introducing messageview Toolbar
8374                 some changes and committed by oliver    
8375
8376 2002-11-28 [Ivan Francolin Martinez (ivanfm@users.sourceforge.net)]     0.8.6claws28
8377         
8378         * src/toolbar.[ch]
8379                 add patch by Ivan F. Martinez introducing messageview Toolbar
8380                 some changes and committed by oliver
8381
8382 2002-11-28 [oliver]     0.8.6claws27
8383         
8384         * src/prefs_toolbar.[ch]
8385                 getting ready for messageview toolbar
8386                 free mem allocated by gettext
8387                 change prefs_toolbar to prefs_toolbar_open
8388  
8389 2002-11-28 [thorsten]   0.8.6claws26
8390
8391         * src/imageview.[ch]
8392                 cleaned up conflicting declarations of
8393                 imageview_show_image()
8394
8395 2002-11-28 [paul]       0.8.6claws25
8396
8397         * src/grouplistdialog.c
8398           src/prefs_common.c
8399           src/prefs_summary_column.c
8400                 a few more improvements to the English
8401
8402 2002-11-28 [colin]      0.8.6claws24
8403
8404         * man/sylpheed.1
8405                 A few updates to command-line parameters
8406
8407 2002-11-28 [colin]      0.8.6claws23
8408
8409         * src/prefs_filtering.c
8410                 Fix problems with prefs_filtering_delete_path:
8411                 a) if the first rule is removed, original pointers
8412                    weren't updated (leading to segfaults)
8413                 b) it was always global_processing updated in case
8414                    of removed path was parent of rule path
8415
8416 2002-11-27 [paul]       0.8.6claws22
8417
8418         * src/mainwindow.c
8419           src/prefs_account.c
8420           src/prefs_actions.c
8421           src/prefs_common.c
8422           src/prefs_customheader.c
8423           src/prefs_display_header.c
8424           src/prefs_filtering.c
8425           src/prefs_folder_item.c
8426           src/prefs_matcher.c
8427           src/prefs_scoring.c
8428           src/prefs_summary_column.c
8429           src/prefs_template.c
8430           src/prefs_toolbar.c
8431                  improve the English in the GUI
8432
8433 2002-11-27 [colin]      0.8.6claws21
8434
8435         * src/folder.c
8436                 Fix processing renaming problems happening after
8437                 last commit
8438
8439 2002-11-27 [colin]      0.8.6claws20
8440
8441         * src/folder.c
8442                 recursive move now deletes src each subfolder after 
8443                 having moved it
8444         * src/folderview.c
8445                 Use identifier instead of path during dnd (enables
8446                 IMAP folder dnd)
8447
8448 2002-11-27 [paul]       0.8.6claws19
8449
8450         * src/main.c
8451                 apply patch that does command-line processing 
8452                 BEFORE gtk_init, allowing claws to run from 
8453                 shell-scripts in non-X environment (e.g. crontab 
8454                 or ip-up, ip-down scripts). Patch submitted by
8455                 Ruslan N. Balkin <baron@dartel.ru>
8456                 
8457         * po/it.po
8458                 updated by Alessandro Maestri
8459
8460 2002-11-27 [paul]       0.8.6claws18
8461
8462         * sync with 0.8.6cvs12
8463           src/prefs_common.c
8464                 Differences are that main uses a 'Receive dialog'
8465                 frame on the Interface tab, whereas claws groups all 
8466                 the dialogs together in a 'Dialogs' frame.
8467
8468 2002-11-27 [colin]      0.8.6claws17
8469
8470         * src/prefs_matcher.c
8471                 Fix Execute criteria's NOT flag
8472
8473
8474 2002-11-26 [christoph]  0.8.6claws16
8475
8476         * src/ssl.c
8477                 rewrite the ssl code a little bit, only use one
8478                 SSL context, set default certificates' file/path
8479
8480 2002-11-26 [thorsten]   0.8.6claws15
8481
8482         * src/compose.c
8483                 default-reply-to didn't work for ml-reply
8484
8485 2002-11-26 [melvin]     0.8.6claws14
8486
8487         * src/prefs_actions.c
8488                 Made pipe-actions ignore short headers in message view
8489                 Made trailing-pipe-actions write in the message view with
8490                 the same font as the original message
8491
8492 2002-11-26 [paul]       0.8.6claws13
8493
8494         * src/compose.c
8495                 this time commit the correct file
8496
8497 2002-11-26 [paul]       0.8.6claws12
8498
8499         * sync with 0.8.6cvs11
8500           src/quote_fmt_parse.y  
8501                 no sync needed
8502           src/account.[ch]       
8503                 not sync'ed
8504           src/compose.c
8505                 compose_write_headers(): add 'X-Sylpheed-Account-Id:' header
8506                 on draft mode.
8507                 compose_reedit(): add check for 'X-Sylpheed-Account-Id:' 
8508                 header
8509                 
8510         see ChangeLog 2002-11-25 and 2002-11-26
8511
8512 2002-11-26 [colin]      0.8.6claws11
8513
8514         * src/folderview.c
8515                 Fix collapsed folder not auto-expanding during
8516                 mail dnd, if it was the source folder.
8517
8518 2002-11-25 [colin]      0.8.6claws10
8519
8520         * src/folderview.[ch]
8521                 Variable renaming and cleaning (slist of nodes 
8522                 to be re-collapsed is stored in FolderView)
8523
8524 2002-11-25 [paul]       0.8.6claws9
8525
8526         * src/prefs_common.[ch]
8527                 fix breakage caused by last commit
8528
8529 2002-11-25 [paul]       0.8.6claws8
8530
8531         * sync with 0.8.6cvs4
8532                 see ChangeLog 2002-11-21
8533
8534 2002-11-25 [paul]       0.8.6claws7
8535
8536         * sync with 0.8.6cvs4
8537                 see ChangeLog 2002-11-20
8538
8539 2002-11-25 [paul]       0.8.6claws6
8540
8541         * sync with 0.8.6cvs3
8542                 see ChangeLog 2002-11-18
8543
8544 2002-11-25 [colin]      0.8.6claws5
8545
8546         * src/gtkutils.[ch]
8547                 Add gtkut_ctree_node_is_parent()
8548         * src/folderview.c
8549                 Spring-loaded folders
8550
8551 2002-11-25 [colin]      0.8.6claws4
8552
8553         * src/utils.[ch]
8554                 Add slist_concat_unique(), function to merge
8555                 two GSList filtering dups
8556         * src/folder.[ch]
8557         * src/summaryview.[ch]
8558         * src/folderview.c
8559         * src/main.c
8560                 Add detection/update/display of unread answers
8561                 to marked mails
8562         * src/procmsg.[ch]
8563                 Add procmsg_find_children()
8564                 Add procmsg_msg_has_marked_parent()
8565
8566 2002-11-25 [colin]      0.8.6claws3
8567
8568         * src/ssl_certificate.[ch]
8569                 Allow checking a certificate without a DNS
8570                 lookup
8571                 Allow to forget a cert (by deleting it)
8572                 Make ssl_certificate_destroy_public
8573         * src/ssl_manager.[ch] ** NEW FILES **
8574                 Gui to manage (display/remove) certificates
8575         * src/prefs_common.[ch]
8576                 Add a pref to allow silent acceptation of
8577                 trusted certificates or not (based on the
8578                 "I want to know what's going on" principle)
8579         * src/mainwindow.c
8580                 Add SSL manager in Tools menu
8581         * src/Makefile.am
8582                 Add the new files to the build
8583         * po/POTFILES.in
8584                 Add ssl_manager.c to translations
8585
8586 2002-11-25 [colin]      0.8.6claws2
8587
8588         * src/summaryview.[ch]
8589                 Add S_SEARCH_EXTENDED to the quick search, which 
8590                 allows to search using filtering syntax.
8591
8592 2002-11-25 [colin]      0.8.6claws1
8593
8594         * src/summaryview.c
8595                 Deletion of duplicates now prefer deleting
8596                 the unread dup (fixes feature-request 638989).
8597
8598 2002-11-24 [paul]       0.8.6claws
8599
8600         * po/es.po
8601           po/pl.po
8602           po/ru.po
8603           po/sr.po
8604                 updated by Ricardo Mones Lastra,
8605                 Witold Wladyslaw Wojciech Wilk,
8606                 Ruslan N. Balkin, and  Urke MMI 
8607                 respectively
8608
8609 2002-11-24 [paul]       0.8.5claws182
8610
8611         * po/bg.po
8612                 updated by George Danchev
8613
8614 2002-11-23 [alfons]     0.8.5claws181
8615
8616         * src/imap.c
8617                 tiny memory leak found by browsing Dimitar's 
8618                 valgrind report
8619
8620 2002-11-23 [paul]       0.8.5claws180
8621
8622         * po/it.po
8623                 updated by Alessandro Maestri
8624
8625 2002-11-22 [christoph]  0.8.5claws179
8626
8627         * src/compose.c
8628         * src/inc.c
8629         * src/prefs_filtering.c
8630         * src/summaryview.c
8631                 more warning fixes
8632
8633 2002-11-22 [alfons]     0.8.5claws178
8634
8635         * src/summaryview.c
8636                 summary_execute_delete_func(): if message is deleted, make 
8637                 sure to also remove its entry in the subject hash table. 
8638                 fixes a corner case bug.
8639
8640 2002-11-22 [paul]       0.8.5claws177
8641
8642         * .cvsignore
8643                 add 'autom4te.cache'
8644                 
8645         * ltconfig      ** REMOVED **
8646                 not needed
8647
8648 2002-11-22 [paul]       0.8.5claws176
8649
8650         * src/textview.c
8651                 textview_set_font(): fix for message display in
8652                 UTF-8 locales (thanks to Sergey Vlasov).
8653                 
8654         * AUTHORS
8655                 add new team members and contributors
8656
8657
8658 2002-11-21 [colin]      0.8.5claws175
8659
8660         * src/procmsg.[ch]
8661                 Add procmsg_remove_special_headers()
8662         * src/mh.c
8663                 Use procmsg_remove_special_headers() for 
8664                 previous fix
8665
8666 2002-11-21 [colin]      0.8.5claws174
8667
8668         * src/mh.c
8669                 Fix moving/copying from queue/draft folders
8670                 for MH folders
8671
8672 2002-11-21 [christoph]  0.8.5claws173
8673
8674         * src/crash.c
8675         * src/filtering.c
8676         * src/logwindow.c
8677         * src/main.c
8678         * src/matcher_parser_lex.[hl]
8679         * src/mbox.c
8680         * src/mbox_folder.[ch]
8681         * src/prefs_filtering.c
8682         * src/procheader.c
8683         * src/quote_fmt_lex.l
8684         * src/ssl.c
8685                 fix all warnings except the warnings in lex and yacc files
8686
8687 2002-11-20 [christoph]  0.8.5claws172
8688
8689         * src/imap.c
8690                 fix MsgInfo retrieval for IMAP draft and queue folders
8691                 (closes bug [ 619558 ] Draft saving on IMAP box issue)
8692
8693 2002-11-19 [christoph]  0.8.5claws171
8694
8695         * src/compose.c
8696                 fix segfault, when draft saving does not get
8697                 the MsgInfo of the new message
8698                 (closes bug [ 640699 ] Claws170: crash drafting mail ( IMAP ))
8699
8700 2002-11-19 [christoph]  0.8.5claws170
8701
8702         * src/procmsg.c
8703                 add parameter check for flag setting function
8704                 (closes bug [ 640619 ] Claws169: crash - drafting a mail (IMAP))
8705
8706 2002-11-18 [paul]       0.8.5claws169
8707
8708         * src/compose.c
8709                 more sensitivity fixes to redirect mode:
8710                 * disable toolbar draft button
8711                 * allow only Address book in the Tools menu
8712                 * disable editing of message by the spell
8713                   checker
8714
8715 2002-11-18 [paul]       0.8.5claws168
8716
8717         * src/compose.c
8718                 fix sensitivity of menu items in compose_redirect():
8719                 allow only the necessary items 
8720
8721 2002-11-18 [paul]       0.8.5claws167
8722
8723         * src/compose.c
8724                 fix bug [ 603259 ] 'attachment got lost on bounce'
8725
8726 2002-11-18 [paul]       0.8.5claws166
8727
8728         * po/ru.po
8729                 updated by Ruslan N. Balkin <baron@dartel.ru>
8730
8731 2002-11-18 [colin]      0.8.5claws165
8732
8733         * src/main.c
8734           src/defs.h
8735                 Remove old filtering stuff
8736
8737
8738 2002-11-17 [oliver]     0.8.5claws164
8739
8740         * src/toolbar.h
8741                 remove not needed typedef 
8742
8743 2002-11-17 [oliver]     0.8.5claws163
8744
8745         * src/toolbar.c
8746                 make toolbar's on click events translatable
8747
8748 2002-11-15 [colin]      0.8.5claws162
8749
8750         * src/summaryview.c
8751                 Revert too-soon integration of a feature
8752
8753 2002-11-15 [christoph]  0.8.5claws161
8754
8755         * src/imap.c
8756                 use main's implementation of imap_get_msginfo
8757
8758 2002-11-15 [christoph]  0.8.5claws160
8759
8760         * src/compose.c
8761         * src/folder.[ch]
8762         * src/imap.c
8763         * src/mbox_folder.c
8764         * src/mh.c
8765         * src/news.c
8766         * src/procmsg.c
8767         * src/summaryview.c
8768                 replace claws' fetch_msginfo with main's get_msginfo
8769                 (use main's implementation where possible)
8770
8771 2002-11-15 [colin]      0.8.5claws159
8772
8773         * src/ssl_certificate.c
8774                 Missed a check
8775
8776 2002-11-16 [melvin]     0.8.5claws158
8777
8778         * po/fr.po
8779                 Updated French translations.
8780
8781 2002-11-16 [colin]      0.8.5claws157
8782
8783         * src/ssl_certificate.c
8784                 Check for missing parts in the certificates
8785
8786 2002-11-15 [colin]      0.8.5claws156
8787
8788         * src/folderview.c
8789                 Preventive fix (missing check) found by
8790                 Alfons
8791
8792 2002-11-15 [paul]
8793
8794         * NEWS
8795                 sync with 0.8.6 release
8796
8797 2002-11-15 [colin]      0.8.5claws155
8798
8799         * src/folder.[ch]
8800           src/folderview.c
8801                 Fix error handling of folder_item_move_to()
8802                 (thanks to Alfons!)
8803
8804 2002-11-15 [colin]      0.8.5claws154
8805
8806         * src/folder.[ch]
8807           src/folderview.c
8808                 folder_item_move_to() sets an error message instead
8809                 of having GUI stuff in folder.c
8810
8811 2002-11-15 [colin]      0.8.5claws153
8812
8813         * src/procmsg.[ch]
8814                 Implemented a callback for MsgInfo updates, 
8815                 heavily copy/pasted from Christoph's folder 
8816                 callback system
8817         * src/summaryview.[ch]
8818                 Register summary_update_msg as callback
8819
8820 2002-11-14 [colin]      0.8.5claws152
8821         
8822         * src/procmsg.c
8823                 Update the FolderItem after sending (fixes 617593)
8824
8825 2002-11-14 [christoph]  0.8.5claws151
8826
8827         * src/folder.c
8828                 fix wrong position of NULL pointer check found
8829                 by Sergey
8830
8831 2002-11-14 [christoph]  0.8.5claws150
8832
8833         * src/folder.c
8834                 fix segfault when deleting messages from IMAP folders
8835                 (closes bug [ 635641 ] Crash deleting mail in IMAP trash)
8836
8837 2002-11-14 [colin]      0.8.5claws149
8838
8839         * src/compose.c
8840                 Forwarding was also ignoring the folder's default account.
8841
8842 2002-11-14 [colin]      0.8.5claws148
8843
8844         * src/compose.c
8845                 Fix sent folder not set to folder properties when 
8846                 forwarding.
8847
8848 2002-11-14 [thorsten]   0.8.5claws147
8849
8850         * src/inc.c
8851                 inc_start(): Files were not moved from .processing to inbox,
8852                 if no global processing rule existed
8853
8854 2002-11-14 [colin]      0.8.5claws146
8855
8856         * src/ssl_certificate
8857                 Fix file operations
8858
8859 2002-11-14 [paul]       0.8.5claws145
8860
8861         * po/it.po
8862                 updated by Alessandro Maestri
8863
8864 2002-11-13 [alfons]     0.8.5claws144
8865
8866         * src/folder.c
8867                 folder_item_close(): only mark messages unread
8868                 when a folder has new messages 
8869
8870 2002-11-13 [keith]      0.8.5claws143
8871
8872         * src/imap.c
8873                 Fix problem moving or copying between
8874                 IMAP folders
8875
8876 2002-11-13 [colin]      0.8.5claws142
8877
8878         * src/matcher_parser_parse.y
8879                 Fix rule problem when " don't match
8880
8881 2002-11-13 [christoph]  0.8.5claws141
8882
8883         * src/folder.c
8884         * src/folderview.c
8885                 moved cache saving to folder_item_close
8886                 the folderview should not have to deal with
8887                 this things
8888
8889 2002-11-13 [christoph]  0.8.5claws140
8890
8891         * src/summaryview.c
8892                 moved setting of important score to
8893                 summary_set_prefs_from_folderitem
8894
8895 2002-11-13 [colin]      0.8.5claws139
8896
8897         * src/matcher_parser_parse.y
8898                 Fix a segfault in the parser (happening when
8899                 a good expression had been tested and a bad 
8900                 one arrives)
8901
8902 2002-11-13 [paul]       0.8.5claws138
8903
8904         * sync with 0.8.5cvs24
8905                 see ChangeLog 2002-11-13
8906                 
8907         * po/pt_BR.po
8908                 updated by Fabio Jr. Beneditto
8909
8910 2002-11-13 [colin]      0.8.5claws137
8911         
8912         * src/msgcache.c
8913           src/defs.h
8914           src/procmsg.[ch]
8915                 Revert last commit, problem
8916
8917 2002-11-13 [colin]      0.8.5claws136
8918
8919         * src/msgcache.c
8920                 Remove duplicated code
8921         * src/defs.h
8922                 Bumped CACHE_VERSION and MARK_VERSION
8923         * src/procmsg.[ch]
8924                 Network endian for cache and mark files
8925
8926 2002-11-12 [colin]      0.8.5claws135
8927
8928         * src/inc.c
8929                 Fix the "socket error" dialog which disappeared
8930
8931 2002-11-12 [colin]      0.8.5claws134
8932
8933         * src/msgcache.c
8934                 Reverse last commit which had performance 
8935                 problems, but still reverse the list
8936
8937 2002-11-12 [colin]      0.8.5claws133
8938
8939         * src/msgcache.c
8940                 Reverse list order
8941
8942 2002-11-12 [melvin]     0.8.5claws132
8943
8944         * src/compose.c
8945                 Added a check for a NULL prefs_common.dictionary
8946
8947 2002-11-12 [colin]      0.8.5claws131
8948
8949         * src/ssl_certificate.[ch]
8950                 Use FQDN hostname
8951
8952 2002-11-12 [colin]      0.8.5claws130
8953
8954         * src/ssl_certificate.[ch]
8955                 Take connection port into account for 
8956                 checking certificates (a single hostname
8957                 could have multiple servers with multiple
8958                 certificates)
8959         * src/ssl.c
8960                 Pass the port to ssl_certificate_check
8961
8962 2002-11-12 [paul]       0.8.5claws129
8963
8964         * src/folder.c
8965                 fix a typo in last commit
8966
8967 2002-11-12 [paul]       0.8.5claws128
8968
8969         * sync with 0.8.5cvs23
8970                 see ChangeLog entry 2002-11-12
8971
8972 2002-11-11 [colin]      0.8.5claws127
8973
8974         * src/ssl_certificate.c
8975                 Cleaner messages
8976                 Don't popup, instead log error, if the 
8977                 corresponding pref is checked
8978         * src/ssl_certificate.h
8979                 include <openssl/objects/h>
8980
8981 2002-11-11 [colin]      0.8.5claws126
8982
8983         * src/ssl_certificate.h
8984                 _Really_ clean it
8985
8986 2002-11-11 [colin]      0.8.5claws125
8987         
8988         * src/ssl_certificate.c
8989                 Fixed leak
8990
8991 2002-11-11 [colin]      0.8.5claws124
8992
8993         * src/ssl.c
8994                 Cleaned a bit
8995         * src/ssl_certificate.[ch]
8996                 Cleaned a bit (better use of SSL API)
8997                 (This will cause non-recognition of saved 
8998                  certificates of claws12[23]...)
8999
9000 2002-11-11 [paul]       0.8.5claws123
9001         
9002         * po/es.po
9003                 updated by Ricardo Mones Lastra
9004
9005 2002-11-11 [colin]      0.8.5claws122
9006
9007         * src/ssl.c
9008                 Fix a typo
9009
9010 2002-11-11 [colin]      0.8.5claws121
9011
9012         * src/ssl_certificate.[ch] ** NEW FILES **
9013         * src/ssl.[ch]
9014                 Check SSL certificates presented to us
9015         * src/Makefile.am
9016                 Add ssl_certificate.[ch]
9017         * po/POTFILES.in
9018                 Add ssl_certificate.c
9019
9020 2002-11-11 [paul]       0.8.5claws120
9021
9022         * sync with 0.8.5cvs22
9023                 see ChangeLog 2002-11-11
9024
9025 2002-11-11 [paul]       0.8.5claws119
9026
9027         * sync with 0.8.5cvs21
9028                 see ChangeLog 2002-11-11
9029
9030 2002-11-10 [jens]       0.8.5claws118
9031
9032         * src/folder.c
9033         * src/folderview.c
9034                 corrected some typing
9035         * po/de.po
9036                 updated german translation
9037         * sylpheed.spec.in
9038                 cleaned up specfile and adjusted it for claws
9039
9040 2002-11-10 [colin]      0.8.5claws117
9041
9042         * src/summaryview.c
9043                 a STATUSBAR_PUSH/POP fix
9044
9045 2002-11-10 [colin]      0.8.5claws116
9046
9047         * src/prefs_folder_item.c
9048                 Fix hanging after opening folder properties
9049
9050 2002-11-10 [hoa]        0.8.5claws115
9051
9052         * src/matcher_parser_lex.l
9053         * src/matcher_parser_parse.y
9054                 config file for scoring and filtering is no more trashed
9055                 when there is a syntax error in a filtering rule when
9056                 editing it in a dialog.
9057
9058 2002-11-09 [colin]      0.8.5claws114
9059
9060         * src/mbox_folder.c
9061                 Added missing initialisation of folder->destroy()
9062
9063 2002-11-09 [colin]      0.8.5claws113
9064
9065         * src/folder.c
9066           src/folderview.c
9067                 Fix the status bar messages
9068
9069 2002-11-09 [colin]      0.8.5claws112
9070
9071         * src/folderview.c
9072                 Fix hangs after folder dnd, happening after 
9073                 claws109.
9074
9075 2002-11-09 [christoph]  0.8.5claws111
9076
9077         * src/folderview.c
9078                 just changed order of calls (reverse order of
9079                 associated calls)
9080         * src/inc.c
9081                 lock inc when checking only one account, otherwise
9082                 inc all could be executed at the same time
9083
9084 2002-11-09 [christoph]  0.8.5claws110
9085
9086         * src/folderview.c
9087                 better unlock the mouse cursor before calling
9088                 summary_show because it changes the cursor too
9089
9090 2002-11-09 [christoph]  0.8.5claws109
9091
9092         * src/folder.[ch]
9093         * src/folderview.c
9094                 add functions to open and close a folder
9095                 o opending will execute scanning for remote folders
9096                   and processing
9097                 o closing will unset new flag for messages
9098
9099 2002-11-09 [colin]      0.8.5claws108
9100
9101         * src/folder.c
9102                 Add a call to prefs_matcher_write_config to 
9103                 avoid non-leaf folders filtering settings to be
9104                 lost
9105
9106 2002-11-09 [paul]       0.8.5claws107
9107
9108         * src/prefs_account.c
9109                 re-word a label
9110
9111 2002-11-09 [colin]      0.8.5claws106
9112
9113         * src/folderview.c
9114                 Minor esthetic fix
9115
9116 2002-11-09 [colin]      0.8.5claws105
9117
9118         * src/folderview.c
9119                 Fix prefs_filtering deletion for MH folders (same
9120                 reason as below)
9121         * src/prefs_filtering.c
9122                 Fix prefs_filtering renaming and deletion for 
9123                 folder-based processing rules.  
9124
9125 2002-11-09 [christoph]  0.8.5claws104
9126
9127         * src/compose.c
9128         * src/folder.[ch]
9129         * src/folderview.[ch]
9130         * src/import.c
9131         * src/inc.c
9132         * src/main.c
9133         * src/mainwindow.c
9134         * src/messageview.c
9135         * src/prefs_folder_item.c
9136         * src/procmsg.c
9137         * src/summaryview.c
9138                 implement a callback system for folder item updates
9139
9140 2002-11-09 [colin]      0.8.5claws103
9141
9142         * src/folderview.c
9143                 Fix prefs_filtering renaming for MH folders (we
9144                 shouldn't rename by path as another folder could
9145                 have the same hierarchy).
9146
9147 2002-11-09 [colin]      0.8.5claws102
9148
9149         * src/folder.c
9150                 Fix a leak found by Christoph, use better variable
9151                 names
9152
9153 2002-11-09 [colin]      0.8.5claws101
9154
9155         * src/folder.c
9156                 One more fix for processing rules
9157
9158 2002-11-08 [colin]      0.8.5claws100
9159         
9160         * src/matcher.c
9161                 Don't copy the compiled regexp (will be reevaluated)
9162         * src/folderview.c
9163                 Lock folderview while moving
9164         * src/folder.c
9165                 Provide info on what's happening to the user
9166
9167 2002-11-08 [colin]      0.8.5claws99
9168
9169         * src/folderview.c
9170                 Fix folder reordering after a move if parent is 
9171                 root
9172         * src/scoring.[ch]
9173                 Add function to copy a ScoringProp
9174         * src/prefs_folder_item.c
9175                 Copy scoring rules when copying a folder prefs
9176
9177 2002-11-08 [colin]      0.8.5claws98
9178
9179         * src/folderview.c
9180                 Fixes in case of failure
9181         * src/filtering.[ch]    
9182                 Add function to duplicate a FilteringProp
9183         * src/matcher.[ch]
9184                 Add function to duplicate a MatcherProp
9185         * src/prefs_folder_item.c
9186                 Save folder's processing rules when copying 
9187                 its prefs
9188
9189 2002-11-08 [colin]      0.8.5claws97
9190         
9191         * src/folderview.c
9192                 Sort after move
9193         * src/folder.c 
9194                 Change a printf to debug_print
9195
9196 2002-11-08 [colin]      0.8.5claws96
9197
9198         * src/folder.c
9199           src/folderview.c
9200                 Fix segfaults, call me stupido
9201         
9202
9203 2002-11-08 [colin]      0.8.5claws95
9204
9205         *src/folder.c
9206                 Added forgotten prefs to save when moving folders
9207
9208 2002-11-08 [colin]      0.8.5claws94
9209
9210         * src/folder.c
9211                 Fixes to folder DND (prefs copy)
9212         * src/folderview.c
9213                 Optimization for folder DND (don't rescan whole tree)
9214                 Added folderview_create_folder_node() for this 
9215                 optimization, so de-duped a bit the code
9216         * src/prefs_folder_item.[ch]
9217                 Added prefs_folder_item_copy_prefs()    
9218           
9219 2002-11-08 [paul]       0.8.5claws93
9220
9221         * src/prefs_account.c
9222           tools/README
9223           tools/kmail2sylpheed_v2.pl
9224                 correct some typos
9225
9226 2002-11-08 [paul]       0.8.5claws92
9227
9228         * src/compose.c
9229           src/prefs_account.[ch]
9230                 remove account options 'clearsign' and 'ascii_armored',
9231                 replace with 'default_gnupg_mode' to prevent mixed-mode
9232                 Privacy settings
9233
9234 2002-11-08 [paul]       0.8.5claws91
9235
9236         * src/compose.[ch]
9237                 re-implement GnuPG 'on-the-fly' mode selection,
9238                 disallow mixed-mode
9239
9240 2002-11-08 [colin]      0.8.5claws90
9241
9242         * src/folderview.c
9243           src/prefs_folder_item.c
9244                 Change "Property" to "Properties"
9245
9246 2002-11-07 [colin]      0.8.5claws89
9247
9248         * src/folderview.c
9249           src/folder.c
9250                 Allow folder dropping to a root folder
9251
9252 2002-11-07 [paul]       0.8.5claws88
9253
9254         * src/compose.c
9255                 revert last commit
9256
9257 2002-11-07 [paul]       0.8.5claws87
9258
9259         * src/compose.c
9260                 fix reply-to-list bug. closes bug report
9261                 "[633382] reply-to-list broken in recent cvs"
9262
9263 2002-11-07 [paul]       0.8.5claws86
9264
9265         * src/compose.c
9266                 add a forgotten '#if USE_GPGME ... #endif'
9267
9268 2002-11-07 [paul]       0.8.5claws85
9269
9270         * sync with 0.8.5cvs20
9271                 see ChangeLog 2002-11-07
9272
9273 2002-11-07 [colin]      0.8.5claws84
9274
9275         * src/folder.[ch]
9276                 Change folder_item_move_to to return the newly 
9277                 created folderitem.
9278         * src/folderview.c
9279                 Select the new folderitem after moving.
9280
9281 2002-11-07 [colin]      0.8.5claws83
9282
9283         * src/prefs_filtering.c
9284                 Fix rule rewriting when moving a leaf folder to a 
9285                 shorter path
9286
9287 2002-11-07 [colin]      0.8.5claws82
9288
9289         * src/prefs_filtering.c
9290                 fix a leak
9291
9292 2002-11-07 [colin]      0.8.5claws81
9293
9294         * src/folder.[ch]
9295                 Add folder_item_move_to() function to move a 
9296                 folderitem into another one (updates matcher etc)
9297         * src/folderview.c
9298                 Add folder drag'n drop (context menu to come)
9299                 [Should be dataloss free, but Please backup before 
9300                  trying !]
9301
9302 2002-11-06 [colin]      0.8.5claws80
9303
9304         * src/mh.c
9305                 mh_create_folder() returns NULL if can't create
9306                 directory hierarchy
9307
9308 2002-11-06 [paul]       0.8.5claws79
9309
9310         * src/compose.[ch]
9311                 allow 'on-the-fly' changing of the type of encryption 
9312                 and/or signing used (mime/ascii) via the compose window
9313
9314 2002-11-06 [paul]       0.8.5claws78
9315
9316         * sync with 0.8.5cvs19
9317                 see ChangeLog 2002-11-06 for src/account.c: 
9318                 account_get_special_folder()
9319                 
9320 2002-11-05 [alfons]     0.8.5claws77
9321
9322         * src/crash.c
9323                 very minor cleanups: nothing to see here, move on. :-)
9324
9325 2002-11-05 [colin]      0.8.5claws76
9326
9327         * src/main.c
9328                 Changes choices if compose windows are opened to
9329                 Discard, Draft, Don't quit
9330
9331 2002-11-05 [thorsten]   0.8.5claws75
9332
9333         * src/compose.c
9334                 reenabled default_reply_to folder option
9335
9336 2002-11-05 [colin]      0.8.5claws74
9337
9338         * src/compose.[ch] 
9339                 add compose_draft()
9340         * src/crash.c
9341                 add SIGTERM handler
9342         * src/main.[ch]
9343                 add clean_quit() for the SIGTERM handler
9344
9345 2002-11-05 [paul]       0.8.5claws73
9346         
9347         * po/es.po
9348                 updated by Ricardo Mones Lastra
9349
9350 2002-11-05 [melvin]     0.8.5claws72
9351
9352         * src/logwindow.c
9353                 Fixed log-clipping bug #616795.
9354                 To stop logging in the log window use 0 length.
9355         * src/prefs_common.c
9356                 Added a label to inform about the 0 log length behaviour.
9357
9358 2002-11-05 [paul]       0.8.5claws71
9359
9360         * sync with 0.8.5cvs17
9361                 see ChangeLog 2002-11-05
9362
9363 2002-11-04 [paul]       0.8.5claws70
9364
9365         * sylpheed-128x128.png
9366           sylpheed-64x64.png
9367           sylpheed.png
9368                 replace with pngcrushed icons. Submitted by Nicolas Kaiser,
9369                 <nikai@users.sourceforge.net>
9370                 
9371         * po/bg.po
9372                 updated by George Danchev
9373
9374 2002-11-03 [thorsten]   0.8.5claws69
9375
9376         * src/main.c
9377           src/mimeview.c
9378           src/rfc2015.h
9379                 add check if gpg is active
9380
9381 2002-11-03 [thorsten]   0.8.5claws68
9382
9383         * src/toolbar.h
9384                 removed GSList declaration causing trouble on MacOS-X
9385                 (submitted by alfons, reported by xfesty)
9386
9387 2002-11-01 [paul]       0.8.5claws67
9388
9389         * src/mainwindow.c
9390                 remove last remnants of main's filter code
9391
9392 2002-11-01 [paul]       0.8.5claws66
9393
9394         * tools/filter_conv.pl
9395                 fix bug where user-defined headers were ignored
9396
9397 2002-11-01 [paul]       0.8.5claws65
9398
9399         * src/logwindow.c
9400                 make a debug_print() not translatable
9401
9402 2002-10-31 [melvin]     0.8.5claws64
9403
9404         * ac/aspell.m4
9405                 Fixed --disable-aspell-test. Now --disable-aspell-test will 
9406                 not run any GNU/aspell test.  The dictionary path will
9407                 be by default /usr/local/lib/aspell/ unless --with-aspell-prefix
9408                 was given, in which case, it will be $prefix/lib/aspell/
9409         * configure.in
9410                 Fixed typo in commentary (Aspell code).
9411
9412 2002-10-31 [paul]       0.8.5claws63
9413
9414         * po/POTFILES.in
9415                 remove src/filter.c and src/prefs_filter.c
9416                 thanks to Ricardo for reminding me
9417
9418 2002-10-31 [colin]      0.8.5claws62
9419
9420         * src/mbox_folder.c
9421                 Plug some leaks
9422
9423 2002-10-31 [paul]       0.8.5claws61
9424
9425         * src/prefs_filter.[ch] ** REMOVED **
9426           src/filter.[ch]       ** REMOVED **
9427           
9428         * src/Makefile.am
9429           src/folderview.c
9430           src/inc.c
9431           src/main.c
9432           src/mainwindow.c
9433           src/mbox.c
9434           src/prefs_common.c
9435           src/prefs_filtering.c
9436           src/summaryview.[ch]
9437                 remove main's 'filter' code
9438                 
9439         README.claws
9440                 update to reflect removal of main's filter
9441
9442 2002-10-31 [paul]       0.8.5claws60
9443
9444         * src/summaryview.c
9445                 remove check for global_processing in summary_filter_open(). 
9446                 This fixes the bug where if the user uses the right-click 
9447                 'Create filter rule...' and doesn't have any filter rules 
9448                 already defined in claws' advanced filtering, the newly 
9449                 created filter rule goes to main's filtering which is 
9450                 inaccessible through the gui. Now the filter rule gets added
9451                 to claws' filtering by default.
9452
9453 2002-10-28 [melvin]     0.8.5claws59
9454
9455         * src/prefs_actions.c
9456                 Fixed bug #627322 where MIME parts were not always
9457                 correctly passed to a %p action
9458                 Display an error dialog when message filename is not found.
9459
9460 2002-10-28 [melvin]     0.8.5claws58
9461
9462         * src/prefs_common.c
9463                 Readded a missing function declaration lost in 0.8.3claws34
9464
9465 2002-10-28 [paul]       0.8.5claws57
9466
9467         * sync with 0.8.5cvs15
9468                 see ChangeLog 2002-10-28 and 2002-10-25
9469                 
9470         Note: ChangeLog entry 2002-10-24 is not sync'ed.
9471
9472 2002-10-27 [oliver]     0.8.5claws56
9473
9474         * src/pop.c
9475                 plug leak in pop3_top_recv
9476
9477 2002-10-26 [christoph]  0.8.5claws55
9478
9479         * src/folder.c
9480                 set need_update folder flag when messages are added
9481                 (closes bug [ 626922 ] folder not updated after receiving)
9482
9483 2002-10-25 [melvin]     0.8.5claws54
9484
9485         * src/imageview.c
9486                 Fixed a memleak introduced in the scaling code.
9487
9488 2002-10-24 [alfons]     0.8.5claws53
9489
9490         * src/filtering.c
9491                 make filtering's forward message action forward from the 
9492                 correct account
9493                 (closes bug [628089 ] Filter -> Forward from address problem
9494                 reported by Oktay)
9495
9496 2002-10-24 [christoph]  0.8.5claws52
9497
9498         * src/mainwindow.c
9499         * src/manual.[ch]
9500                 o use manual of current locale or english if current
9501                   locale is not available (and english is available)
9502                 o also link to sylpheed doc project manuals
9503
9504 2002-10-23 [paul]       0.8.5claws51
9505
9506         * tools/README
9507           tools/kmail2sylpheed_v2.pl
9508                 add new version of kmail addressbook importer script.
9509                 works with newer versions of Kmail/KAddressBook which
9510                 have new and rearranged data.
9511
9512 2002-10-23 [martin]     0.8.5claws50
9513
9514         * src/folderview.c
9515         * src/summaryview.c
9516         * src/utils.h
9517         * src/utils.c
9518                 added length parameter to get_abbrev_newsgroup_name()
9519                 changed this function so that it abbreviates the newsgroup
9520                 names only so long it is smaller than the length parameter
9521                 (for better reading of some newsgroup names and space efficiency)
9522
9523 2002-10-22 [colin]      0.8.5claws49
9524
9525         *src/foldersel.c
9526                 Revert Alfons' last modification (after voting ;-))
9527
9528 2002-10-21 [alfons]     0.8.5claws48
9529
9530         * src/foldersel.c
9531                 folder view in folder selection dialog reflects state of
9532                 folder view in main window
9533
9534 2002-10-18 [alfons]     0.8.5claws47
9535
9536         * src/mbox.c
9537                 drop imported messages in folder selected by user,
9538                 and not in the inbox
9539                 (closes bug [ 625424 ] Import mbox always to "Inbox" folder)
9540
9541 2002-10-18 [alfons]     0.8.5claws46
9542
9543         * src/compose.c
9544                 make automagic reply work correctly for email accounts 
9545                 (whether it's viable to do a full sync with Hiro's 
9546                 compose.c is still under discussion)
9547
9548 2002-10-18 [melvin]     0.8.5claws45
9549
9550         * src/prefs_actions.c
9551                 Fixed bug #622275 where asynchroneous actions left 
9552                 zombies processes
9553                 Made (synchroneous) actions' input be displayed live.
9554
9555 2002-10-18 [christoph]  0.8.5claws44
9556
9557         * src/textview.c
9558                 don't add a newline in the textview in front of the
9559                 first textpart if header display is disabled
9560                 (closes bug [ 603385 ] disabled header display leaves blank
9561                  lin)
9562
9563 2002-10-18 [christoph]  0.8.5claws43
9564
9565         * src/folder.[ch]
9566         * src/imap.c
9567         * src/mbox_folder.c
9568         * src/mh.c
9569         * src/news.c
9570                 folder->get_num_list now returns an error code
9571                 (closes bug [ 609424 ] News cache cleared on failure)
9572                 
9573 2002-10-17 [colin]      0.8.5claws42
9574         
9575         * src/news.c
9576                 Changed a printf by debug_print
9577
9578 2002-10-16 [paul]       
9579
9580         * tools/OOo2sylpheed.pl
9581                 allow for spaces in the name of the
9582                 file to be attached.
9583
9584 2002-10-16 [colin]      0.8.5claws41
9585
9586         * src/main.c
9587                 Use a tristate to change online mode
9588
9589 2002-10-16 [paul]       0.8.5claws40
9590
9591         * po/es.po
9592                 updated by Ricardo Mones Lastra
9593
9594 2002-10-16 [colin]      0.8.5claws39
9595
9596         * src/main.c
9597           src/mainwindow.[ch]
9598                 Added --online and --offline command-line
9599                 switches
9600
9601 2002-10-15 [christoph]  0.8.5claws38
9602
9603         * src/procmime.c
9604                 set mimeinfo->name to NULL after g_free to
9605                 avoid double freeing with g_free
9606
9607 2002-10-14 [christoph]  0.8.5claws37
9608
9609         * src/compose.c
9610         * src/filtering.c
9611         * src/summaryview.c
9612                 remove calls to folder->change_flags that are now
9613                 done by procmsg flag functions (seems it is not
9614                 used by any foldertype anyway)
9615         * src/folder.c
9616                 init folder->change_flags with NULL
9617
9618 2002-10-14 [christoph]  0.8.5claws36
9619
9620         * src/folder.[ch]
9621         * src/imap.[ch]
9622                 use virtual functions for folder item new and destroy
9623                 functions
9624
9625 2002-10-14 [melvin]     0.8.5claws35
9626
9627         * src/compose.c
9628                 Added a test to not run the spell checker if no default
9629                 dictionary is available. No dialog is displayed though.
9630
9631 2002-10-14 [melvin]     0.8.5claws34
9632
9633         * src/gtkaspell.c
9634                 Fixed bug in dictionary list context menu where
9635                 "More..." pointed to an emtpy submenu if the
9636                 number of dictionaries is a multiple of 15
9637                 Removed unneeded code in suggestions list creation
9638
9639 2002-10-14 [paul]       0.8.5claws33
9640
9641         * po/bg.po
9642                 updated by George Danchev
9643
9644 2002-10-13 [hoa]        0.8.5claws32
9645
9646         * src/matcher.[ch]
9647           src/matcher_parser_parser.y
9648                 removed the escaped string from internal structure
9649                 of matcher.
9650
9651 2002-10-12 [colin]      0.8.5claws31
9652
9653         * src/gtksctree.[ch]
9654           src/summaryview.c
9655                 Removed useless function gtksctree_reanchor
9656
9657 2002-10-12 [alfons]     0.8.5claws30
9658         
9659         * sync with remaining main changes 2002-10-09 - 2002-10-11
9660         - drop changes to src/compose.c (requires claws specific changes)
9661         
9662 2002-10-12 [alfons]     0.8.5claws29
9663         
9664         * sync with main changes of 2002-10-08
9665         - drop changes to src/compose.c (requires claws specific changes)
9666         - drop changes to src/summaryview.c (requires changes to compose.c)     
9667
9668 2002-10-12 [alfons]     0.8.5claws28
9669         
9670         * sync with main changes of 2002-10-07
9671
9672 2002-10-12 [alfons]     0.8.5claws27
9673
9674         * sync with main changes of 2002-10-04
9675         - drop changes to src/compose.c (requires claws specific changes)
9676         - drop changes to src/prefs_folder_item.c (claws implementation
9677           seems to be working)
9678
9679 2002-10-12 [colin]      0.8.5claws26
9680
9681         * src/mainwindow.c
9682                 Fix folder-flicker when space-reading, introduced 
9683                 in claws22.
9684
9685 2002-10-12 [colin]      0.8.5claws25
9686
9687         * src/compose.c
9688                 Save account address when saving as draft.
9689                 (closes bug 621838)
9690
9691 2002-10-12 [colin]      0.8.5claws24
9692
9693         * src/summaryview.c
9694                 Fix the problem consisting of no message selected
9695                 after the last message in a folder has been moved.
9696
9697 2002-10-12 [paul]       0.8.5claws23
9698
9699         * src/compose.c
9700           src/prefs_template.c
9701           src/template.[ch]
9702                 add Cc and Bcc to templates. Patch submitted by
9703                 John L. Males.
9704
9705 2002-10-12 [colin]      0.8.5claws22
9706
9707         * src/folderview.c
9708                 Fix a bug after "Check for new messages":
9709                 If a folder was opened, it was still selected at
9710                 the end of the check, but displayed empty.
9711         * src/mainwindow.c
9712                 Remove unnecessary check
9713
9714 2002-10-12 [paul]
9715
9716         * tools/README
9717                 be more verbose in the description of
9718                 OOo2sylpheed.pl
9719                 
9720
9721 2002-10-11 [colin]      0.8.5claws21
9722
9723         * src/mainwindow.c
9724                 Make space work (better) when no mail is selected
9725
9726 2002-10-11 [colin]      0.8.5claws20
9727
9728         * src/inc.c
9729           src/news.c
9730                 fix warnings
9731
9732 2002-10-11 [colin]      0.8.5claws19
9733
9734         * src/mainwindow.c
9735                 revert 0.8.5claws6 changes as i couldn't get to
9736                 anything satisfying
9737
9738 2002-10-11 [melvin]     0.8.5claws18
9739
9740         * src/compose.c
9741                 Removed buggy and unused macro (should have been committed in
9742                 0.8.5claws17)
9743
9744 2002-10-11 [melvin]     0.8.5claws17
9745
9746         * src/compose.c
9747                 Fixed memory leak from bug #622040 (thanks to Martin Kluge)
9748
9749 2002-10-11 [thorsten]   0.8.5claws16 
9750
9751         * src/folderview.c
9752                 remove rescan warning
9753
9754 2002-10-11 [colin]      0.8.5claws15 
9755
9756         * src/procheader.c
9757                 fix a segfault that happens if conv_unmime_header
9758                 fails (should be better to find out why it fails)
9759
9760 2002-10-11 [christoph]  0.8.5claws14
9761
9762         * src/summaryview.c
9763                 update folderview stats after ignore/unignore thread
9764
9765 2002-10-11 [hoa]        0.8.5claws13
9766
9767         * src/quote_fmt_parse.y
9768                 Fixed a yacc/bison syntax error
9769         * src/matcher.c
9770                 Escaping of string is fixed.
9771
9772 2002-10-11 [colin]      0.8.5claws12
9773
9774         * src/imageview.c
9775                 Resize images to fit
9776
9777 2002-10-11 [paul]       0.8.5claws11
9778
9779         * po/es.po
9780                 updated by Ricardo Mones Lastra
9781
9782 2002-10-10 [alfons]     0.8.5claws10
9783
9784         * src/compose.c
9785                 allow dropping files by "moving" files from a file manager,
9786                 not only by the more cumbersome "copying". the latter 
9787                 mostly implies holding down the Control button
9788
9789 2002-10-10 [christoph]  0.8.5claws9
9790
9791         * src/summaryview.c
9792                 update folders after thread building for ignored threads
9793
9794 2002-10-10 [christoph]  0.8.5claws8
9795
9796         * config/.cvsignore
9797                 added Makefile
9798         * src/filtering.[ch]
9799         * src/folder.[ch]
9800         * src/folderview.[ch]
9801         * src/import.c
9802         * src/inc.[ch]
9803         * src/mbox.[ch]
9804         * src/procmsg.c
9805         * src/summaryview.[ch]
9806                 o added new flag need_update to FolderItem
9807                 o removed folder_table from various functions from tracking
9808                   folder updates
9809                 o set need_update flags in folder.c's move, copy and delete
9810                   functions and procmsg's flags functions
9811                 o added function folderview_update_items_when_required that
9812                   updates all folders with need_update set
9813                 o call folderview_update_items_when_required instead of
9814                   folderview_update_item_foreach
9815
9816 2002-10-09 [sergey]     0.8.5claws7
9817
9818         * src/compose.c
9819                 Strip CRs whel loading the text into editor in reedit mode.
9820
9821 2002-10-09 [colin]      0.8.5claws6
9822
9823         * src/mainwindow.c
9824                 Make Space work when no mail is selected
9825
9826 2002-10-09 [colin]      0.8.5claws5
9827
9828         * src/gtksctree.[ch]
9829                 Fix range_select
9830                 Add gtk_sctree_reanchor() 
9831         * src/summaryview.c
9832                 Use gtk_sctree_reanchor() - better fix for 
9833                 bug 60413
9834
9835 2002-10-09 [colin]      0.8.5claws4
9836
9837         * src/summaryview.c
9838                 Fix shift-click select after delete problem
9839                 (closes bug 60413)
9840
9841 2002-10-08 [thorsten]   0.8.5claws3
9842
9843         * src/summaryview.c
9844                 exclude current msg from -hide read messages-
9845
9846 2002-10-08 [colin]      0.8.5claws2
9847
9848         * src/inc.[ch]
9849           src/pop.c
9850           src/recv.c
9851                 Differentiate socket errors from disk full
9852                 errors
9853
9854 2002-10-08 [christoph]  0.8.5claws1
9855
9856         * Makefile.am
9857         * configure.in
9858                 modifications for new config directory
9859
9860         * config.guess  ** REMOVED **
9861         * config.sub    ** REMOVED **
9862         * install-sh    ** REMOVED **
9863         * ltmain.sh     ** REMOVED **
9864         * missing       ** REMOVED **
9865         * mkinstalldirs ** REMOVED **
9866                 these files are autogenerated by automake
9867                 when you run autogen.sh
9868
9869         * config/.cvsignore     ** NEW FILE **
9870         * config/Makefile.am    ** NEW FILE **
9871                 ignore autogenerated files
9872                 create a Makefile in this directory
9873
9874 2002-10-08 [paul]       0.8.5claws
9875
9876         * 0.8.5claws release
9877         
9878         * src/compose.c
9879           src/procheader.c
9880           src/procmsg.c
9881                 fix quote reply format for newsgroups reply bug
9882                 (thanks to Hoa)
9883                 
9884         * po/en_GB.po
9885           po/pl.po
9886                 updated by me and Witold Wladyslaw Wojciech Wilk
9887                 repectively
9888
9889 2002-10-07 [paul]       0.8.3claws53
9890
9891         * po/it.po
9892           po/pt_BR.po
9893           po/sr.po
9894                 updated messages catalogs, submitted by
9895                 Alessandro Maestri, Fabio Jr.Beneditto 
9896                 and Urke MMI, respectively.
9897
9898 2002-10-07 [christoph]  0.8.3claws52
9899
9900         * src/folder.[ch]
9901         * src/folderview.c
9902         * src/mainwindow.c
9903                 fix new folder ghost message bug
9904                 (closes bug [ 619722 ] wrong count for newly created folders)
9905
9906 2002-10-07 [christoph]  0.8.3claws51
9907
9908         * src/compose.c
9909                 fix news posting problem
9910
9911 2002-10-07 [melvin]     0.8.3claws50
9912
9913         * po/fr.po
9914                 Updated French translation
9915
9916 2002-10-05 [christoph]  0.8.3claws49
9917
9918         * src/gtkstext.c
9919                 check if line_start_cache is set in gtk_stext_update_text
9920                 (closes bug [ 618119 ] crash while doing search in folder)
9921
9922 2002-10-05 [christoph]  0.8.3claws48
9923
9924         * src/imap.c
9925         * src/news.c
9926         * src/utils.c
9927         * src/utils.h
9928                 implement cache cleanups for claws' folder system
9929                 (closes bug [ 595916 ] imapcache not cleaned up)
9930
9931 2002-10-05 [melvin]     0.8.3claws47
9932
9933         * src/prefs_actions.c
9934                 Made the help text more clear for the %p token
9935
9936 2002-10-04 [paul]       0.8.3claws46
9937
9938         * sync with 0.8.5
9939                 see ChangeLog 2002-10-02 and 2002-10-03
9940
9941 2002-10-04 [christoph]  0.8.3claws45
9942
9943         * src/inc.c
9944                 fix segfault caused by pop before smtp
9945                 call to inc_account_mail with NULL
9946                 pointer for mainwin
9947
9948 2002-10-04 [paul]       0.8.3claws44
9949
9950         * configure.in
9951                 sync the LDAP detection from 0.8.5cvs1
9952
9953 2002-10-02 [christoph]  0.8.3claws43
9954
9955         * po/de.po
9956                 fix small spelling error
9957
9958 2002-10-02 [melvin]     0.8.3claws42
9959
9960         * ac/aspell.m4
9961                 Behave better and say "no" when test program cannot be run.
9962
9963 2002-10-02 [paul]       0.8.3claws41
9964
9965         * sync with 0.8.4cvs1
9966                 see ChangeLog 2002-09-30, 2002-10-01, 2002-10-02
9967                 
9968         * src/summaryview.c
9969                 toggle the behavior of Reply menuitem between
9970                 normal reply and reply-to-list
9971
9972 2002-10-01 [sergey]     0.8.3claws40
9973
9974         * src/compose.c
9975                 Convert newlines in the message text to the canonical form
9976                 before base64 encoding (RFC2045 compliance, fixes some
9977                 interoperability issues with Evolution 1.0.3)
9978
9979 2002-09-29 [colin]      0.8.3claws39
9980
9981         * src/summaryview.c
9982                 Fix an unwanted copy/paste
9983
9984 2002-09-29 [colin]      0.8.3claws38
9985
9986         * src/mainwindow.c
9987                 Renamed "Custom toolbar" to "Customize toolbar"
9988                 Renamed "Show all header" to "Show all headers"
9989                 Renamed "Set diplay item" to "Set displayed items"
9990         * src/prefs_common.c
9991                 Renamed "Show all header" to "Show all headers"
9992         * src/prefs_summary_column.c
9993                 Renamed "diplay item" to "displayed items"
9994
9995 2002-09-29 [colin]      0.8.3claws37
9996
9997         * src/mainwindow.[ch]
9998                 online/offline status pixmaps follow theme
9999                 changes
10000         * src/summaryview.[ch]
10001                 quicksearch pixmap follows theme changes
10002
10003 2002-09-29 [thorsten]   0.8.3claws36
10004
10005         * src/compose.c
10006           src/prefs_folder_item.[ch]
10007                 add default_reply_to folder option (closes patch 581044)
10008
10009 2002-09-29 [christoph]  0.8.3claws35
10010
10011         * acconfig.h    ** REMOVED **
10012         * configure.in
10013         * ac/aspell.m4
10014         * ac/check-type.m4
10015         * ac/gnupg-check-typedef.m4
10016                 fix autoheader 2.50 warning
10017
10018 2002-09-29 [christoph]  0.8.3claws34
10019
10020         * major code cleanup (part 2)
10021         
10022                 - unused variables removed
10023                 - unused functions removed
10024                 - uninitialized variables checked
10025                 - missing return statements added
10026                 - missing function return types added
10027                 - added parentheses around assignment
10028                   when suggested by gcc
10029
10030 2002-09-29 [alfons]     0.8.3claws33
10031
10032         * src/logwindow.c
10033                 log_window_clear(): only bracket gtk_text_forward_delete() 
10034                 with gtk_text_freeze() / gtk_text_thaw() (see if this
10035                 works around GTK text bug)
10036
10037 2002-09-29 [paul]       0.8.3claws32
10038
10039         * po/bg.po
10040           po/sr.po
10041                 updated by George Danchev and Urke MMI
10042                 respectively
10043
10044 2002-09-27 [christoph]  0.8.3claws31
10045
10046         * doc-src/readme.txt
10047         * doc-src/rfc1806.txt   ** REMOVED **
10048         * doc-src/rfc2183.txt   ** NEW FILE **
10049         * doc-src/rfc2980.txt   ** NEW FILE **
10050                 update rfcs
10051
10052 2002-09-27 [melvin]     0.8.3claws30
10053
10054         * ac/aspell.m4
10055                 Fixed typo which could break linking
10056
10057 2002-09-27 [melvin]     0.8.3claws29
10058
10059         * ac/aspell.m4
10060                 Improved GNU/aspell checking. 
10061                 Fixed bug #614490
10062
10063 2002-09-27 [paul]       0.8.3claws28
10064
10065         * sync with 0.8.3cvs8
10066                 see ChangeLog 2002-09-27
10067
10068 2002-09-26 [colin]      0.8.3claws27
10069
10070         * src/toolbar.[ch]
10071           src/mainwindow.[ch]
10072                 Add "Reply to Mailing-list" to the toolbar
10073
10074 2002-09-26 [christoph]  0.8.3claws26
10075
10076         * src/summaryview.c
10077                 Fix wrong message counts in summaryview status
10078
10079 2002-09-26 [paul]       0.8.3claws25
10080
10081         * sync with 0.8.3cvs7
10082                 see ChangeLog 2002-09-26
10083
10084 2002-09-26 [paul]       0.8.3claws24
10085
10086         * sync with 0.8.3cvs6
10087                 see ChangeLog 2002-09-25
10088
10089 2002-09-25 [christoph]  0.8.3claws23
10090
10091         * src/prefs_common.c
10092         * src/prefs_folder_item.c
10093         * src/prefs_scoring.c
10094                 Renamed "kill score" to "hide score" in GUI
10095                 and prefs files
10096
10097 2002-09-25 [paul]       0.8.3claws22
10098
10099         * sync with 0.8.3cvs5
10100                 see ChangeLog 2002-09-24
10101
10102 2002-09-24 [alfons]     0.8.3claws21
10103
10104         patch by Satoshi Nagayasu: allows appending / saving multiple 
10105         selected files (closes "[ 612279 ] save multiple mesg(s) in 
10106         'Save as ...'")
10107
10108         * AUTHORS
10109                 add Satoshi Nagayasu
10110         * src/summaryview.c
10111                 summary_save_as(): allow saving selected files to
10112                 one file
10113                 summary_set_menu_sensitive: enable "Save As..." when
10114                 multiple files are selected
10115         * src/utils.[ch]
10116                 append_file(): new function
10117
10118 2002-09-24 [colin]      0.8.3claws20
10119
10120         * src/procmime.c
10121                 Fix segfault when mimeinfo doesn't have a 
10122                 content_type. 
10123
10124 2002-09-24 [colin]      0.8.3claws19
10125
10126         * src/prefs_common.[ch]
10127                 Add a preference to display send dialog or not
10128         * src/send.c
10129                 Display send dialog according to preference
10130
10131 2002-09-24 [colin]      0.8.3claws18
10132
10133         * src/compose.[ch]
10134                 Disable user actions when sending
10135
10136 2002-09-24 [colin]      0.8.3claws17
10137
10138         * src/procmime.c
10139                 Do not display name or filename for attachments
10140                 with an application/pgp-signature type
10141                 (security flaw, see bug 537413)
10142
10143 2002-09-23 [colin]      0.8.3claws16
10144
10145         * src/editaddress.c
10146                 Initialize entry_email, entry_alias and 
10147                 entry_remarks to first email address of the list
10148
10149 2002-09-23 [colin]      0.83claws15
10150
10151         * src/compose.c
10152                 Drop pgp-signature when reediting a signed queued
10153                 message
10154
10155 2002-09-23 [melvin]     0.8.3claws14
10156
10157         * po/fr.po
10158                 Updated French translation
10159
10160 2002-09-23 [melvin]     0.8.3claws13
10161
10162         * src/mainwindow.c
10163                 Made custom toolbar menu labels more consistent
10164         * src/prefs_toolbar.c
10165                 Made custom toolbar window title more consistent
10166
10167 2002-09-22 [colin]      0.8.3claws12
10168
10169         * src/inc.c
10170                 Initialize session type to normal before getting 
10171                 mail (fixes strange Get behaviour)
10172         * src/prefs_account.h
10173                 Move STYPE_POP_BEFORE_SMTP to last position to 
10174                 avoid other side-effects
10175
10176 2002-09-22 [colin]      0.8.3claws11
10177
10178         * src/prefs_account.c
10179                 Fix pop_bfr_smtp_tm_entry sensivity when switching
10180                 from pop3 to apop or vice-versa
10181
10182 2002-09-22 [colin]      0.8.3claws10
10183         
10184         * src/prefs_account.[ch]
10185                 Add an option for the POP before SMTP timeout
10186         * src/inc.c
10187                 Remember time of last POP connection
10188         * src/send.c
10189                 Do POP before SMTP only if timeout reached
10190
10191 2002-09-22 [oliver]     0.8.3claws9
10192         
10193         * README.claws
10194                 explain custom toolbar
10195
10196 2002-09-22 [oliver]     0.8.3claws8
10197
10198         * src/prefs_actions.[ch]
10199         custom toolbar for compose      
10200                 actions callback from compose toolbar
10201         * src/folderview.c
10202                 remove include toolbar.h
10203
10204 2002-09-22 [oliver]     0.8.3claws7
10205         
10206         * src/prefs_toolbar.[ch]
10207                 custom toolbar for compose
10208                 - generic prefs_toolbar handles both
10209                   Mainwin's toolbar as well as Compose toolbar          
10210
10211 2002-09-22 [oliver]     0.8.3claws6
10212         
10213         * src/toolbar.[ch]
10214                 custom toolbar for compose
10215                 restructure toolbar.[ch]
10216
10217 2002-09-22 [oliver]     0.8.3claws5
10218
10219         * src/compose.[ch]
10220                 custom toolbar for compose
10221
10222 2002-09-22 [oliver]     0.8.3claws4
10223         
10224         * src/mainwindow.[ch]
10225                 custom toolbar for compose 
10226                 move mainwin toolbar back to mainwindow
10227
10228 2002-09-22 [alfons]     0.8.3claws3
10229
10230         * src/procmsg.c
10231                 :%sno/if(/if (/gc
10232                 :%sno/for(/for (/gc
10233                 (beautify)
10234
10235 2002-09-22 [alfons]     0.8.3claws2
10236         
10237         * src/procmsg.c
10238                 procmsg_save_to_outbox(): don't unlink message file from queue;
10239                 callers should do it using folder_item_remove_msg()
10240
10241 2002-09-22 [colin]      0.8.3claws1
10242
10243         * src/mimeview.[ch]
10244                 Made mimeview_check_signature() public
10245         * src/textview.c
10246                 Made GPG signatures verifiable by clicking
10247                 the [application/pgp-signature] in the Text
10248                 view
10249
10250 2002-09-22 [paul]       0.8.3claws
10251
10252         * po/bg.po
10253           po/en_GB.po
10254           po/es.po
10255           po/it.po
10256           po/pl.po
10257           po/pt_BR.po
10258           po/sr.po
10259                 updated translations, submitted by George Danchev,
10260                 me, Ricardo Mones Lastra, Alessandro Maestri,
10261                 Witold Wladyslaw Wojciech Wilk, Fabio Jr.Beneditto 
10262                 and Urke MMI, respectively.     
10263
10264 2002-09-22 [alfons]     0.8.2claws65
10265
10266         * src/procmsg.c
10267         * src/pgptext.c
10268                 no furry valgrinds have been used to plug these memleaks
10269
10270 2002-09-20 [paul]       0.8.2claws64
10271
10272         * sync with 0.8.3cvs4
10273                 'Select thread' re-implemented 
10274                 see ChangeLog 2002-09-20
10275
10276 2002-09-21 [alfons]     0.8.2claws63
10277
10278         * src/compose.c
10279                 compose_send(): plug unnoticed memleak
10280
10281 2002-09-20 [alfons]     0.8.2claws62
10282
10283         * src/addr_compl.c
10284                 replace_address_in_edit(): strict check for NULL address to
10285                 fix "[ 607348 ] Segfault in address completion". My guess is
10286                 that this happens with an empty address book, but it's good
10287                 to have this check here anyway
10288                 
10289                 completion_window_button_press(): free string returned 
10290                 from the internal cache
10291
10292 2002-09-20 [christoph]  0.8.2claws61
10293
10294         * src/procmime.h
10295                 added ENC_BINARY to EncodingType
10296         * src/procmime.c
10297                 the string returned by procmime_get_encoding_str
10298                 should not depend on the order of values in the
10299                 EncodingType definition
10300         * doc-src/rfc1806.txt   ** NEW FILE **
10301                 Added rfc1806 about MIME Content-Disposition
10302                 Extension
10303
10304 2002-09-19 [paul]       0.8.2claws60
10305
10306         * sync with 0.8.2cvs3
10307                 see ChangeLog 2002-09-19
10308
10309 2002-09-19 [paul]       0.8.2claws59
10310
10311         * src/prefs_folder_item.c
10312                 revert to Darko's original alignment of colour
10313                 selector button
10314                 add a colon to folder_color label
10315                 
10316         * src/compose.c
10317                 add Colin's patch (with Hiro's modifications) to 
10318                 force BASE64 encoding for 8-bit text when signing
10319                 (sync with 0.8.3cvs2)
10320
10321 2002-09-18 [alfons]     0.8.2claws58
10322
10323         * src/compose.c
10324                 :%sno/if(/if (/gc
10325                 :%sno/for(/for (/gc
10326                 (beautify a little bit)
10327
10328 2002-09-18 [christoph]  0.8.2claws57
10329
10330         * src/pine.c
10331                 fix handling of fgetc return value
10332
10333 2002-09-17 [alfons]     0.8.2claws56
10334         
10335         * src/summaryview.c
10336                 summary_sort(): check non-NULL summaryview->folder_item when no 
10337                 folder is selected at all
10338                 (closes "[ 610344 ] sort label make syl Crash")
10339
10340 2002-09-17 [alfons]     0.8.2claws55
10341         
10342         * src/compose.c
10343                 beautify a little bit
10344
10345 2002-09-17 [christoph]  0.8.2claws54
10346
10347         * src/folder.c
10348                 initialize max values for cache and folder
10349                 when cache or folder is empty
10350
10351 2002-09-15 [colin]      0.8.2claws53
10352
10353         * src/compose.c
10354                 Fix a leak (thanks Alfons!) and cleaned
10355                 variables names for custom headers
10356
10357 2002-09-15 [colin]      0.8.2claws52
10358
10359         * src/compose.c
10360                 Fix custom headers recognition when
10361                 prefs_common.trans_hdr is on
10362
10363 2002-09-15 [colin]      0.8.2claws51
10364
10365         * src/compose.c
10366                 Allow dynamically-added custom headers
10367                 Yet not reparsed if reedited
10368
10369 2002-09-15 [alfons]     0.8.2claws50
10370
10371         * src/prefs_account.c
10372                 fix warnings
10373
10374 2002-09-15 [colin]      0.8.2claws49
10375         
10376         * src/prefs_account.c
10377                 fix pop_before_smtp sensitivity
10378
10379 2002-09-15 [colin]      0.8.2claws48
10380
10381         * src/inc.[ch]
10382                 add inc_pop_before_smtp()
10383                 allow MainWindow to be undefined in 
10384                 inc_account_mail() and inc_start()
10385         * src/pop.c
10386           src/prefs_account.h
10387                 add STYPE_POP_BEFORE_SMTP session type
10388         * src/prefs_account.c
10389                 activated pop before smtp option
10390         * src/send.c
10391                 do pop before smtp if the relevant option 
10392                 is set
10393
10394 2002-09-15 [paul]       0.8.2claws47
10395
10396         * sync with 0.8.3
10397                 see ChangeLog 2002-09-15
10398
10399 2002-09-14 [paul]       0.8.2claws46
10400
10401         * po/bg.po
10402                 updated Bulgarian translation, submitted by
10403                 George Danchev
10404
10405 2002-09-13 [paul]       0.8.2claws45
10406
10407         * src/compose.c
10408                 merge claws' select_account() with main's
10409                 (new) compose_select_account(). [sync with
10410                 0.8.2cvs15, see ChangeLog 2002-09-11]
10411
10412 2002-09-12 [christoph]  0.8.2claws44
10413
10414         * src/filter.c
10415                 allocate 1 elements of FolderItem not 0
10416
10417 2002-09-12 [colin]      0.8.2claws43
10418
10419         * src/compose.c
10420                 Fix bug #590825 (obey Follow-up: poster)
10421
10422 2002-09-12 [colin]      0.8.2claws42
10423
10424         * src/procmime.c
10425                 Fix bug #557009 (wrong headers for messages 
10426                 forwarded as attachments)
10427
10428 2002-09-11 [colin]      0.8.2claws41
10429         
10430         * src/compose.c
10431                 Put SCF: pseudo-header on top of message
10432                 Set draft tmp_flag when saved as draft
10433
10434         * src/procmsg.c
10435           src/procheader.c
10436                 Skip after first \n\n for beginning of real message
10437                 for drafts too
10438
10439 2002-09-11 [christoph]  0.8.2claws40
10440
10441         * src/filtering.c
10442                 use procmsg flag functions in filtering or processing
10443                 will cause incorrect folder message counts
10444
10445 2002-09-11 [colin]      0.8.2claws39
10446
10447         * src/compose.c
10448                 Fix bug #550175 - wrong save folder when reediting
10449                 drafts
10450
10451 2002-09-11 [paul]       0.8.2claws38
10452
10453         * sync with 0.8.2cvs14
10454                 see ChangeLog 2002-09-11
10455
10456 2002-09-11 [colin]      0.8.2claws37
10457
10458         * src/folder.c
10459                 Fix a typo (seeming to cause new/unread status to
10460                 be lost)
10461
10462 2002-09-10 [christoph]  0.8.2claws36
10463
10464         * src/compose.c
10465                 compose_redirect should not use compose_generic_new
10466                 because that does more stuff than expected including
10467                 opening the external editor
10468                 (closes bug "[ 526608 ] bounced messages appear blank
10469                  in editor")
10470
10471 2002-09-10 [christoph]  0.8.2claws35
10472
10473         * src/folder.c
10474                 fix problem with too large message number range
10475                 causing a crash in folder_item_scan
10476
10477 2002-09-10 [paul]       0.8.2claws34
10478
10479         * sync with 0.8.2cvs13
10480                 see ChangeLog 2002-09-10
10481
10482 2002-09-10 [christoph]  0.8.2claws33
10483
10484         * src/msgcache.c
10485                 set MsgInfo TmpFlags for queue and draft folders
10486                 (closes bug "[ 591676 ] Queue ignore MIME on restart")
10487
10488 2002-09-10 [paul]       0.8.2claws32
10489
10490         * AUTHORS
10491           po/bg.po      ** NEW FILE **
10492                 new Bulgarian translation submitted by
10493                 George Danchev <danchev@spnet.net>
10494                 
10495         * tools/Makefile.am
10496           tools/README
10497           tools/tb2sylpheed     ** NEW FILE **
10498                 add script that converts an addressbook exported
10499                 from The Bat! into a Sylpheed addressbook. Submitted
10500                 by Urke MMI <urke-kg@eunet.yu>
10501
10502 2002-09-10 [paul]       0.8.2claws31
10503
10504         * sync with 0.8.2cvs12
10505                 see ChangeLog 2002-09-10
10506
10507 2002-09-06 [paul]       0.8.2claws30
10508
10509         * src/prefs_common.c
10510                 sync with 0.8.2cvs11, see ChangeLog 2002-09-06
10511                 
10512         * tools/Makefile.am
10513           tools/README
10514           tools/ldif-to-xml.py  ** REMOVED **
10515                 remove obsolete python script
10516
10517 2002-09-06 [paul]       0.8.2claws29
10518
10519         * sync with 0.8.2cvs10
10520                 see ChangeLog 2002-09-06
10521
10522 2002-09-04 [paul]       0.8.2claws28
10523
10524         * sync with 0.8.2cvs9
10525                 see ChangeLog 2002-08-04
10526
10527 2002-09-04 [colin]      0.8.2claws27 
10528
10529         * src/prefs_common.[ch]
10530                 Added signature color configuration
10531         * src/textview.c
10532                 Use user-specified signature color
10533
10534 2002-09-03 [colin]      0.8.2claws26
10535
10536         * src/prefs_common.[ch]
10537                 Added autosave and autosave_length prefs
10538         * src/compose.c
10539                 Added compose_remove_draft()
10540                 Auto-save drafts according to the prefs
10541         * src/main.c
10542                 Added a crash-indicator file, allowing to check
10543                 for new messages on startup if Sylpheed crashed
10544                 (makes saved drafts "reappear")
10545
10546 2002-09-03 [colin]      0.8.2claws25
10547
10548         * src/textview.[ch]
10549                 Grey the signature
10550
10551 2002-09-03 [paul]       0.8.2claws24
10552
10553         * sync with 0.8.2cvs8
10554                 see ChangeLog 2002-09-02 and 2002-09-03
10555
10556 2002-09-03 [darko]      0.8.2claws23
10557
10558         * src/folderview.c
10559                 use normal style when creating new folder to pick
10560                 proper font size 
10561
10562 2002-09-02 [melvin]     0.8.2claws22
10563
10564         * src/gtkaspell.m4
10565                 removed some obsolete code
10566
10567 2002-09-02 [melvin]     0.8.2claws21
10568
10569         * ac/aspell.m4
10570                 fixed test's equality sign (== to =)
10571
10572 2002-09-02 [alfons]     0.8.2claws20
10573
10574         * src/folder.c
10575         * src/mh.c
10576                 revert change of 0.8.2claws16 and use the mh_folder_destroy
10577                 as folder->destroy virtual as suggested by Hiro
10578                 (the mh.c code seems to have been lost around mh.c.1.21)
10579
10580 2002-09-02 [paul]       0.8.2claws19
10581
10582         * po/pt_BR.po
10583                 updated by Fabio Jr. Beneditto
10584                 
10585         * src/defs.h
10586                 use 'http://claws.sylpheed.org' for homepage link. 
10587                 Domain provided by Oktay Altunergil <oktay@freelinuxcd.org>
10588
10589 2002-09-01 [alfons]     0.8.2claws18
10590
10591         * src/mh.c
10592                 plug memleak related to one Martin Kluge found
10593
10594 2002-08-31 [paul]       0.8.2claws17
10595
10596         * sync with 0.8.2cvs6
10597                 see ChangeLog 2002-08-30
10598
10599 2002-08-31 [alfons]     0.8.2claws16
10600
10601         * src/folder.c
10602                 folder_destroy(): remove mailbox from folderlist even if it has
10603                 no destroy virtual
10604
10605 2002-08-31 [alfons]     0.8.2claws15
10606
10607         * src/folder.c
10608                 :%sno/if(/if (/gc
10609                 :%sno/for(/for (/gc
10610                 (being pedantic I know)
10611
10612 2002-08-31 [alfons]     0.8.2claws14
10613
10614         * src/folder.c
10615                 check for NULL pointers returned from folder->fetch_msginfo virtual
10616                 (should solve some reported crashes)
10617
10618 2002-08-30 [alfons]     0.8.2claws13
10619
10620         * acconfig.h
10621         * configure.in
10622         * src/crash.c
10623                 enable crash dialog on compilation time
10624                 (--enable-crash-dialog configure option)
10625
10626 2002-08-30 [alfons]     0.8.2claws12
10627
10628         * AUTHORS
10629                 add Martin Kluge
10630         * src/mh.c
10631                 apply memory leak plug patch by Martin Kluge
10632                 (closes patch "[ 602568 ] patch for 602441 little memory leak",
10633                 bug "[ 599677 ] Very small memory leak in 0.81claws115",
10634                 and bug "[ 602441 ] memoryleak in filtering 0.8.2claws9?")
10635
10636 2002-08-30 [darko]      0.8.2claws11
10637
10638         * src/folderview.c
10639                 copy Gtk style from normal style to match
10640                 font size for coloured folders
10641
10642 2002-08-29 [alfons]     0.8.2claws10
10643
10644         * sylpheed.desktop
10645                 Type=Internet <- Type=Application
10646                 (reported by Michael Schwendt, see:
10647                 http://sourceforge.net/tracker/index.php?func=detail&aid=599765&group_id=25528&atid=384600
10648                 http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=72882)
10649
10650 2002-08-29 [paul]       0.8.2claws9
10651
10652         * sync with 0.8.2cvs5
10653                 see ChangeLog 2002-08-29
10654
10655 2002-08-29 [colin]      0.8.2claws8
10656
10657         * src/summaryview.c
10658                 Added a sanity check in summary_select_thread
10659                 Should fix bug 601605
10660
10661 2002-08-29 [colin]      0.8.2claws7
10662
10663         * src/main.c
10664                 Revert claws6 changes regarding bug #591676
10665
10666 2002-08-28 [colin]      0.8.2claws6
10667         
10668         * src/main.c
10669                 Ignore cache for queue folderitems
10670                 Fix bug #591676
10671
10672 2002-08-28 [melvin]     0.8.2claws5
10673
10674         * README.claws
10675                 Fixed typos.
10676
10677 2002-08-28 [melvin]     0.8.2claws4
10678
10679         * README.claws
10680                 Updated a bit the text concerning the spell checker
10681
10682 2002-08-28 [melvin]     0.8.2claws3
10683
10684         Merged the GNU_aspell_branch:
10685                 Support of new GNU/aspell is now included and the old pspell
10686                 is not supported anymore.
10687                 See README.claws
10688
10689         * README.claws
10690                 Updated spell checker text to reflect the switch to GNU/aspell
10691
10692         * ac/aspell.m4          *** NEW ***
10693         * src/gtkaspell.[ch]    *** NEW *** 
10694         * ac/pspell.m4          *** DELETED *** 
10695         * src/gtkspell.[ch]     *** DELETED ***
10696
10697         * ac/Makefile.am
10698                 Updated for GNU/aspell support
10699
10700         * po/POTFILES.in
10701                 Replaced gtkspell.c by gtkaspell.c
10702
10703         * acconfig.h
10704         * src/Makefile.am
10705         * src/about.c
10706         * src/compose.[ch]
10707         * src/crash.c
10708         * src/main.c
10709         * src/prefs_common.[ch]
10710                 Updated for GNU/aspell support
10711
10712 2002-08-28 [paul]       0.8.2claws2
10713
10714         * sync with 0.8.2cvs4
10715                 see ChangeLog 2002-08-27 and 2002-08-28
10716
10717 2002-08-28 [colin]      0.8.2claws1
10718
10719         * src/summary_search.c
10720                 Added "AND search"
10721
10722 2002-08-28 [jens]       0.8.2claws
10723
10724         *po/de.po
10725                 Updated German translations
10726
10727 2002-08-27 [melvin]     0.8.2claws
10728
10729         * po/fr.po
10730                 Updated French translations
10731
10732 2002-08-27 [paul]       0.8.2claws
10733
10734         * sync with 0.8.2 main release
10735
10736         * po/en_GB.po
10737           po/es.po
10738           po/it.po
10739           po/pl.po
10740           po/pt_BR.po
10741           po/sr.po
10742                 updated message catalogs submitted by
10743                 Ricardo Mones Lastra, Alessandro Maestri,
10744                 Witold Wladyslaw Wojciech Wilk, Fabio Jr.
10745                 Beneditto and Urke MMI  
10746
10747 2002-08-27 [hoa]        0.8.1claws123
10748
10749         * src/mainwindow.[ch]
10750         * src/summaryview.[ch]
10751                 removed the "filter setting" menu option.
10752                 add a "cancel a news message" menu option.
10753
10754 2002-08-26 [martin]     0.8.1claws122
10755
10756         * ChangeLog.claws
10757                 changed string under 0.8.1claws79 changed by myself
10758                 i'm sorry alfons :(
10759
10760 2002-08-26 [martin]     0.8.1claws121
10761
10762         * src/crash.c
10763                 added kill command to debuggerrc to start crash dialog
10764
10765 2002-08-26 [paul]       0.8.1claws120
10766
10767         * sync with 0.8.1cvs31
10768                 see ChangeLog 2002-08-26
10769
10770 2002-08-25 [alfons]     0.8.1claws119
10771
10772         * src/procmsg.c
10773                 fix bug that didn't send out correct headers to news server
10774                 when sending news article and email from queue (bug reported
10775                 and patch provided by Tim Mann; closes bug 
10776                 "[ 583196 ] 0.7.8claws can't post news")
10777
10778 2002-08-25 [alfons]     0.8.1claws118
10779
10780         * src/selective_download.c
10781                 mark two strings as translatable
10782                 (thanks to Urke MMI for pointing this out)
10783
10784 2002-08-25 [alfons]     0.8.1claws117
10785
10786         * src/summaryview.c
10787                 treat sent boxes as special and allow sorting them by addressee
10788                 (closes "[ 589418 ] Sent folder sorting misbehavior"
10789                 submitted by Steve Lamb)
10790
10791 2002-08-24 [alfons]     0.8.1claws116
10792
10793         * src/matcher.c
10794                 fix memleak reported by Martin Kluge
10795                 (see: "[ 599677 ] Very small memory leak in 0.81claws115")
10796
10797 2002-08-24 [oliver]     0.8.1claws115
10798
10799         * src/prefs_toolbar.c
10800                 o code cleanup as suggested by Alfons
10801                 o memleak fix
10802
10803 2002-08-24 [alfons]     0.8.1claws114
10804
10805         * src/summaryview.c
10806                 o fix another memory leak reported by Martin Kluge
10807                   (see "[ 599568 ] Small Memory Leak")
10808                 o remove 'from' variable from 'summary_set_header()'; we can
10809                   do with just 'to' 
10810
10811 2002-08-24 [paul]       0.8.1claws113
10812
10813         * sync with 0.8.1cvs30
10814                 see ChangeLog 2002-08-23
10815
10816 2002-08-24 [alfons]     0.8.1claws112
10817
10818         * src/summaryview.c
10819                 remove unnecessary allocations for search bar fixing leaks
10820                 reported by Martin Kluge
10821                 (see "[ 599451 ] Further memory leaks?")
10822
10823 2002-08-24 [alfons]     0.8.1claws111
10824
10825         * src/main.c
10826                 make get_socket_name() public for crash.c
10827         * src/crash.c
10828                 o make report bug button work (goes to claws' 
10829                   bug tracker at sf.net)
10830                 o introduce function for doing important stuff just
10831                   before claws goes down
10832                 o clean up code 
10833
10834 2002-08-24 [alfons]     0.8.1claws110
10835
10836         * src/compose.c
10837                 move cursor to "To" entry when forwarding as attachment
10838                 (reported and solved by Steve Lamb, closes bug report
10839                 "[ 592880 ] Forward as attachment; cursor not in to")
10840
10841 2002-08-24 [colin]      0.8.1claws109
10842
10843         * src/mainwindow.c
10844                 fix quick search visibility after GUI (de)separations.
10845
10846 2002-08-23 [colin]      0.8.1claws108
10847
10848         * src/mainwindow.c
10849                 fix header pane visibility after folderview or
10850                 messageview (de)separation
10851
10852 2002-08-23 [paul]       0.8.1claws107
10853
10854         * src/mainwindow.[ch]
10855           src/toolbar.c
10856                 give full control of display or non-display 
10857                 of the Execute icon to Custom toolbar settings.
10858                 add new sensitivity condition to maninwindow.h: 
10859                 M_DELAY_EXEC
10860
10861         * ChangeLog
10862           ChangeLog.jp
10863           NEWS
10864                 more sync with 0.8.1cvs29
10865
10866 2002-08-23 [melvin]     0.8.1claws106
10867
10868         * src/alertpanel.c
10869                 Readded support for custom widget in alertpanel lost in last
10870                 sync.
10871
10872 2002-08-23 [paul]       0.8.1claws105
10873
10874         * sync with 0.8.1cvs29
10875                 see ChangeLog 2002-08-23
10876
10877 2002-08-23 [colin]      0.8.1claws104
10878
10879         * src/summaryview.c
10880                 Fix folder and search pixmaps exchanging positions
10881                 after theme or toolbar changes. Thank to Oliver for 
10882                 reporting this.
10883
10884 2002-08-23 [colin]      0.8.1claws103
10885
10886         * src/mainwindow.c
10887           src/messageview.[ch]
10888           src/noticeview.[ch]
10889           src/summaryview.c
10890                 Changed messageview_create() and noticeview_create()
10891                 to avoid the last gdk_warning
10892
10893 2002-08-22 [colin]      0.8.1claws102
10894
10895         * src/summaryview.c
10896                 Fix my new `Creating pixmap from xpm' warning
10897
10898 2002-08-22 [colin]      0.8.1claws101
10899
10900         * src/mainwindow.c
10901                 Fix some of the gdk warnings
10902
10903 2002-08-22 [colin]      0.8.1claws100
10904
10905         * src/Makefile.am
10906         * src/stock_pixmap.c
10907         * src/stock_pixmap.h
10908         * src/pixmaps/quicksearch.xpm *ADDED*
10909                 Add the quicksearch pixmap
10910         * src/mainwindow.c
10911         * src/summaryview.c
10912         * src/summaryview.h
10913                 Make quicksearch bar visible/hidden via a button
10914
10915 2002-08-22 [christoph]  0.8.1claws99
10916
10917         * src/folder.c
10918                 fix folder update for newsgroups with message
10919                 numbers below minimum number of articles to fetch
10920                 (closes bug #598445)
10921
10922 2002-08-22 [paul]       0.8.1claws98
10923
10924         * sync with 0.8.1cvs28
10925                 see ChangeLog 2002-08-22
10926
10927 2002-08-21 [alfons]     0.8.1claws97
10928
10929         * src/crash.c
10930                 use bt instead of bt full which seems to work 
10931                 better, and bt full doesn't give a great deal 
10932                 of information anyway
10933
10934 2002-08-21 [colin]      0.8.1claws96
10935
10936         * src/summaryview.c
10937                 fix summaryview_searchtype_changed prototype
10938
10939 2002-08-21 [christoph]  0.8.1claws95
10940
10941         * src/mainwindow.c
10942                 o fix broken menu update for sorting type, we have to
10943                   get this info from the summaryview now
10944                 o removed setting of threaded state in menu callback
10945         * src/summaryview.[ch]
10946                 more summaryview/folderitem seperation for
10947                 threading option
10948         * configure.in
10949                 removed not required --with-compiler-flags option
10950
10951 2002-08-21 [oliver]     0.8.1claws94
10952         
10953         * src/toolbar.h 
10954                 o rename toolbar.xml to toolbar_main.xml
10955                   since toolbar_compose.xml might come up 
10956                   any time soon
10957         * README.claws
10958                 add custom toolbar              
10959
10960 2002-08-21 [darko]      0.8.1claws93
10961
10962         * src/procmsg.c
10963                 don't reset tmp flags for messages copied
10964                 to sent folder
10965
10966 2002-08-21 [colin]      0.8.1claws92
10967         
10968         * src/prefs_filtering.c
10969                 fix renaming rules on folder rename 
10970                 when folder is not a leaf folder
10971
10972 2002-08-21 [paul]       0.8.1claws91
10973
10974         * src/prefs_folder_item.c
10975                 fix alignment of colour selector
10976
10977 2002-08-21 [paul]       0.8.1claws90
10978
10979         * sync with 0.8.1cvs27
10980                 see ChangeLog 2002-08-21
10981
10982 2002-08-21 [paul]       0.8.1claws89
10983
10984         * src/summaryview.c
10985                 fix crash when changing field type in
10986                 Quick search bar
10987
10988 2002-08-21 [colin]      0.8.1claws88
10989
10990         * src/summaryview.c
10991                 Made quick search case-insensitive
10992
10993 2002-08-21 [paul]       0.8.1claws87
10994
10995         * sync with 0.8.1cvs26
10996                 see ChangeLog 2002-08-21
10997
10998 2002-08-20 [christoph]  0.8.1claws86
10999
11000         * src/folderview.c
11001         * src/main.c
11002         * src/summaryview.[ch]
11003                 more summaryview/folderitem seperation for
11004                 sort_key and sort_type
11005         * src/procmsg.c
11006                 added missing return statement
11007
11008 2002-08-20 [colin]      0.8.1claws85
11009
11010         * src/summaryview.[ch]
11011                 Added a quick search box
11012         * src/mainwindow.c
11013         * src/prefs_common.[ch]
11014                 Added a show/hide option for the quick search
11015
11016 2002-08-20 [oliver]     0.8.1claws84
11017         
11018         * src/mainwindow.c
11019                 remove toolbar_create_popups
11020         * src/toolbar.[ch]
11021                 o remove toolbar_create_popups
11022                 o fix toolbar_set_sensitive 
11023                   (Bug reports #596834 and #596832)     
11024         * src/prefs_toolbar.c
11025                 o add "Set default" button
11026                 o align label and text + combo widgets
11027
11028 2002-08-20 [hoa]        0.8.1claws83bis
11029
11030         * src/imap.c
11031                 fixed a bug in imap_fetch_msginfo() in case there is no
11032                 current folder.
11033
11034 2002-08-20 [darko]      0.8.1claws83
11035
11036         * src/folderview.c
11037                 copy the color style of folder view so it
11038                 works with GTK themes
11039
11040 2002-08-20 [darko]      0.8.1claws82
11041
11042         * src/folder.h
11043         * src/folderview.c
11044         * src/prefs_folder_item.[hc]
11045                 don't use UI stuff in folder.h
11046
11047 2002-08-20 [darko]      0.8.1claws81
11048
11049         * src/folder.h
11050         * src/prefs_folder_item.h
11051         * src/folderview.c
11052         * src/prefs_folder_item.c
11053                 ability to set folder color in folderview
11054
11055 2002-08-19 [alfons]     0.8.1claws80
11056
11057         * src/summaryview.c
11058                 fix one of the earlier memleaks reported by Martin Kluge
11059
11060 2002-08-19 [alfons]     0.8.1claws79
11061
11062         * src/mainwindow.c
11063                 hide notice view when selecting seperate folder
11064                 view (reported by Urke MMI)
11065
11066 2002-08-19 [christoph]  0.8.1claws78
11067
11068         * src/folderview.c
11069         * src/prefs_folder_item.h
11070         * src/summaryview.[ch]
11071                 o add summary_set_prefs_from_folderitem to set
11072                   summaryview prefs (first step to remove all
11073                   references to the folderitem in summaryview)
11074                 o moved compiled regex stuff from folderitem prefs
11075                   to summaryview code
11076
11077 2002-08-19 [paul]       0.8.1claws77
11078
11079         * src/compose.c
11080                 add check for '.' to QUOTE_IF_REQUIRED
11081
11082 2002-08-19 [paul]       0.8.1claws76
11083
11084         * src/inc.c
11085                 sync with 0.8.1cvs25 (plug memory leak)
11086
11087         * src/prefs_toolbar.c
11088                 re-order prefs_toolbar_cancel()
11089
11090 2002-08-18 [alfons]     0.8.1claws75
11091
11092         * src/inc.c
11093         * src/matcher.c
11094                 plug other memleaks reported by Martin Kluge
11095
11096 2002-08-18 [paul]       0.8.1claws74
11097
11098         * po/pt_BR.po
11099                 updated by Fabio Jr. Beneditto
11100
11101 2002-08-18 [paul]       0.8.1claws73
11102
11103         * src/toolbar.[ch]
11104                 fix bug where tooltips were displayed untranslated              
11105
11106         * src/prefs_toolbar.c
11107                 fix bug where clicking 'Cancel' creates an icon & text
11108                 toolbar regardless of prefs
11109         
11110
11111 2002-08-17 [oliver]     0.8.1claws72
11112
11113         * src/prefs_toolbar.c
11114                 update toolbar on CANCEL
11115                 bug reported by Martin Kluge
11116         * src/toolbar.c
11117                 toolbar_destroy memleak fixed           
11118
11119 2002-08-17 [alfons]     0.8.1claws71
11120
11121         * src/toolbar.c
11122                 plug another memleak reported by Martin Kluge
11123
11124 2002-08-16 [alfons]     0.8.1claws70
11125
11126         * src/crash.c
11127                 use execvp() correctly (suggested by wwp; thanks!)
11128
11129 2002-08-16 [alfons]     0.8.1claws69
11130
11131         * src/gtksctree.c
11132                 plug memory leak reported by Kim Schultz & Martin Kluge
11133
11134 2002-08-16 [paul]       0.8.1claws68
11135
11136         * po/es.po
11137                 updated by Ricardo Mones Lastra
11138
11139 2002-08-16 [paul]       0.8.1claws67
11140
11141         * src/toolbar.h
11142                 fix bug where 'Compose News' icon showed wrong
11143                 tooltip
11144
11145 2002-08-16 [paul]       0.8.1claws66
11146
11147         * sync with 0.8.1cvs24
11148                 see ChangeLog 2002-08-16
11149
11150         * po/it.po
11151                 updated by Alessandro Maestri
11152
11153 2002-08-15 [paul]       0.8.1claws65
11154
11155         * po/sr.po
11156                 updated by Urke MMI
11157
11158 2002-08-15 [paul]       0.8.1claws64
11159
11160         * src/*.c
11161                 don't translate debug info
11162
11163         * src/matcher.[ch]
11164                 add copyright info
11165
11166 2002-08-15 [paul]       0.8.1claws63
11167
11168         * src/prefs_toolbar.c
11169                 fix bug where clicking 'OK' creates an icon & text
11170                 toolbar regardless of prefs
11171
11172 2002-08-14 [alfons]     0.8.1claws62
11173
11174         * src/main.c
11175                 add global var that has the full argv[0]
11176         * src/crash.c
11177                 o execvp the correct sylpheed by using argv0
11178                   and setting the correct work dir
11179                 o other tweaks  
11180
11181 2002-08-14 [oliver]     0.8.1claws61
11182         
11183         * enable/disable Toolbar Action Buttons 
11184         * code cleanups
11185         * src/mainwindow.c
11186         * src/toolbar.[ch]      
11187         * src/prefs_toolbar.c   
11188
11189 2002-08-14 [melvin]     0.8.1claws60
11190
11191         * po/fr.po
11192                 Updated French translations
11193
11194 2002-08-14 [melvin]     0.8.1claws59
11195
11196         * src/crash.c
11197                 Made bug report not translatable
11198         * src/exporthtml.c
11199                 Fixed exporthtml_build_filespec() return value
11200         * src/foldersel.c
11201                 Fixed incorrect include file
11202         * src/gtkspell.c
11203         * src/prefs_actions.c
11204         * src/prefs_toolbar.c
11205                 Made debug info not translatable
11206         * src/mutt.c
11207         * src/quote_fmt.c
11208                 Added missing includes
11209         * src/prefs_common.c
11210                 Fixed typo
11211
11212 2002-08-14 [paul]       0.8.1claws58
11213
11214         * faq/es/sylpheed-faq.html
11215           faq/es/sylpheed-faq-[1-3].html
11216           faq/es/sylpheed-faq-4.html     **NEW FILE **
11217                 update Spanish FAQ
11218
11219 2002-08-13 [christoph]  0.8.1claws57
11220
11221         * src/procmsg.c
11222                 ignore thread fix that did not mark all
11223                 child nodes of a ignored thread as
11224                 ignored. Does not work perfectly yet,
11225                 but it is better now
11226
11227 2002-08-13 [alfons]     0.8.1claws56
11228
11229         * src/crash.c
11230                 o implement 'save crash log'
11231                 o some tweaks
11232
11233 2002-08-13 [melvin]     0.8.1claws55
11234
11235         * src/main.c
11236                 removed unrequired "execinfo.h" header
11237
11238 2002-08-12 [paul]       0.8.1claws54
11239
11240         * faq/en/sylpheed-faq.html
11241           faq/en/sylpheed-faq-[1-3].html
11242           faq/en/sylpheed-faq-4.html     **NEW FILE **
11243                 update English FAQ
11244
11245 2002-08-12 [alfons]     0.8.1claws53
11246
11247         * po/POTFILES.in
11248                 add crash.c to translatables
11249         * src/crash.c
11250                 bring in Leandro's crash dialog
11251
11252 2002-08-11 [alfons]     0.8.1claws52
11253
11254         * src/crash.c
11255                 clean up some warnings
11256
11257 2002-08-11 [alfons]     0.8.1claws51
11258
11259         * acconfig.h
11260         * configure.in
11261         * src/crash.[ch]        ** NEW FILES **
11262         * src/main.c            
11263                 initial gdb crash handler
11264
11265 2002-08-11 [paul]       0.8.1claws50
11266
11267         * src/prefs_toolbar.c
11268                 replace Up/Down arrow pixmaps with text to be
11269                 consistent across icon themes
11270
11271 2002-08-11 [paul]       0.8.1claws49
11272
11273         * src/prefs_common.c
11274           src/prefs_toolbar.c
11275                 rename 'Pixmap' -> 'Icon'
11276
11277         * src/toolbar.[ch]
11278                 rename  'A_SEND_QUEUD' -> 'A_SEND_QUEUED'
11279
11280 2002-08-10 [paul]       0.8.1claws48
11281
11282         * src/prefs_toolbar.c
11283                 re-work the UI
11284
11285 2002-08-10 [paul]       0.8.1claws47
11286
11287         * src/main.c
11288                 don't write Processing progress to status bar
11289                 patch submitted by Alexander Evseev
11290
11291         * src/prefs_toolbar.c
11292                 re-position and resize window
11293                 make window assume correct size on first call
11294
11295 2002-08-10 [paul]       0.8.1claws46
11296
11297         * src/mainwindow.c
11298           src/prefs_toolbar.c
11299           src/toolbar.c
11300           src/toolbar.h
11301                 obey coding style
11302                 follow UI text conventions
11303
11304 2002-08-10 [alfons]     0.8.1claws45
11305
11306         * src/toolbar.c
11307                 correct pixmap for delete action
11308
11309 2002-08-10 [paul]       0.8.1claws44
11310
11311         * po/pt_BR.po
11312                 updated by Fabio Jr. Beneditto
11313
11314 2002-08-10 [paul]       0.8.1claws43
11315
11316         * po/POTFILES.in
11317                 add custom toolbar files
11318
11319 2002-08-10 [paul]       0.8.1claws42
11320
11321         * sync with 0.8.1cvs22
11322                 see ChangeLog 2002-08-09
11323
11324 2002-08-09 [paul]       0.8.1claws41
11325
11326         * tools/Makefile.am
11327           tools/README
11328           tools/outlook2sylpheed.pl     ** NEW FILE **
11329                 add script to convert exported Outlook
11330                 contacts list to a Sylpheed addressbook.
11331                 Submitted by Ricardo Mones Lastra.
11332
11333 2002-08-09 [paul]       0.8.1claws40
11334
11335         * AUTHORS
11336           configure.in
11337           po/sr.po      ** NEW FILE **
11338                 add Serbian message catalog. Submitted by
11339                 Urosevic Aleksandar aka Urke MMI <urke-kg@eunet.yu>             
11340
11341 2002-08-09 [paul]       0.8.1claws39
11342
11343         * sync with 0.8.1cvs21
11344                 see ChangeLog 2002-08-08
11345
11346 2002-08-08 [oliver]     0.8.1claws38
11347
11348         * src/mainwindow.c
11349                 move Custom Toolbar to Configuration menu
11350
11351 2002-08-08 [oliver]     0.8.1claws37
11352
11353         * src/prefs_toolbar.c
11354                 fix substitute pixmap bug
11355
11356 2002-08-08 [paul]       0.8.1claws36
11357
11358         * sync with 0.8.1cvs19
11359                 see ChangeLog 2002-08-08
11360
11361 2002-08-07 [christoph]  0.8.1claws35
11362
11363         * src/utils.c
11364                 fixed a memory leak in new canonicalize_file_replace
11365
11366 2002-08-07 [christoph]  0.8.1claws34
11367
11368         * src/utils.[ch]
11369                 o canonicalize_file_replace should create the temporary
11370                   file in the same directory as the original file.
11371                 o added get_tmpfile_in_dir that creates a temorary file
11372                   in a specified directory.
11373
11374 2002-08-07 [melvin]     0.8.1claws33
11375
11376         * src/toolbar.c
11377                 fixed bug where 'Article' button acted as 'Email' button.
11378
11379 2002-08-07 [paul]       0.8.1claws32
11380
11381         * sync with 0.8.1.cvs17
11382                 see ChangeLog 2002-08-07
11383
11384 2002-08-07 [colin]      0.8.1claws31
11385         
11386         * src/news.c
11387                 fix mass-cancel problem
11388
11389 2002-08-07 [thorsten]   0.8.1claws30
11390
11391         * src/prefs_toolbar.c
11392                 fix: crash on replace or add new button
11393         * src/toolbar.c
11394                 fix: close xmlfile after reading
11395         * src/utils.c
11396                 fix: unlink() file before rename()
11397
11398 2002-08-06 [paul]       0.8.1claws29
11399
11400         * sync with 0.8.cvs15
11401                 see ChangeLog 2002-08-06
11402
11403 2002-08-06 [oliver]     0.8.1claws28
11404
11405         * src/toolbar.c
11406         * src/prefs_toolbar.c
11407                 fixed empty toolbar issue
11408
11409 2002-08-06 [oliver]     0.8.1claws27
11410
11411         * Custom Toolbar Final 
11412         * src/folderview.c
11413         * src/inc.c
11414         * src/summaryview.c
11415                 o toolbar stuff now lives in src/toolbar.[ch]
11416                 o main_window_toolbar_* functions are renamed to
11417                   toolbar_* reflecting their new source file
11418         * src/mainwindow.[ch]
11419                 o remove toolbar stuff  
11420
11421 2002-08-06 [oliver]     0.8.1claws26
11422         
11423         * src/Makefile.am
11424         * src/prefs_toolbar.[ch]        **New File**
11425         * src/toolbar.[ch]              **New File**
11426                 o prefs_toolbar.[ch] custom toolbar frontend
11427                 o toolbar.[ch]       backend 
11428
11429 2002-08-06 [oliver]     0.8.1claws25
11430
11431         * src/prefs_actions.[ch]
11432                 o new exported function actions_execute
11433
11434 2002-08-06 [paul]       0.8.1claws24
11435
11436         * sync with 0.8.1cvs4
11437                 see ChangeLog 2002-08-06
11438
11439 2002-08-06 [paul]       0.8.1claws23
11440
11441         * sync with 0.8.1cvs13
11442                 see ChangeLog 2002-08-06
11443
11444 2002-08-06 [paul]       0.8.1claws22
11445
11446         * sync with 0.8.1cvs12
11447                 see ChangeLog 2002-08-05 and 2002-08-06
11448
11449 2002-08-06 [match]      0.8.1claws21
11450
11451         * src/addrclip.c
11452                 improvements to cut/copy/paste address
11453
11454 2002-08-05 [match]      0.8.1claws20
11455
11456         * src/addritem.[ch]
11457         * src/addrcache.c
11458         * src/addrbook.c
11459         * src/editaddress.c
11460         * src/addressbook.c
11461                 fixes to improve cut/copy/paste
11462
11463 2002-08-06 [melvin]     0.8.1claws19
11464
11465         * src/account.[ch]
11466                 account_find_all_from_address(): new function that returns the
11467                 list of all accounts that are matched in an address.
11468         * src/alertpanel.[ch]
11469                 alertpanel() now accepts a custom widget
11470                 alertpanel_with_widget(): new function that pops up a panel with
11471                 a custom widget in it 
11472         * src/gtkutils.[ch]
11473                 gtkut_account_menu_new(): new function that allows the selection
11474                 of an account from a list of accounts.
11475         * src/messageview.c
11476                 Extended Return Receipt notification to select the correct 
11477                 account and to make a security test on the Delivery-Notification
11478                 address which should be the same as the Return-Path.
11479
11480 2002-08-06 [thorsten]   0.8.1claws18
11481
11482         * src/mimeview.c
11483                 attach_all: save unnamed as "noname.%d",
11484                 dont free static dirname
11485
11486 2002-08-05 [alfons]     0.8.1claws17
11487
11488         * configure.in
11489                 detect XIM by trying to link rather than compile a XIM program
11490
11491 2002-08-05 [oliver]     0.8.1claws16
11492                 
11493         * src/stock_pixmap.[ch]
11494                 o add UP_ARROW to available pixmaps (already in pixmap-directory)
11495                 o new func to retrieve pixmaps
11496
11497 2002-08-05 [paul]       0.8.1claws15
11498
11499         * sync with 0.8.1cvs10
11500                 see ChangeLog 2002-08-05
11501
11502 2002-08-04 [alfons]     0.8.1claws14
11503
11504         * src/textview.c
11505                 see if this plugs memleak
11506
11507 2002-08-04 [melvin]     0.8.1claws13
11508
11509         * src/gtkspell.c
11510                 fixed bug that could crash Sylpheed when highlighting
11511                 all misspelled words.
11512
11513 2002-08-03 [melvin]     0.8.1claws12
11514
11515         * src/prefs_actions.c
11516                 removed unnecessary checks for NULL introduced in 0.8.1claws11.
11517         * src/messageview.c
11518                 fixed bug where the Return Receipt was sent to
11519                 Delivery-Notification-To address even if it was not present
11520
11521 2002-08-02 [alfons]     0.8.1claws11
11522
11523         * src/prefs_actions.c
11524                 o more check for NULLs
11525                 o put create_io_dialog() in right conditional block
11526
11527 2002-08-02 [paul]       0.8.1claws10
11528
11529         * po/es.po
11530                 updated by Ricardo Mones Lastra
11531
11532 2002-08-01 [christoph]  0.8.1claws9
11533
11534         * src/folder.c
11535                 don't free the cache of the opened
11536                 folder in the summaryview
11537         * src/summaryview.c
11538                 don't unset flags, if it is not required
11539
11540 2002-08-01 [paul]       0.8.1claws8
11541
11542         * sync with 0.8.1cvs8
11543                 see ChangeLog entry 2002-08-01
11544
11545 2002-08-01 [paul]       0.8.1claws7
11546
11547         * sync with 0.8.1cvs7
11548                 see ChangeLog 2002-07-31 and 2002-08-01
11549
11550 2002-07-31 [christoph]  0.8.1claws6
11551
11552         * src/mainwindow.c
11553                 forgot to update menu sensitivity
11554                 function for new menu entry
11555
11556 2002-07-31 [alfons]     0.8.1claws5
11557
11558         * src/main.c
11559                 check folder item and its path for NULL on
11560                 initial processing
11561
11562 2002-07-31 [christoph]  0.8.1claws4
11563
11564         * src/folder.c
11565                 check if folder_item_get_msginfo in
11566                 folder_item_remove_msg returned NULL
11567         * src/imap.c
11568                 better clear the uid cache in the
11569                 uid validity check function and delete
11570                 cached messages
11571
11572 2002-07-31 [paul]       0.8.1claws3
11573
11574         * man/sylpheed.1
11575                 add the '--attach' option and a few other
11576                 minor changes
11577
11578 2002-07-31 [paul]       0.8.1claws2
11579
11580         * sync with 0.8.1cvs5
11581                 see ChangeLog 2002-07-31
11582
11583 2002-07-31 [christoph]  0.8.1claws1
11584
11585         * src/folderview.[ch]
11586         * src/mainwindow.c
11587                 replace "Rescan all folders..." with
11588                 "Check all folders for new messages..."
11589
11590 2002-07-30 [paul]       0.8.1claws
11591
11592         * version 0.8.1claws released
11593
11594 2002-07-30 [paul]       0.8.0claws29
11595
11596         * tools/OOo2sylpheed.pl ** NEW FILE **
11597           tools/README
11598                 add script to enable sending documents as
11599                 attachments from OpenOffice.org
11600
11601 2002-07-30 [melvin]     0.8.0claws28
11602
11603         * src/prefs_actions.c
11604                 Made the actions' input/output dialog display
11605                 without delay.
11606
11607 2002-07-30 [christoph]  0.8.0claws27
11608
11609         * src/procmsg.c
11610                 check if folder_item_get_msginfo in
11611                 procmsg_save_to_outbox returned NULL
11612
11613 2002-07-30 [paul]       0.8.0claws26
11614
11615         * sync with 0.8.1cvs4
11616                 see ChangeLog 2002-07-29
11617
11618 2002-07-29 [thorsten]   0.8.0claws25
11619
11620         * README.claws
11621                 added selective download, delete on server
11622
11623 2002-07-29 [paul]       0.8.0claws24
11624
11625         * sync with 0.8.1cvs3
11626                 see ChangeLog 2002-07-29
11627
11628 2002-07-27 [christoph]  0.8.0claws23
11629
11630         * src/folder.c
11631                 add extra check if fetching the msginfo
11632                 returned NULL
11633
11634 2002-07-27 [paul]       0.8.0claws22
11635
11636         * sync with 0.8.1cvs2
11637                 see ChangeLog 2002-07-26
11638
11639 2002-07-27 [christoph]  0.8.0claws21
11640
11641         * src/imap.c
11642                 add another check if a valid msginfo
11643                 was returned
11644
11645 2002-07-26 [hoa]        0.8.0claws20
11646
11647         * src/folder.c
11648                 Fixed a condition in folder_item_destroy()
11649
11650         * src/imap.c
11651                 Fixed an error in IMAP protocol
11652
11653 2002-07-26 [alfons]     0.8.0claws19
11654
11655         * src/folder.c
11656                 ofcourse compare with identifier, not the path
11657
11658 2002-07-26 [alfons]     0.8.0claws18
11659
11660         * src/folder.c
11661                 use folder item identifier for saving / restoring
11662                 preferences because folder->path might not be unique
11663
11664 2002-07-26 [melvin]     0.8.0claws17
11665
11666         * src/logwindow.c
11667                 Fixed a crash introduced in 0.8.0claws5 when log is 
11668                 cut under 80 characters.
11669
11670 2002-07-26 [paul]       0.8.0claws16
11671
11672         * sync with 0.8.1cvs1
11673                 see ChangeLog 2002-07-26
11674
11675 2002-07-26 [christoph]  0.8.0claws15
11676
11677         * src/imap.[ch]
11678                 imap folder now remembers the last selected
11679                 folder and imap_fetch_msginfo skips selecting
11680                 the folder if it is already selected
11681
11682 2002-07-26 [christoph]  0.8.0claws14
11683
11684         * src/folder.c
11685         * src/folderview.c
11686         * src/imap.c
11687                 fix imap folder rescanning
11688
11689 2002-07-25 [christoph]  0.8.0claws13
11690
11691         * src/filter.c
11692         * src/folder.[ch]
11693         * src/folderview.c
11694         * src/imap.[ch]
11695         * src/mainwindow.c
11696         * src/mbox_folder.c
11697         * src/mh.c
11698         * src/news.c
11699                 implement imap uid cache and uid validity check
11700
11701 2002-07-25 [alfons]     0.8.0claws12
11702
11703         * src/summaryview.c
11704                 fix a brown paper bag bug, and also add some more
11705                 checks
11706
11707 2002-07-25 [christoph]  0.8.0claws11
11708
11709         * src/folder.c
11710                 don't mix copy, fetch_msginfo and remove
11711                 operations in folder item copy and move
11712                 operations
11713
11714 2002-07-25 [christoph]  0.8.0claws10
11715
11716         * src/folderview.c
11717         * src/mainwindow.c
11718         * src/prefs_folder_item.c
11719         * src/summaryview.[ch]
11720                 remove no longer required parameter update_cache from
11721                 summary_show
11722
11723 2002-07-25 [paul]       0.8.0claws9
11724
11725         * sync with 0.8.1
11726         
11727         * AUTHORS
11728                 a few corrections
11729
11730 2002-07-24 [alfons]     0.8.0claws8
11731
11732         * src/summaryview.c
11733                 sort correctly when using simplified subject line
11734                 (closes feature request "[ 585141 ] applying regexp to subject 
11735                 before sort" submitted by Alexandra Walford)
11736
11737 2002-07-24 [paul]       0.8.0claws7
11738
11739         * sync with 0.8.0cvs3
11740                 see ChangeLog 2002-07-24
11741
11742 2002-07-23 [christoph]  0.8.0claws6
11743
11744         * src/folder.c
11745         * src/folder.h
11746         * src/summaryview.c
11747         * src/summaryview.h
11748         * src/main.c
11749                 o separate processing and summaryview
11750                 o removed summary_write_cache from summaryview
11751                 o removed summaryview->killed_messages, because we don't have
11752                   to keep a list of killed messages anymore. New cache will
11753                   keep the hidden messages in cache anyway
11754         * src/folderview.c
11755         * src/inc.c
11756         * src/selective_download.c
11757                 o removed unnecessary summary_write_cache calls
11758         * src/procmsg.c
11759                 o don't set ignore thread flag in procmsg_get_thread_tree
11760                   if it is already set
11761         * src/mainwindow.c
11762         * src/statusbar.h
11763                 o moved STATUSBAR_PUSH/POP to statusbar.h because
11764                   they are used in different files
11765
11766 2002-07-23 [melvin]     0.8.0claws5
11767
11768         * src/addressbook.c
11769         * src/addrgather.c
11770         * src/editaddress.c
11771         * src/editgroup.c
11772         * src/editldap_basedn.c
11773         * src/importldif.c
11774         * src/prefs_common.c
11775                 Fixed few memory leak (gtk_editable_get_chars returns
11776                 an allocated string)
11777         * src/logwindow.c
11778                 Fixed few memory leak (gtk_editable_get_chars returns
11779                 an allocated string) and modified a little the log cutting
11780                 loop.
11781         * src/compose.c
11782                 Replaced a call to an obsolete function gtk_entry_get_text()
11783                 by gtk_editable_get_chars()
11784         * src/send.c
11785                 Removed a debug printf
11786
11787 2002-07-23 [christoph]  0.8.0claws4
11788
11789         * src/filesel.c
11790                 fix another g_dirname memory leak
11791
11792 2002-07-23 [christoph]  0.8.0claws3
11793
11794         * src/mh.c
11795                 fixed a memory leak in mh_fetch_msginfo
11796                 fixed crash when message header could not be
11797                 parsed
11798
11799 2002-07-23 [paul]       0.8.0claws2
11800
11801         * sync with 0.8.0cvs2
11802                 see ChangeLog 2002-07-23
11803
11804 2002-07-23 [paul]       0.8.0claws1
11805
11806         * sync with 0.8.0cvs1
11807                 see ChangeLog 2002-07-23
11808
11809 2002-07-23 [paul]       0.8.0claws
11810
11811         * release of 0.8.0claws