6e0aa24e85cb8738d0efb0311a369d7ea4d1c08d
[claws.git] / ChangeLog.claws
1 2003-12-03 [hoa]        0.9.7claws17
2
3         * src/Makefile.am
4                 compilation of scoring.[ch] and prefs_scoring.[ch]
5                 is removed.
6         
7         * src/filtering.[ch]
8         * src/folder.c
9         * src/folder_item_prefs.[ch]
10         * src/folderview.c
11         * src/main.c
12         * src/mainwindow.c
13         * src/matcher.[ch]
14         * src/matcher_parser.h
15         * src/matcher_parser_parse.y
16         * src/prefs_filtering.[ch]
17         * src/prefs_filtering_action.c
18         * src/prefs_folder_item.c
19         * src/prefs_scoring.[ch]              * REMOVED FILES *
20         * src/procmsg.[ch]
21         * src/scoring.[ch]                    * REMOVED FILES *
22         * src/summaryview.c
23                 merged scoring and filtering.
24                 
25                 Note : compatibility is kept by parsing score like 
26                   add_score. To get the behaviour of older scoring 
27                   system, you have to define some equivalent rule :
28                   "score_lower -9999 hide"
29                   "score_greater -9999 mark"
30                   
31                   To define global rules, you have to define them 
32                   in the new global processing rules.
33                   The variable that kept the list filtering rules 
34                   was "global_processing" and has been renamed into 
35                   "filtering_rules".
36                   "global_processing" variable is now the name 
37                   of the variable that keeps the list of global 
38                   processing rules.
39                   In the configuration file, "[global]" section is 
40                   now for the global processing rules (which includes
41                   score things and new global processing rules).
42                   New "[filtering]" section is for the filtering rules.
43                   
44                   Before running with this version, during testing 
45                   phase, ** MAKE A BACKUP ** of your matcherrc file.
46                   Then, you have to make the following changes :
47                   - leave all scoring rules in "[global]" section.
48                   - move all other rules of "[global]" section to
49                       a new section named "[filtering]".
50
51 2003-12-03 [christoph]  0.9.7claws16
52
53         * src/procmime.c
54                 use default Content-Type as specified in RFC2045 if
55                 Content-Type header is syntactically incorrect
56
57 2003-12-03 [christoph]  0.9.7claws15
58
59         * src/addressbook.c
60         * src/addrindex.h
61         * src/addritem.c
62         * src/expldifdlg.h
63         * src/exportldif.c
64         * src/filtering.c
65         * src/folder.c
66         * src/folderview.c
67         * src/jpilot.c
68         * src/localfolder.c
69         * src/matcher.h
70         * src/matcher_parser_lex.l
71         * src/matcher_parser_parse.y
72         * src/news.c
73         * src/prefs_filtering_action.c
74         * src/prefs_folder_item.c
75         * src/prefs_fonts.c
76         * src/procmsg.c
77         * src/sgpgme.c
78                 clean up warnings
79
80         * src/procmime.c
81                 revert 0.9.7claws14 change
82
83 2003-12-03 [alfons]     0.9.7claws14
84
85         * src/procmime.c
86                 catch invalid Content-Type with no subtype
87
88 2003-12-03 [alfons]     0.9.7claws13
89
90         * src/alertpanel.h
91         * src/setup.c
92         * src/plugins/image_viewer/plugin.c
93                 compile again, we need stddef.h for size_t
94
95 2003-12-03 [paul]       0.9.7claws12
96
97         * src/account.c
98                 don't allow cloning of accounts with remote folders,
99                 patch submitted by Ricardo Mones Lastra
100
101 2003-12-03 [christoph]  0.9.7claws11
102
103         * src/folder.[ch]
104         * src/imap.c
105         * src/localfolder.[ch]
106         * src/mh.c
107         * src/news.c
108         * src/common/xml.[ch]
109                 add set_xml() and get_xml() virtual functions to FolderClass to
110                 save extra information for Folders (for example the rootpath
111                 only used by LocalFolder). The folderlist write function no
112                 longer needs to know the folder type to save this extra
113                 information.
114
115 2003-12-02 [christoph]  0.9.7claws10
116
117         * src/Makefile.am
118         * src/account.c
119         * src/folder.[ch]
120         * src/folderview.h
121         * src/imap.c
122         * src/localfolder.[ch]          ** NEW **
123         * src/mainwindow.c
124         * src/mh.[ch]
125         * src/news.[ch]
126         * src/prefs_account.[ch]
127         * src/prefs_filtering.h
128         * src/procmsg.h
129         * src/remotefolder.[ch]         ** NEW **
130         * src/common/xml.[ch]
131                 add item_set_xml() and item_get_xml() virtual functions to
132                 FolderClass to give folders the ability to add extra information
133                 to the saved FolderItem data. If NULL the default function for
134                 FolderItem will be used.
135
136 2003-11-29 [christoph]  0.9.7claws9
137
138         * src/procheader.c
139                 fix bug in unfolding
140
141 2003-11-29 [luke]       0.9.7claws8
142
143         * src/textview.c
144                 fix compilation for non c99 compilers
145
146 2003-11-29 [christoph]  0.9.7claws7
147
148         * src/procmime.[ch]
149         * src/mimeview.c
150                 o unknown disposition types should be handled as
151                   attachment (RFC2183)
152                 o missing headers should not default to inline
153                   (would make "Save All" useless when disposition header
154                    is not set by the sending mailer)
155                 o remove old MimeInfo data and cleanup
156
157 2003-11-29 [luke]       0.9.7claws6
158
159         * src/procmime.[ch]
160                 re-added parsing of Content-Disposition header
161                         - removes the old  'gchar* content_disposition'
162                         - adds a new field 'DispositionType disposition'
163                         - adds parameters to MimeInfo::parameters
164
165         * src/mimeview.c
166                 use the "filename" parameter for saving, and the new
167                 MimeInfo::disposition for save all.
168
169         * src/compose.c
170         * src/toolbar.[ch]
171                 add a 'check spelling' button as a possibility for 
172                 the compose toolbar
173
174         * src/stockpixmap.[ch]
175         * src/pixmaps/check_spelling.xpm        ** NEW **
176         * src/Makefile.am
177                 add a pixmap for use with 'check spelling' button or
178                 a user defined action
179
180         * src/textview.c
181                 re-apply fixed (I hope) patch for bug 57
182                 "Hidden URL in HTML Mails"
183
184 2003-11-28 [christoph]  0.9.7claws5
185
186         * src/procmime.c
187                 o be more liberal in what we accept as Content-Type parameters
188                 o ignore comments after parameters
189
190         * src/sgpgme.c
191                 o only free passphrase when an error occurs
192
193 2003-11-28 [paul]       0.9.7claws4
194
195         * src/account.c
196                 add 'Clone Account' function. patch submitted by
197                 Ricardo Mones Lastra
198
199 2003-11-27 [thorsten]   0.9.7claws3
200
201         * src/mimeview.c
202                 fix crash if 'save_all' failed twice
203
204 2003-11-27 [paul]       0.9.7claws2
205
206         * po/POTFILES.in
207                 fix a typo
208
209         * po/zh_CN.po
210                 update Simplified Chinese translation. submitted by
211                 Hansom Young
212
213 2003-11-27 [paul]       0.9.7claws1
214
215         * po/POTFILES.in
216                 clean up
217
218 2003-11-26 [paul]       0.9.7claws
219
220         * 0.9.7claws released
221
222 2003-11-26 [paul]       0.9.6claws99
223
224         * src/Makefile.am
225                 add reference to pixmaps/mime_message.xpm
226
227 2003-11-26 [paul]       0.9.6claws98
228
229         * po/POTFILES.in
230                 remove reference to src/sigstatus.c
231
232 2003-11-26 [christoph]  0.9.6claws97
233
234         * src/Makefile.am
235         * src/prefs_common.c
236         * src/rfc2015.c
237         * src/sigstatus.[ch]            ** REMOVE **
238                 remove signature result popup option and window
239
240 2003-11-26 [paul]       0.9.6claws96
241
242         * po/es.po
243           po/ja.po
244           po/pl.po
245           po/sk.po
246           po/sr.po
247                 update translations. submitted by Ricardo Mones Lastra,
248                 Rui Hirokawa, Emil Nowak, Andrej Kacian, and Urke MMI
249
250 2003-11-25 [christoph]  0.9.6claws95
251
252         * src/procmime.c
253                 display mime structure only in debug mode
254
255 2003-11-25 [melvin]     0.9.6claws94
256
257         * po/fr.po
258                 Updated French translations + typos fixes of older
259                 translations (thanks to Fabien Vantard for pointing
260                 to some of them)
261
262 2003-11-25 [melvin]     0.9.6claws93
263
264         * src/editldap.c
265                 Fixed a couple of typos.
266
267 2003-11-24 [paul]       0.9.6claws92
268
269         * po/POTFILES.in
270                 add 'src/textview.c'
271
272 2003-11-24 [paul]       0.9.6claws91
273
274         * src/sgpgme.c
275                 fix typo. spotted by Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
276
277 2003-11-24 [paul]       0.9.6claws90
278
279         * src/plugins/image_viewer/viewer.c
280                 image_viewer_show_mimepart(): 
281                 use procmime_mimeinfo_get_parameter() to get the file name
282
283 2003-11-24 [paul]       0.9.6claws89
284
285         * src/textview.c
286                 textview_show_mime_part(): rewrite text hint
287
288 2003-11-22 [paul]       0.9.6claws88
289
290         * sync with 0.9.7cvs5
291                 see ChangeLog 2003-11-21
292
293 2003-11-21 [paul]       0.9.6claws87
294
295         * src/mimeview.c
296                 define shortcut key 'o' for 'Open with...'
297
298 2003-11-21 [alfons]     0.9.6claws86
299
300         * src/messageview.c
301                 fix bug #383 'Deleting message from "separate message view" 
302                 uses local Trash folder'
303
304 2003-11-21 [christoph]  0.9.6claws85
305
306         * src/mimeview.c
307                 fix content-type guessing by name parameter when finding
308                 the correct viewer
309
310 2003-11-21 [alfons]     0.9.6claws84
311
312         * src/main.c
313                 no mail incorporation allowed with --offline param.
314                 fixes bug #374, "--offline ignored"
315
316 2003-11-20 [christoph]  0.9.6claws83
317
318         * src/mimeinfo.c
319                 use signed MimeInfo when checking the signature and not
320                 the selected one
321
322 2003-11-19 [alfons]     0.9.6claws82
323
324         * src/mainwindow.c
325                 fix crash when toggling separate views, patch submitted
326                 by Pawel Pekala <c0rn|AT|gazeta.pl>.
327                 fixes bug #342, "separate views  cause crash"
328
329 2003-11-19 [paul]       0.9.6claws81
330
331         * src/compose.c
332                 compose_redirect_write_headers_from_headerlist(): 
333                 add Resent-Cc: header (bug fix inherited from 0.9.7cvs3)
334                 
335         * src/main.c
336                 code cleanup (inherited from 0.9.7cvs4)
337                 
338         * tools/tb2sylpheed
339                 bugfix: added missing attribute-list start. submitted by
340                 Urke MMI
341
342 2003-11-19 [luke]       0.9.6claws80
343
344         * src/textview.c
345                 revert my last commit until I get time to fix it
346
347 2003-11-18 [christoph]  0.9.6claws79
348
349         * src/mimeview.[ch]
350                 check parent MimeInfos for signatures and display the
351                 result of the parent when found
352
353         * src/pgpmime.c
354                 o avoid NULL pointer warnings
355                 o use procmime_mimeinfo_get_parameter()
356
357         * src/sgpgme.c
358                 small text changes
359
360 2003-11-17 [luke]       0.9.6claws78
361
362         * src/textview.c
363                 add check for disguised URLs, fixing bug 57
364                 "Hidden URL in HTML Mails"
365
366 2003-11-16 [christoph]  0.9.6claws77
367
368         * src/procmime.c
369                 fix crash when parsing invalid Content-Type header
370
371 2003-11-16 [christoph]  0.9.6claws76
372
373         * src/pgpmime.c
374         * src/privacy.c
375         * src/procmime.c
376         * src/sgpgme.[ch]
377                 implement message decrypting
378
379         * src/rfc2015.c
380                 remove old code
381
382 2003-11-14 [luke]       0.9.6claws75
383
384         * src/mimeview.c
385                 fix a couple of problems that treated application/* and
386                 application/octet-stream the wrong way around
387                 (since 0.9.6claws10), causing "Open" to do nothing.
388
389 2003-11-14 [christoph]  0.9.6claws74
390
391         * src/messageview.c
392         * src/pgpmime.c
393         * src/privacy.[ch]
394                 prepare for message part decrypting
395
396         * src/sgpgme.c
397                 add output for expired signatures
398
399         * src/rfc2015.c
400                 remove some old code
401
402 2003-11-10 [christoph]  0.9.6claws73
403
404         * src/mimeview.c
405                 add "Full info" button for bad and warn signature status
406
407         * src/sgpgme.c
408                 generate full signature info like gpg's output
409                 (gpg -v --with-fingerprint --verify)
410
411 2003-11-10 [christoph]  0.9.6claws72
412
413         * src/mimeview.c
414         * src/pgpmime.c
415         * src/privacy.[ch]
416         * src/sgpgme.[ch]
417         * src/textview.[ch]
418                 o add code to view full signature info
419                 o do automatic signature checks
420
421 2003-11-10 [alfons]     0.9.6claws71
422
423         * src/summaryview.c
424                 don't crash when gtkut_font_load() returns invalid font (has
425                 something to do with locale settings)
426                 Patch submitted by David Chalmers <davidc|AT|ccmi.salk.edu>.
427
428 2003-11-09 [alfons]     0.9.6claws70
429
430         * src/procmime.c
431                 plug leak
432
433 2003-11-08 [luke]       0.9.6claws69
434
435         * src/summaryview.c
436                 fix some typos
437
438         * src/compose.c
439                 rewrite compose_attach_parts(), fixing various bugs mainly
440                 to do with re-editing.
441
442         * src/mimeview.c
443                 "save all" now only saves attachments with names/filenames
444
445 2003-11-04 [match]      0.9.6claws68
446
447         * src/ldapctrl.[ch]
448                 fix broken LDAP support.
449
450         * src/ldapquery.c
451                 remove printf's.
452
453 2003-11-04 [luke]       0.9.6claws67
454
455         * src/mimeview.c
456                 o  fixed bug 4 "focus lost on messages with attachments"
457                 o  fixed 'Save all' attachments for new mime changes
458                 o  right clicking on icons consistent with right clicking on
459                    mime tree
460                   - fixes a bug where wrong part is saved when you
461                     choose 'Save as' from popup menu
462                   - fixes bug 308 "No way to "save all" attachments"
463                 o  fixed a compiler warning.
464
465         * src/textview.c
466                 o  removed flickering in mime tree when using "n" and "p"
467                    shortcuts
468                 o  fixed bug where selecting the textview and pressing e.g.
469                    'y' causes sylpheed to respond twice.
470
471         * src/summaryview.c
472                 removed hard coding of * and ! shortcuts (which only served
473                 to cause problems if you tried to redefine the shortcuts)
474
475 2003-11-04 [luke]       0.9.6claws66
476
477         * src/plugins/image_viewer/viewer.c
478         * src/plugins/image_viewer/viewerprefs.c
479         * src/plugins/image_viewer/viewerprefs.glade
480                 o  allow toggling of image scaling by clicking on image
481                 o  respond to image's container widget resize
482
483         * src/procmime.c
484                 o  fix bad parsing of message when re-editing/viewing a
485                    message saved to the drafts folder
486
487 2003-11-02 [match]      0.9.6claws65
488
489         * src/browseldap.h
490                 fix if not building LDAP support.
491         * src/addrindex.c
492         * src/ldapquery.[ch]
493         * src/editldap.h
494                 include support for contains query. feature req 529354.
495
496 2003-11-02 [alfons]     0.9.6claws64
497
498         * src/browseldap.c
499                 fix build bustage if not compiling ldap support
500
501 2003-11-01 [match]      0.9.6claws63
502
503         * po/POTFILES.in
504         * src/Makefile.am
505         * src/addr_compl.[ch]
506         * src/addrbook.c
507         * src/addrcache.[ch]
508         * src/addrdefs.h        ** NEW **
509         * src/addressbook.c
510         * src/addressitem.h
511         * src/addrindex.[ch]
512         * src/addritem.h
513         * src/addrquery.[ch]
514         * src/ldapquery.[ch]
515         * src/ldapserver.[ch]
516                 refactor LDAP query mechanism.
517
518         * src/browseldap.[ch]   ** NEW **
519         * src/ldaplocate.[ch]   ** NEW **
520                 add feature to browse LDAP entry that was retrieved using
521                 an explicit LDAP search.
522
523 2003-11-01 [alfons]     0.9.6claws62
524
525         * src/prefs_gtk.c
526                 prefs_write_param(): fail when we see an invalid type; all the
527                 callers seem to handle this gracefully by reverting changes
528
529 2003-10-30 [christoph]  0.9.6claws61
530
531         * configure.ac
532         * ac/openssl.m4
533         * ac/spamassassin.m4
534         * src/Makefile.am
535                 use extra variables for all libraries to make sure plugins
536                 are only linked with libraries they really need. $LIBS is always
537                 added to the linking parameters, but we only what the libraries
538                 listed in the Makefile
539
540 2003-10-29 [paul]       0.9.6claws60
541
542         * src/mimeview.c
543                 don't use Subject for unknown part name
544
545 2003-10-29 [paul]       0.9.6claws59
546
547         * src/compose.c
548                 get name of attachment(s) when re-editing, fwd'ing or
549                 redirecting
550                 
551         * src/mimeview.c
552                 get name of attachment(s) when saving
553
554 2003-10-29 [hoa]        0.9.6claws58
555
556         * src/textview.c
557                 implemented multipart/alternative in MIME message viewer.
558
559 2003-10-28 [christoph]  0.9.6claws57
560
561         * configure.ac
562                 make sure MathML-Viewer is not built with the
563                 Gtk2 version of GtkMathView
564
565 2003-10-28 [paul]       0.9.6claws56
566
567         * sync with 0.9.7cvs1
568                 see ChangeLog 2003-10-28
569
570 2003-10-27 [alfons]     0.9.6claws55
571
572         * src/matcher_parser_parse.y
573         * src/gtk/colorlabel.c
574                 allow setting color label to 0 in filtering/processing rules
575                 (should fix bug 368, "Can't create a filter condition "colorlabel 0"") 
576
577 2003-10-26 [alfons]     0.9.6claws54
578
579         * src/summary_search.c
580                 fix misnomer and correct selecting initial search node  
581
582 2003-10-26 [christoph]  0.9.6claws53
583
584         * src/pgpmime.c
585         * src/sgpgme.c
586                 change display of signature info to use only name of
587                 signer, otherwise the text gets too long.
588
589         * src/procmime.c
590                 don't use MimeInfo's filename to generate tmp filename
591
592 2003-10-25 [christoph]  0.9.6claws52
593
594         * src/procmime.c
595                 fix message body searching
596
597 2003-10-25 [paul]       0.9.6claws51
598
599         * src/compose.c
600                 use g_basename rather than basename
601
602 2003-10-24 [christoph]  0.9.6claws50
603
604         * src/sgpgme.c
605                 change fetching of signature key's trust
606
607 2003-10-24 [paul]       0.9.6claws49
608
609         * po/sk.po
610                 update Slovak translation
611                 submitted by Andrej Kacian
612                 
613         * src/mainwindow.c
614                 remove unknown menu entry /File/Add mailbox/mbox...
615
616 2003-10-24 [hoa]        0.9.6claws48
617
618         * src/Makefile.am
619                 removed all references to mbox folders
620
621         * src/carray.[ch]               * REMOVED *
622         * src/chash.[ch]                * REMOVED *
623         * src/maillock.[ch]             * REMOVED *
624         * src/mailmbox.[ch]             * REMOVED *
625         * src/mailmbox_folder.[ch]      * REMOVED *
626         * src/mailmbox_parse.[ch]       * REMOVED *
627         * src/mailmbox_types.[ch]       * REMOVED *
628         * src/mbox_folder.[ch]          * REMOVED *
629                 remove implementation of mbox folders
630                 and old mailbox folder.
631                 mbox folder implementation will be added
632                 as a plugin so that implementation can be entirely
633                 synchronized with the files of the project they are
634                 extracted from (libEtPan!).
635         
636         * src/mainwindow.c
637         * src/folder.c
638         * src/folderview.[ch]
639         * src/procmsg.h         
640                 Disable as much code that references mbox folders
641                 as possible.
642                 Some UI thing still need to know that folder is mbox
643                 (when we have to enter the name of the mailbox and
644                 we want to add /var/mail/$USER).
645
646 2003-10-23 [christoph]  0.9.6claws47
647
648         * src/noticeview.c
649                 don't always display button when noticeview is made visible
650
651         * src/mimeview.c
652         * src/pgpmime.c
653         * src/privacy.[ch]
654         * src/sgpgme.[ch]
655                 get signature information from crypto system
656
657 2003-10-22 [paul]       0.9.6claws46
658
659         * po/es.po
660                 updated by Ricardo Mones Lastra
661
662 2003-10-22 [paul]       0.9.6claws45
663
664         * src/Makefile.am
665                 update to reflect the changes to the icons that
666                 happened in 0.9.6claws35
667
668 2003-10-22 [alfons]     0.9.6claws44
669         
670         * src/carray.h
671                 inline carray_count() 
672
673 2003-10-21 [alfons]     0.9.6claws43
674
675         * src/carray.h
676                 glib wrappers
677         * src/carray.c
678                 disable
679         * src/mailmbox.[ch]
680         * src/mailmbox_folder.c
681         * src/mailmbox_parse.c
682         * src/mailmbox_types.[ch]
683                 %s/uint32_t/guint
684
685 2003-10-21 [luke]       0.9.6claws42
686
687         * src/stock_pixmaps.[ch]
688         * src/mimeview.c
689         * src/pixmaps/mime_application_octet_stream.xpm         ** REMOVE **
690         * src/pixmaps/messageview_text.xpm                      ** REMOVE **
691                 o remove mime_application_octet_stream.xpm icon (it was never
692                   really needed)
693                 o remove redundant icon messageview_text.xpm
694
695         * src/mainwindow.c
696                 fix visibility of signature noticeview when toggling 'separate
697                 message view'
698
699 2003-10-21 [christoph]  0.9.6claws41
700
701         * src/procmime.c
702                 decode multipart and rfc822 mime parts to allow further
703                 parsing when required
704
705 2003-10-21 [christoph]  0.9.6claws40
706
707         * src/procmime.[ch]
708         * src/textview.c
709                 remove obsolete charset parameter in MimeInfo and fix
710                 TextView to use the charset from the parameter hash table
711
712         * src/plugins/dillo_viewer/Makefile.am
713         * src/plugins/trayicon/Makefile.am
714                 add OPENSSL_CFLAGS to fix building with using
715                 --with-openssl-* parameters
716
717 2003-10-21 [paul]       0.9.6claws39
718
719         * src/prefs_matcher.[ch]
720                 replace remnants of the old, renamed 'Execute' matchtype
721                 add a brief description to the Info window
722
723 2003-10-21 [hoa]        0.9.6claws38
724         
725         * src/Makefile.am
726         * src/carray.[ch]               * NEW *
727         * src/chash.[ch]                * NEW *
728         * src/folder.c
729         * src/maillock.[ch]             * NEW *
730         * src/mailmbox.[ch]             * NEW *
731         * src/mailmbox_folder.[ch]      * NEW *
732         * src/mailmbox_parse.[ch]       * NEW *
733         * src/mailmbox_types.[ch]       * NEW *
734                 implementation of mbox folder with unique message numbers
735
736                 made use of libEtPan! implementation of mbox for lower-layer.
737
738 2003-10-20 [alfons]     0.9.6claws37
739
740         * src/noticeview.c
741                 fix invalid argument warning
742         * src/pgpmime.c
743                 no in place variable
744
745 2003-10-20 [paul]       0.9.6claws36
746
747         * src/compose.[ch]
748           src/filtering.c
749           src/messageview.c
750                 fix crash when using Forward in Filtering when
751                 external editor option is set
752                 
753                 Patch submitted by Simon 'corecode' Schubert
754                 <corecode@corecode.ath.cx> 
755
756 2003-10-20 [paul]       0.9.6claws35
757
758         * src/pixmaps/mime_gpg_expired.xpm      ** REMOVED **
759           src/pixmaps/mime_gpg_failed.xpm       ** REMOVED **
760           src/pixmaps/mime_gpg_passed.xpm       ** REMOVED **
761           src/pixmaps/mime_gpg_signed.xpm       ** REMOVED **
762           src/pixmaps/mime_gpg_unknown.xpm      ** REMOVED **
763           src/pixmaps/privacy_expired.xpm       ** NEW FILE **
764           src/pixmaps/privacy_failed.xpm        ** NEW FILE **
765           src/pixmaps/privacy_passed.xpm        ** NEW FILE **
766           src/pixmaps/privacy_signed.xpm        ** NEW FILE **
767           src/pixmaps/privacy_unknown.xpm       ** NEW FILE **
768           src/pixmaps/privacy_warn.xpm          ** NEW FILE **
769           src/mimeview.c
770           src/stock_pixmap.[ch]
771                 replace mime_gpg_*.xpm icons with new privacy_*.xpm
772                 icons. add privacy_warn.xpm icon
773
774 2003-10-20 [hoa]  0.9.6claws34
775
776         * src/folder_item_prefs.[ch]
777         * src/prefs_folder_item.c
778         * src/main.c
779                 Added a property per folder to choose whether we 
780                 want to apply processing on it on startup or if we
781                 prefer to wait the folder selection to apply it.
782         
783         * src/messageview.c
784                 fixed C89 compatibility (for old compilers, for
785                 example gcc 2.95.x).
786
787 2003-10-17 [christoph]  0.9.6claws33
788
789         * src/mimeview.c
790         * src/noticeview.[ch]
791                 change noticeview icon to indicate signature status
792
793 2003-10-17 [christoph]  0.9.6claws32
794
795         * src/Makefile.am
796         * src/main.c
797         * src/mimeview.c
798         * src/noticeview.c
799         * src/pgpmime.[ch]                              ** NEW **
800         * src/privacy.[ch]
801         * src/rfc2015.c
802         * src/sgpgme.c                                  ** NEW **
803                 reimplement PGP/Mime signature checking (unfinished)
804
805 2003-10-15 [christoph]  0.9.6claws31
806
807         * src/procmime.[ch]
808                 fix procmime_get_text_content() and
809                 procmime_get_first_text_content()
810
811 2003-10-15 [christoph]  0.9.6claws30
812
813         * src/plugins/spamassassin/spamassassin_gtk.c
814         * src/plugins/spamassassin/spamassassin_gtk.glade
815                 fix timeout tooltip
816
817 2003-10-15 [paul]       0.9.6claws29
818
819         * src/messageview.c
820                 workaround for buggy smtp servers. on sending a
821                 return receipt strip the name part from the address
822                 when creating headers
823                 
824 2003-10-15 [paul]       0.9.6claws28
825
826         * sync with 0.9.7 release
827                 see ChangeLog 2003-10-15
828
829 2003-10-14 [christoph]  0.9.6claws27
830
831         * src/plugins/clamav/clamav_plugin.c
832                 fix clamav plugin
833
834 2003-10-14 [christoph]  0.9.6claws26
835
836         * src/compose.c
837         * src/mimeview.c
838         * src/procmime.[ch]
839         * src/rfc2015.c
840         * src/textview.c
841         * src/plugins/clamav/clamav_plugin.c
842                 use GNode to create the mime tree (some changes to functions
843                 that traverse the tree are just quick and dirty. Maybe we
844                 can find better solutions with g_node_*-functions)
845
846 2003-10-14 [luke]       0.9.6claws25
847
848         * src/mimeview.c
849                 fix a navigation bug (stupid typo of mine)
850
851 2003-10-14 [christoph]  0.9.6claws24
852
853         * src/textview.c
854                 fix missing last line in plain/text mails
855
856 2003-10-13 [luke]       0.9.6claws23
857
858         * src/summaryview.c
859                 fix bug 334 (part 1)
860
861 2003-10-13 [kov]        0.9.6claws22
862
863         * src/mimeview.c
864                 error checking when the user enters a non-directory at
865                 the file selection dialog.
866                 work-around for users entering directory location without
867                 adding a leading G_DIR_SEPARATOR.
868
869 2003-10-13 [luke]       0.9.6claws21
870
871         * src/compose.c
872                 error reporting for inserting files, including catching
873                 invalid characters for current locale/encoding
874
875 2003-10-13 [paul]       0.9.6claws20
876
877         * src/folderview.c
878                 fix bug #347 'subscribe newsgroups crashes'
879
880 2003-10-13 [paul]       0.9.6claws19
881
882         * src/compose.c
883                 when using 'Reply to all' include the 'send replies
884                 to' folder property
885                 
886         * po/ja.po
887                 update Japanese translation. submitted by Rui Hirokawa 
888                 <rui_hirokawa@ybb.ne.jp>        
889
890 2003-10-13 [hoa]        0.9.6claws18
891
892         * src/account.c
893         * src/compose.c
894         * src/messageview.c
895         * src/procheader.c
896         * src/procheader.h
897                 rename get_header_from_msginfo() into
898                 procheader_get_header_from_msginfo() so that we have a
899                 coherent exported naming.
900                 avoid parsing of header contained in a string via
901                 a newly written temporary file.
902
903         Patch submitted by Simon 'corecode' Schubert
904                 <corecode@corecode.ath.cx>
905
906 2003-10-12 [hoa]        0.9.6claws17
907
908         * src/filtering.c
909         * src/filtering.h
910         * src/matcher.c
911         * src/matcher.h
912         * src/matcher_parser_parse.y
913         * src/prefs_filtering_action.c
914                 added "stop" action : stop applying the filtering rules.
915                 added "set score" and "increase/decrease score" actions.
916                 That two last action replace the "change_score" action
917                 introduced by alfons in 0.8.8claws85.
918                 "set score" is to set a given score to the message.
919                 "increase/decrease score" will increase or decrease the
920                 score if the given value is respectively positive or
921                 negative. If someone find a some better name for this last
922                 rule, it can be modified.
923
924 2003-10-12 [paul]       0.9.6claws16
925
926         * AUTHORS
927           po/ja.po
928                 update Japanese translation. submitted by Rui Hirokawa 
929                 <rui_hirokawa@ybb.ne.jp>
930
931 2003-10-12 [christoph]  0.9.6claws15
932
933         * src/procmime.c
934                 fix crash caused by incorrect headers
935
936 2003-10-10 [christoph]  0.9.6claws14
937
938         * src/main.c
939         * src/privacy.[ch]
940         * src/rfc2015.[ch]
941                 implement detection of signed message parts for rfc2015
942
943 2003-10-10 [thorsten]   0.9.6claws13
944
945         * src/mimeview.c
946                 fix typo
947
948 2003-10-10 [christoph]  0.9.6claws12
949
950         * src/stock_pixmap.[ch]
951         * src/pixmaps/mime_message.xpm                  ** NEW **
952                 add a new icon for mime type "message"
953
954         * src/privacy.[ch]
955         * src/procmime.[ch]
956                 add crypto api
957
958         * src/mimeview.c
959                 o use crypto api
960                 o add icons for message type mime parts
961
962 2003-10-10 [christoph]  0.9.6claws11
963
964         * src/mainwindow.c
965         * src/messageview.[ch]
966         * src/mimeview.[ch]
967         * src/procmime.[ch]
968         * src/procmsg.[ch]
969         * src/rfc2015.c
970         * src/summaryview.c
971         * src/textview.[ch]
972                 o remove switching between TextView and MimeView in MessageView
973                   (if required we can hide the icon box and the MimeView will
974                    look exaxtly like the TextView)
975                 o temporary remove signature and decrypting GPGME code
976
977 2003-10-09 [christoph]  0.9.6claws10
978
979         * src/action.c
980         * src/compose.c
981         * src/messageview.c
982         * src/mimeview.c
983         * src/procmime.[ch]
984         * src/procmsg.c
985         * src/rfc2015.c
986         * src/textview.c
987         * src/common/utils.[ch]
988         * src/plugins/clamav/clamav_plugin.c
989         * src/plugins/dillo_viewer/dillo_viewer.c
990         * src/plugins/image_viewer/viewer.c
991         * src/plugins/mathml_viewer/mathml_viewer.c
992                 new mime parser (several things need fixing)
993
994 2003-10-09 [paul]       0.9.6claws9
995
996         * src/imap.c
997                 a little more sync with 0.9.6cvs2 and a tidy up
998
999 2003-10-08 [paul]       0.9.6claws8
1000
1001         * sync with 0.9.6cvs2
1002                 see ChangeLog 2003-10-03
1003
1004 2003-10-05 [christoph]  0.9.6claws7
1005
1006         * src/summaryview.c
1007                 don't use flags to check if a message is in a news folder
1008
1009         (closes Bug 282 clicking on folder with copied Messages from News
1010          immediately after having copied them crashes Sylpheed-Claws)
1011
1012 2003-10-05 [christoph]  0.9.6claws6
1013
1014         * src/Makefile.am
1015         * src/progressdialog.[ch]               ** REMOVE **
1016         * src/gtk/Makefile.am
1017         * src/gtk/progressdialog.[ch]           ** NEW **
1018                 move progressdialog to gtk directory
1019
1020 2003-10-04 [christoph]  0.9.6claws5
1021
1022         * src/prefs_toolbar.c
1023         * src/gtk/prefswindow.c
1024                 remove widget_show_all for pages root widget
1025
1026         * src/plugins/spamassassin/spamassassin.[ch]
1027         * src/plugins/spamassassin/spamassassin_gtk.c
1028         * src/plugins/spamassassin/spamassassin_gtk.glade
1029                 add support for new libspamc transports
1030
1031 2003-10-04 [christoph]  0.9.6claws4
1032
1033         * src/plugins/spamassassin/libspamc.[ch]
1034         * src/plugins/spamassassin/spamassassin.c
1035         * src/plugins/spamassassin/utils.[ch]
1036                 update libspamc to version from SpamAssassin 2.60
1037
1038 2003-10-03 [christoph]  0.9.6claws3
1039
1040         * src/send_message.c
1041                 fix missing format string bug found by
1042                 Georgi Guninski <guninski@guninski.com>
1043
1044 2003-10-03 [paul]       0.9.6claws2
1045
1046         * po/zh_CN.po
1047                 update Simpilified Chinese translation, submitted by
1048                 Hansom Young
1049
1050 2003-10-02 [christoph]  0.9.6claws1
1051
1052         * src/imap.c
1053                 add UIDPLUS support for COPY and EXPUNGE
1054
1055 2003-10-02 [paul]       0.9.6claws
1056
1057         * 0.9.6claws released
1058
1059 2003-10-02 [paul]
1060
1061         * po/es.po
1062           po/sk.po
1063                 update Spanish and Slovak translations
1064                 submitted by Ricardo Mones Lastra and Andrej Kacian
1065  
1066 2003-10-02 [paul]       0.9.5claws43
1067
1068         * po/en_GB.po
1069                 update British English translation
1070
1071 2003-10-02 [paul]       0.9.5claws42
1072
1073         * po/hr.po
1074                 update Croatian translation, submitted by Dragan
1075
1076 2003-10-01 [paul]       0.9.5claws41
1077
1078         * po/pl.po
1079           po/sr.po
1080                 update Polish and Serbian translations, submitted by
1081                 Emil and Urke MMI
1082
1083 2003-10-01 [melvin]     0.9.5claws40
1084
1085         * po/fr.po
1086                 Updated French translations
1087
1088 2003-10-01 [melvin]     0.9.5claws39
1089
1090         * src/prefs_fonts.c
1091                 Fixed a Gtk warning
1092
1093         * src/plugins/dillo_prefs.c     
1094                 Quasi unnoticeable UI clean-up.
1095
1096 2003-10-01 [paul]
1097
1098         * tools/README
1099           tools/maildir2sylpheed.pl
1100                 bug fixes, rewrites, submitted by Matthias Förste 
1101                 <itsjustme@users.sourceforge.net>
1102
1103 2003-09-29 [paul]       0.9.5claws38
1104
1105         * src/inc.c
1106                 fix my coding carelessness
1107
1108 2003-09-29 [paul]       0.9.5claws37
1109
1110         * po/POTFILES.in
1111           src/Makefile.am
1112           src/main.c
1113           src/prefs_common.[ch]
1114           src/prefs_fonts.[ch]  ** NEW FILES **
1115                 move Font config options to Other Prefs/Display/Fonts
1116                 (user's current configuration is preserved)
1117
1118 2003-09-29 [paul]       0.9.5claws36
1119
1120         * src/inc.c
1121           src/prefs_account.c
1122                 allow 'local_mbox' value to point to either a directory 
1123                 (/var/mail -  default, new) or a file (/var/mail/username
1124                 - original)
1125
1126 2003-09-28 [paul]       0.9.5claws35
1127
1128         * src/rfc2015.c
1129                 on signature check, where key exists, print the
1130                 Key ID
1131
1132 2003-09-27 [alfons]     0.9.5claws34
1133
1134         * src/action.c
1135                 o make progress bar not fill/expand when resizing dialog
1136                 o use default fixed text font for actions output
1137
1138 2003-09-27 [paul]       0.9.5claws33
1139
1140         * src/prefs_common.[ch]
1141           src/procmsg.c
1142           src/send_message.c
1143                 remove External Program settings from Common Prefs/Send
1144                 as they are now unnecessary due to Local account settings.
1145                 plus a little tidying-up after 0.9.5claws31
1146
1147 2003-09-27 [paul]       0.9.5claws32
1148
1149         * src/prefs_account.c
1150                 o make correction to gui text:
1151                   'Local mailbox file' -> 'Local mailbox directory'
1152                 o give 'local_mbox' option a reasonable default value:
1153                   '/var/mail'
1154                 o use 'DEFAULT_SENDMAIL_CMD' as default 'mail_command'
1155                   value
1156
1157 2003-09-26 [paul]       0.9.5claws31
1158
1159         * src/inc.c
1160           src/prefs_common.[ch]
1161                 remove 'Incorporate from spool' common pref,
1162                 force creation of a 'Local' account
1163
1164 2003-09-26 [christoph]  0.9.5claws30
1165
1166         * src/folder.c
1167         * src/msgcache.c
1168                 add more NULL pointer checks
1169
1170 2003-09-25 [christoph]  0.9.5claws29
1171
1172         * src/folder.c
1173                 o don't fetch source message to get it's message id
1174                 o immediately scan dest folder when copying a message did not
1175                   return a new message number and not do it when the first message
1176                   without a new message number is found
1177
1178 2003-09-23 [christoph]  0.9.5claws28
1179
1180         * src/compose.c
1181                 fix generating of headers
1182
1183         (patch by David Relson <relson@osagesoftware.com>)
1184
1185 2003-09-23 [paul]       0.9.5claws27
1186
1187         * po/zh_CN.po
1188                 update Simplified Chinese translation. submitted by
1189                 Hansom Young
1190
1191 2003-09-23 [paul]       0.9.5claws26
1192
1193         * tools/Makefile.am
1194           tools/README
1195           tools/vcard2xml.py    ** NEW FILE **
1196                 add a script that converts an evolution vcard to
1197                 sylpheed's xml format
1198                 submitted by Bogdan Sumanariu <bsumanariu@one5.ro>
1199
1200 2003-09-22 [paul]       0.9.5claws25
1201
1202         * src/plugins/clamav/clamav_plugin.c
1203                 don't skip MULTIPART parts
1204
1205 2003-09-21 [christoph]  0.9.5claws24
1206
1207         * src/alertpanel.c
1208                 remove unneeded include
1209
1210         * src/folder.c
1211                 clean up copy/move mess with duplicated code
1212
1213         * src/imap.c
1214                 fix problem that sometimes the folder was not scanned
1215                 also it was changed
1216
1217 2003-09-21 [christoph]  0.9.5claws23
1218
1219         * src/Makefile.am
1220         * src/logwindow.[ch]                    ** REMOVE **
1221         * src/mainwindow.c
1222         * src/prefs_common.c
1223         * src/gtk/Makefile.am
1224         * src/gtk/logwindow.[ch]                ** ADD **
1225                 make logwindow prefs_common independent and move
1226                 it to gtk directory
1227
1228 2003-09-20 [christoph]  0.9.5claws22
1229
1230         * src/compose.c
1231                 add extra space for address code conversion
1232                 (4 * unconvered size could be too small for short headers)
1233
1234 2003-09-20 [christoph]  0.9.5claws21
1235
1236         * src/compose.c
1237                 increase temp buffer size when writing headers
1238
1239 2003-09-19 [darko]      0.9.5claws20
1240
1241         * src/compose.c
1242                 don't ignore value of 'Save copy of outgoing messages to
1243                 this folder instead of Sent' in message redirect
1244
1245 2003-09-17 [christoph]  0.9.5claws19
1246
1247         * src/compose.c
1248                 use ", " as address seperator for mail headers and pass whole
1249                 header line at once to compose_convert_header to make sure
1250                 it is correctly folded
1251
1252         (closes Bug 64 Problem when sending to many recipients)
1253
1254 2003-09-17 [hoa]        0.9.5claws18
1255         
1256         * src/matcher.[ch]
1257           src/matcher_parser_parse.y
1258           src/prefs_matcher.c
1259                 changed the keyword used for command execution in condition
1260                 keyword is changed from "execute" to "test"
1261                 so that it is not the same as the one used for action.
1262                 This will fix a bug when using filtering dialog.
1263                 All semantic in the code is also changed to reflect
1264                 the keyword change.
1265
1266 2003-09-17 [paul]
1267         
1268         * sync with 0.9.6 release
1269
1270 2003-09-17 [paul]       0.9.5claws17
1271
1272         * sync with 0.9.5cvs8
1273                 see ChangeLog 2003-09-16 and 2003-09-17
1274
1275 2003-09-16 [paul]       0.9.5claws16
1276
1277         * sync with 0.9.5cvs6
1278                 see ChangeLog 2003-09-16
1279
1280 2003-09-15 [paul]       0.9.5claws15
1281
1282         * sync with 0.9.5cvs5
1283                 see ChangeLog 2003-09-15
1284
1285 2003-09-14 [alfons]     0.9.5claws14
1286
1287         * src/inc.c
1288                 make "Go to inbox after receiving new mail" again;
1289                 regression of a sync, restored to sylpheed main 
1290                 behaviour. (misses still some bits)
1291
1292 2003-09-14 [alfons]     0.9.5claws13
1293
1294         * src/prefs_filtering_action.c
1295                 o add proper message if empty execute command line
1296                 o don't select first action item after registering a
1297                   new action to prevent (what seems to be a GTK) bug
1298                   #36, "filtering will only accept one action change 
1299                   per invocation".
1300
1301 2003-09-14 [alfons]     0.9.5claws12
1302
1303         * src/prefs_filtering.c
1304         * src/prefs_filtering_action.c
1305         * src/prefs_matcher.c
1306                 fix function signature for key_pressed_event signal handlers
1307
1308 2003-09-14 [alfons]     0.9.5claws11
1309
1310         * src/mainwindow.c
1311                 fix regression caused by fix for invalid bug #7
1312                 (should fix #246, "Multiple selections are deselected when 
1313                 moving from search window to main window")
1314                 
1315 2003-09-14 [alfons]     0.9.5claws10
1316         
1317         * src/actions.[ch]
1318         * src/filtering.[ch]
1319         * src/prefs_actions.c
1320                 allow `filtering actions` in actions; only for advanced users
1321                 right now: try for example, "%as{mark color 2}" 
1322         
1323 2003-09-13 [paul]       0.9.5claws9
1324         
1325         * po/pl.po
1326           po/zh_CN.po   ** NEW FILE **
1327                 update Polish translation, submitted by Emil 
1328                 <eminowbl@posejdon.wpk.p.lodz.pl>
1329                 add new Simplified Chinese translation, submitted by
1330                 Hansom Young <hansom_young@yahoo.com>
1331
1332 2003-09-12 [alfons]     0.9.5claws8
1333
1334         * src/summaryview.c
1335                 don't open separate message views when View | Separate message view
1336                 is active 
1337                 (please look carefully for any navigation regressions)
1338
1339 2003-09-11 [alfons]     0.9.5claws7
1340
1341         * src/mainwindow.c
1342                 make default message view, opened by View | Separate message 
1343                 view, look like a claws message view (which includes a menu
1344                 bar and a toolbar)
1345                 (fixes bug #298, "message view loses tool bar") 
1346
1347 2003-09-11 [christoph]  0.9.5claws6
1348
1349         * src/folderview.c
1350                 fix double deleting of newsgroup folders
1351
1352         (closes Bug 305 crash after deleting of a newsgroup)
1353
1354 2003-09-11 [paul]       0.9.5claws5
1355
1356         * src/rfc2015.c
1357           src/common/utils.h
1358                 more sync'ing from 0.9.5cvs2
1359
1360 2003-09-11 [christoph]  0.9.5claws4
1361
1362         * src/compose.c
1363         * src/rfc2015.c
1364         * src/common/utils.h
1365                 fix sync with 0.9.5cvs2
1366
1367 2003-09-11 [paul]       0.9.5claws3
1368
1369         * sync with 0.9.5cvs4
1370                 see ChangeLog 2003-09-11
1371
1372 2003-09-11 [paul]       0.9.5claws2
1373
1374         * sync with 0.9.5cvs2
1375                 see ChangeLog 2003-09-05
1376                 
1377 2003-09-11 [paul]       0.9.5claws1
1378
1379         * sync with 0.9.5cvs3
1380                 see ChangeLog 2003-09-10
1381
1382 2003-09-10 [paul]       0.9.5claws
1383
1384         * 0.9.5claws released
1385
1386 2003-09-10 [paul]       0.9.4claws78
1387
1388         * src/Makefile.am
1389                 add missing files
1390
1391 2003-09-10 [melvin]     0.9.4claws77
1392
1393         * po/fr.po
1394                 Updated French translations
1395
1396 2003-09-10 [paul]       0.9.4claws76
1397
1398         * po/es.po
1399           po/sk.po
1400           po/sr.po
1401                 update Spanish, Slovak, and Serbian translations.
1402                 submitted by Ricardo Mones Lastra, Andrej Kacian,
1403                 and Urke MMI
1404                 
1405         * AUTHORS
1406                 add translation team section
1407
1408 2003-09-09 [christoph]  0.9.4claws75
1409
1410         * src/folder.c
1411                 free item->prefs in folder_item_destroy
1412
1413 2003-09-09 [alfons]     0.9.4claws74
1414
1415         * src/folderview.c
1416                 o proper check for root node sorting
1417                 o remove unnecessary gtk_ctree_remove_node 
1418
1419         (should fix bug #300, "crash while moving folder")      
1420
1421 2003-09-08 [christoph]  0.9.4claws73
1422
1423         * src/folderview.c
1424                 o fix double adding of IMAP FolderItems to GtkCTree
1425                 o fix crash then mbox folder is removed
1426
1427 2003-09-08 [christoph]  0.9.4claws72
1428
1429         * src/folder.c
1430         * src/folderview.c
1431         * src/mainwindow.c
1432                 fix new folder notification
1433
1434         * src/mbox_folder.c
1435                 fix cache path
1436
1437 2003-09-08 [christoph]  0.9.4claws71
1438
1439         * src/compose.c
1440                 replace '\n' and '\r' before removing trailing spaces
1441
1442         * src/folder.[ch]
1443         * src/folderview.c
1444                 add information about new or removed items in folder tree change
1445                 notification and use this in folderview to add and remove only
1446                 the appected items and not refresh the whole tree
1447
1448 2003-09-07 [match]      0.9.4claws70
1449
1450         * src/Makefile.am
1451         * src/addr_compl.c
1452         * src/addressbook.c
1453         * src/addressitem.h
1454         * src/addrindex.c
1455         * src/addritem.c
1456         * src/addritem.h
1457         * src/addrquery.c                       ** NEW **
1458         * src/addrquery.h
1459         * src/ldapquery.c
1460         * src/ldapserver.c
1461         * src/stock_pixmap.c
1462         * src/stock_pixmap.h
1463         * src/pixmaps/address_search.xpm        ** NEW **
1464                 re-introduce Lookup button for LDAP 'static' searches.
1465
1466 2003-09-07 [alfons]     0.9.4claws69
1467         
1468         * src/summaryview.c
1469                 abandon setting usize for messageview because it gives layout problems
1470                 with the quick search bar and the headerview; fixes assorted UI glitches:
1471                 
1472                 o bug #148, "Toggling of quick-search bar reduces index view area" 
1473                 o bug #280, "Window resiizes for line length but does not revert"
1474
1475 2003-09-07 [christoph]  0.9.4claws68
1476
1477         * src/compose.c
1478                 o make sure we don't have any newlines in header values
1479                 o check custom headers for spaces and newlines and ignore
1480                   malformed header names
1481
1482 2003-09-06 [christoph]  0.9.4claws67
1483
1484         * src/folder.c
1485         * src/folderview.c
1486                 invoke notification hook for folder tree changes after append
1487                 and remove folder
1488
1489         (closes Bug 294 Crash while moving folder with many subdirectories)
1490
1491 2003-09-06 [christoph]  0.9.4claws66
1492
1493         * src/folder.c
1494                 destroy folder's MsgCache if FolderItem is removed to make sure
1495                 it is not saved when the FolderItem is destroyed
1496
1497 2003-09-06 [christoph]  0.9.4claws65
1498
1499         * src/plugins/clamav/clamav_plugin.c
1500                 fix copy & paste bug
1501
1502 2003-09-05 [christoph]  0.9.4claws64
1503
1504         * src/folder.c
1505         * src/messageview.[ch]
1506         * src/procmsg.[ch]
1507         * src/summaryview.c
1508                 extend MSGINFO_UPDATE_HOOK to send delete notifications. Used
1509                 by MessageView to clear it when the message is deleted. Should
1510                 work even if messages are deleted in MainWindow or by
1511                 processing.
1512
1513 2003-09-05 [alfons]     0.9.4claws63
1514
1515         * src/messageview.c
1516                 deleting a message in a message view frees its msginfo, make 
1517                 messageview_update_all() aware of that (should fix bug #293,
1518                 "deleting message caused crash")
1519
1520 2003-09-05 [melvin]     0.9.4claws62
1521
1522         * src/action.c
1523                 Improve synchronous action exit code (fixes 
1524                 a ~5 seconds delay after action exit on RedHat 9)
1525
1526 2003-09-04 [christoph]  0.9.4claws61
1527
1528         * src/compose.c
1529         * src/rfc2015.c
1530         * src/common/utils.[ch]
1531                 add util function to create mime boundary and use it
1532                 in compose and gpg code
1533
1534 2003-09-04 [alfons]     0.9.4claws60
1535
1536         * src/folder.c
1537                 source folder item's GNode should already have been freed in 
1538                 a previous call to src->folder->klass->remove_folder()
1539                 (should fix bug #287, "crash when moving folders")
1540
1541 2003-09-03 [thorsten]   0.9.4claws59
1542
1543         * src/plugins/spamassassin/spamassassin_gtk.c
1544                 fix compile error
1545
1546 2003-09-03 [christoph]  0.9.4claws58
1547
1548         * src/plugins/spamassassin/spamassassin.[ch]
1549         * src/plugins/spamassassin/spamassassin_gtk.c
1550                 add timeout config option
1551
1552 2003-09-03 [paul]       0.9.4claws57
1553
1554         * po/sk.po      ** NEW FILE **
1555                 add Slovak translation. Submitted by Andrej Kacian 
1556                 <andrej@kacian.sk>
1557
1558 2003-09-03 [paul]       0.9.4claws56
1559
1560         * src/plugins/clamav/clamav_plugin_gtk.c
1561                 gui tweaks: replace a label with a tooltip, modify the
1562                 text, use gtk_check_button_new(); instead of
1563                 gtk_check_button_new_with_label("");
1564
1565 2003-09-02 [alfons]     0.9.4claws55
1566
1567         * src/gtk/filesel.c
1568                 remember last used dir when attaching multiple files (should fix
1569                 bug #290, "Attach File does not remember directory")
1570
1571 2003-09-01 [paul]       0.9.4claws54
1572
1573         * po/es.po
1574                 updated by Ricardo Mones Lastra
1575
1576 2003-09-01 [alfons]     0.9.4claws53
1577
1578         * src/gtk/gtkaspell.[ch]
1579                 be pedantic and strict and use const gchar * instead of guchar *
1580
1581 2003-09-01 [alfons]     0.9.4claws52
1582
1583         * src/mainwindow.c
1584         * src/summaryviewc.
1585                 re-enable Save As when multiple messages are selected
1586
1587 2003-09-01 [paul]       0.9.4claws51
1588
1589         * src/textview.c
1590                 g_free(trimmed_uri);
1591
1592 2003-09-01 [paul]       0.9.4claws50
1593
1594         * sync with 0.9.4cvs13
1595                 see ChangeLog 2003-09-01
1596
1597 2003-09-01 [paul]       0.9.4claws49
1598
1599         * src/textview.c
1600                 trim uri before sending to the statusbar
1601                 fixes Bug 275 'Clicking on long URL wrapped onto two lines
1602                 in the message window causes main S-C window to enlarge 
1603                 past screen edges'
1604
1605 2003-09-01 [paul]       0.9.4claws48
1606
1607         * sync with 0.9.4cvs12
1608                 see ChangeLog 2003-09-01
1609
1610 2003-08-30 [christoph]  0.9.4claws47
1611
1612         * src/compose.c
1613         * src/folder_item_prefs.[ch]
1614         * src/prefs_folder_item.c
1615         * src/gtk/gtkaspell.[ch]
1616                 commit per folder dictionary patch by
1617                 Paul Evans <nerd@freeuk.com>
1618
1619 2003-08-30 [christoph]  0.9.4claws46
1620
1621         * src/plugins/spamassassin/spamassassin_gtk.c
1622         * src/plugins/spamassassin/spamassassin_gtk.glade
1623                 reduce GUI clutter by placing hints into tooltips
1624
1625 2003-08-30 [paul]       0.9.4claws45
1626
1627         * src/compose.c
1628                 add 'Content-Disposition: inline' to a text/plain
1629                 part when using PGP/MIME signing
1630
1631 2003-08-30 [paul]       0.9.4claws44
1632
1633         * src/prefs_common.c
1634           src/prefs_spelling.c
1635           src/prefs_spelling.glade
1636                 reduce GUI clutter by placing hints into tooltips
1637
1638 2003-08-29 [christoph]  0.9.4claws43
1639
1640         * configure.ac
1641                 fix bug found by Ivan Rayner <ivanr@sgi.com>
1642
1643         * src/stock_pixmap.c
1644                 change unecessary warning into a debug message
1645
1646         * src/plugins/clamav/Makefile.am
1647                 Fix error "-I$(CLAMAV_LIBS)"
1648
1649 2003-08-29 [christoph]  0.9.4claws42
1650
1651         * intl/Makefile.in
1652         * src/Makefile.am
1653         * src/matcher.h
1654         * src/common/Makefile.am
1655         * src/common/passcrypt.c
1656                 commit fixes and patches for some of the IRIX problems found by
1657                 Ivan Rayner <ivanr@sgi.com>
1658
1659 2003-08-29 [paul]       0.9.4claws41
1660
1661         * src/prefs_filtering.c
1662                 add 'Top' and 'Bottom' buttons, based on changes in
1663                 src/prefs_filter.c in 0.9.4cvs11.
1664
1665 2003-08-27 [christoph]  0.9.4claws40
1666
1667         * src/folderview.c
1668                 fix bug that the current summary settings were copied to the
1669                 wrong folder item, when the folder item prefs are opened.
1670                 Copying is not required because summary settings and
1671                 folder_item_prefs do not contain the same settings
1672
1673 2003-08-27 [thorsten]   0.9.4claws39
1674
1675         * src/imap.c
1676                 fix compile error
1677
1678 2003-08-26 [paul]       0.9.4claws38
1679
1680         * sync with 0.9.4cvs9
1681                 see ChangeLog 2003-08-26
1682
1683 2003-08-25 [paul]       0.9.4claws37
1684
1685         * sync with 0.9.4cvs8
1686                 see ChangeLog 2003-08-25
1687
1688 2003-08-24 [christoph]  0.9.4claws36
1689
1690         * src/prefs_filtering.c
1691                 shouldn't remove items from a GSList while iterating over the
1692                 list (makes cur invalid and cur->next not accessable)
1693
1694         (closes Bug 272 i deleted an folder and some seconds later sylpheed
1695          crashed)
1696
1697 2003-08-23 [christoph]  0.9.4claws35
1698
1699         * src/news.c
1700                 news folders should be scanned when opened
1701
1702 2003-08-22 [christoph]  0.9.4claws34
1703
1704         * src/prefs_folder_item.c
1705                 use macro to assign strings that always frees the old string
1706
1707         * src/gtk/gtkaspell.[ch]
1708                 add gtkaspell_set_dictionary_menu_active_item() to set active
1709                 item in dictionary option menu
1710
1711         * src/prefs_spelling.c
1712                 use gtkaspell_set_dictionary_menu_active_item() to select
1713                 dictionary
1714
1715 2003-08-21 [christoph]  0.9.4claws33
1716
1717         * src/folder.[ch]
1718         * src/imap.c
1719         * src/mbox_folder.c
1720         * src/mh.c
1721         * src/news.c
1722                 optimize folder system
1723
1724         * src/gtk/gtkstext.c
1725                 fix division by zero when font has 0 width for ' '
1726
1727 2003-08-21 [paul]       0.9.4claws32
1728
1729         * sync with 0.9.4cvs7
1730                 see ChangeLog 2003-08-20
1731
1732 2003-08-19 [paul]       0.9.4claws31
1733
1734         * src/common/defs.h
1735                 add the missing '/' to SYLDOC_MANUAL_HTML_INDEX and
1736                 SYLDOC_FAQ_HTML_INDEX.
1737         * src/manual.c
1738                 use LC_MESSAGES instead of LC_ALL to find the current
1739                 language
1740
1741           fixes Bug #281 'in src/manual.c URL for manuals and FAQ wrong'.
1742
1743 2003-08-19 [paul]       0.9.4claws30
1744
1745         * po/bg.po
1746                 updated by George Danchev
1747
1748 2003-08-18 [luke]       0.9.4claws29
1749         * src/mimeview.[ch]
1750         * src/gtk/gtkvscrollbutton.[ch]
1751                 o removed gtk_vscrollbutton_reset() (reasons: reduce 
1752                   dependencies; do it the GTK way; reduce code -14/+2 lines)
1753                 o removed horizontal separator between icons
1754
1755 2003-08-17 [christoph]  0.9.4claws28
1756
1757         * src/procmsg.c
1758                 no subject threading when the subject has no reply prefix
1759
1760 2003-08-16 [christoph]  0.9.4claws27
1761
1762         * src/mainwindow.c
1763                 remember and restore window sizes and position when the main
1764                 window is hidden or shown
1765
1766         (closes Bug 274 Window size in 0.9.4claws18 not remembered when
1767          minimised/reopened using trayicon)
1768
1769 2003-08-16 [paul]       0.9.4claws26
1770
1771         * src/crash.c
1772                 add #include "defs.h"
1773
1774 2003-08-16 [paul]       0.9.4claws25
1775
1776         * src/plugins/clamav/clamav_plugin.c
1777                 reword a debug_print
1778                 
1779         * src/plugins/dillo_viewer/dillo_prefs.c
1780                 cosmetic: change the labels' text, add tooltips, and
1781                 left-align the hint
1782
1783 2003-08-15 [christoph]  0.9.4claws24
1784
1785         * src/news.c
1786                 complete last change (forgot some changes)
1787
1788 2003-08-15 [christoph]  0.9.4claws23
1789
1790         * src/news.c
1791                 o check number of messages and don't return a 0 message
1792                   when no messages are available
1793                 o don't parse xref header anymore
1794
1795         (closes Bug 203 I'm not getting any news)
1796
1797 2003-08-15 [paul]       0.9.4claws22
1798
1799         * src/common/defs.h
1800           src/crash.c
1801                 update and define claws bugzilla location
1802
1803 2003-08-15 [paul]       0.9.4claws21
1804
1805         * po/ru.po
1806                 update submitted by Ruslan N. Balkin
1807
1808 2003-08-14 [christoph]  0.9.4claws20
1809
1810         * src/procmsg.c
1811                 fix search for oldest node in subject threading
1812
1813 2003-08-14 [christoph]  0.9.4claws19
1814
1815         * src/procmsg.c
1816         * src/common/utils.h
1817                 add possibility to check all nodes with the same subject for
1818                 subject threading, not only the oldest node. Should not break
1819                 threads anymore if the oldest node is thread_by_subject_max_age
1820                 days older then parent, because it can now find a child of
1821                 oldest node as new parent.
1822
1823 2003-08-11 [christoph]  0.9.4claws18
1824
1825         * src/plugins/spamassassin/spamassassin.c
1826                 run spam check in background process
1827
1828 2003-08-10 [alfons]     0.9.4claws17
1829
1830         * src/summaryview.c
1831                 make `Select All' sensitive too
1832
1833 2003-08-10 [christoph]  0.9.4claws16
1834
1835         * src/imap.c
1836                 add more checks in imap_close
1837
1838 2003-08-09 [alfons]     0.9.4claws15
1839
1840         * src/prefs_spelling.c
1841                 no spell checking UI if not requested
1842
1843 2003-08-09 [alfons]     0.9.4claws14
1844
1845         * src/gtk/prefswindow.c
1846                 make it compile
1847
1848 2003-08-09 [christoph]  0.9.4claws13
1849
1850         * src/prefs_spelling.c
1851         * src/gtk/prefswindow.[ch]
1852         * src/plugins/clamav/clamav_plugin_gtk.c
1853         * src/plugins/spamassassin/spamassassin_gtk.c
1854                 sort prefs pages by heighest weight in tree
1855
1856 2003-08-09 [paul]       0.9.4claws12
1857
1858         * sync with 0.9.4cvs6
1859                 see ChangeLog 2003-08-07
1860                 
1861         * AUTHORS
1862                 add Leandro and Luke to claws-branch section
1863
1864 2003-08-09 [christoph]  0.9.4claws11
1865
1866         * src/gtk/Makefile.am
1867         * src/gtk/colorsel.[ch]                 ** NEW **
1868                 create a color selection dialog that can be used as a simple
1869                 function call with it's own gtk main loop like filesel.[ch]
1870
1871         * src/Makefile.am
1872         * src/main.c
1873         * src/prefs_common.c
1874         * src/prefs_spelling.[ch]               ** NEW **
1875         * src/prefs_spelling.glade              ** NEW **
1876         * src/gtk/gtkutils.[ch]
1877                 move "Spell Checker" prefs to new prefs dialog
1878
1879         * src/prefs_folder_item.c
1880                 use new colorsel dialog
1881
1882 2003-08-08 [paul]       0.9.4claws10
1883
1884         * src/inc.c
1885                 clear the progress bar unconditionally
1886
1887 2003-08-08 [paul]       0.9.4claws9
1888
1889         * sync with 0.9.4cvs4
1890                 see ChangeLog 2003-07-31
1891
1892 2003-08-07 [christoph]  0.9.4claws8
1893
1894         * configure.ac
1895                 fix bug in image viewer plugin part
1896
1897         * src/imap.c
1898                 don't execute close command if the folder item is not selected
1899
1900 2003-08-07 [hoa]        0.9.4claws7
1901
1902         * src/filtering.[ch]
1903         * src/matcher_parser.h
1904         * src/matcher_parser_parse.y
1905                 can define several actions for each filtering rule
1906                 can import old versions of filtering rules
1907
1908         * src/prefs_filtering.c
1909                 call to a new dialog box to define actions
1910
1911         * src/prefs_filtering_action.[ch]
1912                 dialog box to define actions for filtering rules
1913
1914 2003-08-06 [christoph]  0.9.4claws6
1915
1916         * src/imap.c
1917                 make sure source folder is selected when copying messages
1918
1919 2003-08-06 [christoph]  0.9.4claws5
1920
1921         * sync with 0.9.4cvs2
1922                 see ChangeLog 2003-07-29                
1923
1924 2003-08-05 [paul]       0.9.4claws4
1925
1926         * sync with 0.9.4cvs3
1927                 see ChangeLog 2003-07-30
1928
1929 2003-08-04 [match]      0.9.4claws3
1930
1931         * po/POTFILES.in
1932                 export of LDIF files.
1933
1934 2003-08-04 [match]      0.9.4claws2
1935
1936         * src/ldif.[ch]
1937                 support for export LDIF. documented.
1938         * src/importldif.[ch]
1939         * src/exportldif.[ch]
1940                 add tooltips. documented.
1941         * src/exphtmldlg.[ch]
1942         * src/common/xmlprops.[ch]
1943                 documented.
1944         * src/exportldif.[ch]                   ** NEW **
1945         * src/expldifdlg.[ch]                   ** NEW **
1946         * src/addressbook.[ch]
1947         * src/Makefile.am
1948                 export of LDIF files.
1949                 documented.
1950
1951 2003-08-04 [christoph]  0.9.4claws1
1952
1953         * .cvsignore
1954         * Makefile.am
1955         * configure.ac
1956         * sylpheed-claws.pc.in                  ** NEW **
1957         * src/Makefile.am
1958         * src/common/Makefile.am
1959         * src/gtk/Makefile.am
1960                 install sylpheed header files in $(pkgincludedir) and create a
1961                 pkg-config file to allow building a plugin without the source
1962                 package
1963
1964 2003-08-04 [paul]       0.9.4claws
1965
1966         * version 0.9.4claws
1967
1968 2003-08-04 [paul]       0.9.3claws97
1969
1970         * po/es.po
1971                 update Spanish translation. Submitted by Ricardo
1972                 Mones Lastra.
1973
1974 2003-08-03 [paul]       0.9.3claws96
1975
1976         * po/hr.po
1977           po/sr.po
1978                 update Croatian and Serbian translations. Submitted by
1979                 Dragan and Urke MMI respectively
1980
1981 2003-08-03 [alfons]     0.9.3claws95
1982
1983         * src/summaryview.c
1984                 mark flag has precedence over important flag - seems
1985                 to have been changed in sync of 0.9.3claws45. this fixes
1986                 a regression where messages that were scored as important
1987                 don't show their mark flags. (using the same column for
1988                 both importance as mark flags is the real problem
1989                 ofcourse)
1990
1991 2003-08-03 [melvin]     0.9.3claws94
1992
1993         * po/fr.po
1994                 Updated French translations.
1995
1996 2003-08-03 [melvin]     0.9.3claws93
1997
1998         * src/Makefile.am
1999                 Fixed typo introduced after 0.9.3claws92 
2000                 that prevented compilation
2001                 Updated to use AM_CPPFLAGS and AM_YFLAGS instead of
2002                 CPPFLAGS and YFLAGS to allow user setting these.
2003         * src/common/Makefile.am
2004         * src/gtk/Makefile.am
2005         * src/plugins/clamav/Makefile.am
2006         * src/plugins/demo/Makefile.am
2007         * src/plugins/dillo_viewer/Makefile.am
2008         * src/plugins/image_viewer/Makefile.am
2009         * src/plugins/mathml_viewer/Makefile.am
2010         * src/plugins/spamassassin/Makefile.am
2011         * src/plugins/trayicon/Makefile.am
2012         * src/plugins/trayicon/libeggtrayicon/Makefile.am
2013                 Updated to use AM_CPPFLAGS and AM_YFLAGS instead of
2014                 CPPFLAGS and YFLAGS to allow user setting these.
2015
2016 2003-08-02 [christoph]  0.9.3claws92
2017
2018         * configure.ac
2019                 o rearrange plugin tests
2020                 o add test for clamav.h to ClamAV tests
2021
2022 2003-08-02 [luke]       0.9.3claws91
2023
2024         * src/mimeview.c
2025                 o fixed appearance of icon list when toggling back from the 
2026                   ctree
2027                 o toggling of icons using the keyboard works correctly
2028                 o fixed all other keyboard shortcuts to work when icons are
2029                   active
2030         
2031         * src/messageview.c
2032                 o fixed bug 4 - focus lost when changing messageview view type
2033
2034 2003-08-02 [christoph]  0.9.3claws90
2035
2036         * src/common/hooks.c
2037                 fix crash when pointer stored in hash table could get invalid
2038                 when a plugin is unloaded
2039
2040 2003-08-01 [christoph]  0.9.3claws89
2041
2042         * configure.ac
2043                 o try to build all plugins (except spamassassin) by default
2044                 o don't build a plugin if a dependency check fails
2045
2046         * src/common/hooks.c
2047                 fix warning
2048
2049 2003-08-01 [match]      0.9.3claws88
2050
2051         * src/importldif.c
2052                 allow single click field selection. document code.
2053
2054 2003-08-01 [christoph]  0.9.3claws87
2055
2056         * src/plugins/clamav/clamav_plugin.c
2057         * src/plugins/clamav/clamav_plugin_gtk.c
2058         * src/plugins/dillo_viewer/dillo_viewer.c
2059         * src/plugins/image_viewer/plugin.c
2060         * src/plugins/mathml_viewer/mathml_viewer.c
2061         * src/plugins/spamassassin/spamassassin.c
2062         * src/plugins/spamassassin/spamassassin_gtk.c
2063         * src/plugins/trayicon/trayicon.c
2064                 add version check to all plugins
2065
2066 2003-08-01 [hoa]        0.9.3claws86
2067
2068         * src/prefs_filtering.c
2069                 fixed a cosmetic bug, during creation of dialog box,
2070                 wrong widgets were shown after creation.
2071
2072 2003-08-01 [luke]       0.9.3claws85
2073
2074         * src/mainwindow.c
2075                 o fixed visibility of icons/mimeview after toggling separate
2076                   message/folder view (factored out some similar code too).
2077
2078
2079 2003-07-31 [alfons]     0.9.3claws84
2080
2081         * src/mimeview.c
2082                 tweak icon box UI a bit more, now allowing right-clicks actions
2083                 getting the relevant mime data too; should fix #250, "Can't save 
2084                 attachments sometimes".
2085
2086 2003-07-30 [alfons]     0.9.3claws83
2087
2088         * src/compose.c
2089                 don't do auto-save-draft inside key press handler, but rather
2090                 schedule it half of a second later; should fix #67, "autosave 
2091                 make re-rediting message crazy"
2092
2093 2003-07-30 [christoph]  0.9.3claws82
2094
2095         * src/plugins/trayicon/trayicon.c
2096                 process pending events before unloading the plugin
2097
2098         (closes Bug 196 Unloading Trayicon plugin crashes Sylpheed-Claws)
2099
2100 2003-07-30 [alfons]     0.9.3claws81
2101
2102         * src/common/hooks.c
2103                 parameter 2 of g_hook_destroy() should really be a hook id
2104
2105 2003-07-30 [alfons]     0.9.3claws80
2106
2107         * src/common/plugin.c
2108                 fix a possibly harmful function signature mismatch 
2109                 for plugin_done
2110
2111 2003-07-30 [alfons]     0.9.3claws79
2112
2113         * src/common/hooks[.ch]
2114                 const correctness
2115
2116 2003-07-30 [darko]      0.9.3claws78
2117
2118         * src/summaryview.c
2119                 make it compile again
2120
2121 2003-07-30 [luke]       0.9.3claws77
2122
2123         * src/crash.c
2124         * src/main.c
2125                 o added/moved signal handlers for SIGTERM (normal kill command) 
2126                   and SIGINT (ctl-c) to be used even without 
2127                   --enable-crash-dialog, fixing bug 166
2128
2129         * src/summaryview.c
2130                 o rewrote menu sensitivity code as per mainwindow.c, fixing 
2131                   bug 227
2132
2133         * src/mainwindow.c
2134                 o changed sensitivity condition for 'Next new' and 'Next 
2135                   unread', fixing bug 8
2136
2137 2003-07-29 [alfons]     0.9.3claws76
2138
2139         * src/common/utils.[ch]
2140                 add generate_msgid()
2141         * src/messageview.c
2142                 save ack'ed RRR; fixes #205, "return receipt is not saved in
2143                 sent folder".
2144
2145 2003-07-29 [alfons]     0.9.3claws75
2146
2147         * src/messageview.c
2148                 fix a memleak (claws-only)
2149
2150 2003-07-29 [alfons]     0.9.3claws74
2151
2152         * src/mimeview.[ch]
2153         * src/gtk/gtkvscrollbutton.[ch]
2154                 fix UI glitch where mime icon toolbox' scroll position is not 
2155                 reset after switching to another message
2156                 
2157
2158 2003-07-29 [paul]       0.9.3claws73
2159
2160         * src/prefs_folder_item.c
2161                 split the prefs into 2 separate pages
2162
2163 2003-07-29 [paul]       0.9.3claws72
2164
2165         * src/compose.c
2166                 prepend "\n\n" to a signature without a separator too
2167
2168 2003-07-29 [paul]       0.9.3claws71
2169
2170         * src/compose.c
2171                 fix bug where changing to an account without an auto-sig
2172                 from an initial account without an auto-sig would insert 
2173                 2 blank lines at the cursor point
2174                 fix bug where changing to an account with an auto-sig
2175                 from an initial account without an auto-sig would insert
2176                 the sig at the cursor point
2177
2178 2003-07-29 [paul]       0.9.3claws70
2179
2180         * src/folderview.c
2181                 use the colour from the folder pref unless the folder
2182                 has new messages
2183
2184 2003-07-29 [alfons]     0.9.3claws69
2185
2186         * src/procmsg.[ch]
2187         * src/messageview.c
2188         * src/procheader.c
2189                 rewrite return receipt request work a little bit (the former 
2190                 implementation presumably depended too much on the UI setting
2191                 flags). (we're losing the old pending flag.) 
2192
2193 2003-07-28 [christoph]  0.9.3claws68
2194
2195         * src/folder.c
2196         * src/imap.c
2197         * src/mh.c
2198         * src/procmsg.[ch]
2199                 fix copy to IMAP folder from other folder
2200
2201 2003-07-28 [christoph]  0.9.3claws67
2202
2203         * src/procmsg.c
2204                 fix sync of procmsg_get_message_file_list
2205
2206 2003-07-28 [christoph]  0.9.3claws66
2207
2208         * sync with 0.9.3cvs14
2209                 see ChangeLog 2003-07-18
2210         * sync with 0.9.3cvs17
2211                 see ChangeLog 2003-07-23
2212
2213         (closes Bug 234 segmentation fault after sending out mail via
2214          smtp(auth))
2215
2216 2003-07-28 [paul]       0.9.3claws65
2217
2218         * po/es.po
2219                 update Spanish translation, submitted by Ricardo Mones
2220                 Lastra
2221
2222 2003-07-28 [christoph]  0.9.3claws64
2223
2224         * src/folder.[ch]
2225         * src/imap.c
2226         * src/mh.c
2227                 return new message numbers as a GRelation instead of a GSList
2228                 that has to be in the same order as the input list. A list
2229                 would make it hard for IMAP to optimize oepration by sorting
2230                 the input list. The returned list would have to be reordered
2231                 to match the same order that input list has.
2232
2233         * src/gtk/gtkaspell.c
2234                 fix missing return value, could cause a crash when garbage is
2235                 on the stack that is used as the expected return value
2236
2237 2003-07-28 [paul]       0.9.3claws63
2238
2239         * sync with 0.9.4cvs1
2240                 see ChangeLog 2003-07-28
2241
2242 2003-07-27 [alfons]     0.9.3claws62
2243
2244         * src/mimeview.c
2245                 tweak it more to make icon list act like a check button group
2246
2247 2003-07-27 [christoph]  0.9.3claws61
2248
2249         * sync with 0.9.3cvs20
2250                 see ChangeLog 2003-07-25
2251
2252 2003-07-27 [paul]       0.9.3claws60
2253
2254         * src/procmsg.c
2255                 re-commit changes from 0.9.3claws58 -
2256                 accidently removed in 0.9.3claws59
2257
2258 2003-07-27 [paul]       0.9.3claws59
2259
2260         * src/procmsg.[ch]
2261                 a sync from 0.9.3cvs17
2262                 see ChangeLog 2003-07-23
2263
2264 2003-07-27 [alfons]     0.9.3claws58
2265
2266         * src/procmsg.c
2267                 add missing header members to MsgInfo; fixes the problem of 
2268                 not displaying X-Faces, as noticed by Ricardo Mones
2269
2270 2003-07-26 [christoph]  0.9.3claws57
2271
2272         * sync with 0.9.3cvs18
2273                 see ChangeLog 2003-07-24
2274
2275 2003-07-26 [christoph]  0.9.3claws56
2276
2277         * sync with 0.9.3cvs17
2278                 see ChangeLog 2003-07-23
2279
2280 2003-07-26 [christoph]  0.9.3claws55
2281
2282         * src/folder.[ch]
2283         * src/imap.c
2284         * src/mbox_folder.c
2285         * src/mh.c
2286         * src/news.c
2287                 add support for copy function that copy multiple messages
2288                 (not implemented yet)
2289
2290         * src/summaryview.c
2291                 add missing return value
2292
2293 2003-07-26 [paul]       0.9.3claws54
2294
2295         * tools/multiwebsearch.pl
2296                 do whitespace substitution before passing the string
2297                 to the browser. fixes bug with browsers that don't
2298                 do whitespace conversion themselves.
2299
2300 2003-07-25 [christoph]  0.9.3claws53
2301
2302         * src/folder.[ch]
2303         * src/imap.c
2304         * src/mh.c
2305                 rewrite adding of multiple messages to a folder for
2306                 claws' folder system
2307
2308 2003-07-25 [luke]       0.9.3claws52
2309
2310         * src/mimeview.c
2311                 o icon toggles set correctly on leaving ctree mimeview
2312
2313 2003-07-25 [paul]       0.9.3claws51
2314
2315         * partial sync with 0.9.3cvs21 [src/main.c]
2316                 see ChangeLog 2003-07-25
2317
2318 2003-07-24 [paul]       0.9.3claws50
2319
2320         * tools/maildir2sylpheed.pl
2321                 fix typo
2322
2323 2003-07-24 [paul]       0.9.3claws49
2324
2325         * src/mimeview.c
2326                 increase the gutter size of paned so that the panes
2327                 can be resized
2328                 
2329         * src/plugins/demo/demo.c
2330                 squeeze in another typo fix
2331
2332 2003-07-24 [paul]       0.9.3claws48
2333
2334         * src/plugins/demo/demo.c
2335           src/prefs_account.c
2336                 small changes to the English
2337                 
2338         * src/pixmaps/mime_application_octect_stream.xpm        ** REMOVED **
2339           src/pixmaps/mime_application_octet_stream.xpm         ** NEW FILE **
2340           src/Makefile.am
2341           src/stock_pixmap.c
2342                 rename the misspelled icon
2343
2344 2003-07-23 [alfons]     0.9.3claws47
2345
2346         * src/mimeview.c
2347                 make icon list look like a list of toggles
2348
2349 2003-07-23 [luke]       0.9.3claws46
2350
2351         * src/pixmaps/mimeview_gpg_expired.xpm
2352         * src/pixmaps/mimeview_gpg_failed.xpm
2353         * src/pixmaps/mimeview_gpg_passed.xpm
2354         * src/pixmaps/mimeview_text_html.xpm
2355         * src/pixmaps/mimeview_image.xpm
2356                 o all icons the same size
2357
2358         * src/mimeview.[ch]
2359                 o mimeview ctree arranged vertically above the viewer
2360                 o icons changed to buttons
2361                 o can use keyboard to select an icon (Enter)
2362                 o resize icon list to width of icons
2363
2364         *  src/gtk/gtkvscrollbutton.c
2365                 o sensitivity of buttons reacts to position
2366
2367 2003-07-23 [christoph]  0.9.3claws45
2368
2369         * sync with 0.9.3cvs14 (incomplete)
2370                 see ChangeLog 2003-07-17
2371
2372 2003-07-23 [alfons]     0.9.3claws44
2373
2374         * src/folder.c
2375         * src/procmsg.h
2376                 sync with my local tree to restore some claws-only things
2377
2378 2003-07-23 [paul]       0.9.3claws43
2379
2380         * src/pixmaps/mime_gpg_expired.xpm      ** NEW FILE **
2381           src/pixmaps/mime_gpg_unknown.xpm      ** NEW FILE **
2382           src/Makefile.am
2383           src/mimeview.c
2384           src/procmime.h
2385           src/rfc2015.c
2386           src/stock_pixmap.[ch]
2387                 indicate missing keys and expired sigs/keys
2388                 in mime view column
2389
2390 2003-07-23 [paul]       0.9.3claws42
2391
2392         * src/compose.c
2393                 Redirect fixes: enable automatic account selection and
2394                 do not append signature to message on changing account
2395                 fixes Bug[s] #248
2396
2397 2003-07-23 [paul]       0.9.3claws41
2398
2399         * sync with 0.9.3cvs16
2400                 see ChangeLog 2003-07-23
2401
2402 2003-07-23 [alfons]     0.9.3claws40
2403
2404         * src/inc.c
2405                 give progress dialog a main window, and give it the first 
2406                 one (presumably the only one). fixes bug #247, "segfault on 
2407                 pop-before-smtp" 
2408
2409 2003-07-22 [alfons]     0.9.3claws39
2410
2411         * src/summaryview.c
2412                 shift-space scrolls up
2413
2414 2003-07-22 [paul]       0.9.3claws38
2415
2416         * sync with 0.9.3cvs15
2417                 see ChangeLog 2003-07-22
2418
2419 2003-07-20 [alfons]     0.9.3claws37
2420
2421         * src/compose.c
2422                 put menu inside #ifdef USE_ASPELL..#endif
2423
2424 2003-07-20 [christoph]  0.9.3claws36
2425
2426         * src/procmsg.c
2427                 fix wrong flags in MsgInfo returned by
2428                 procmsg_msginfo_get_full_info()
2429
2430         (closes Bug 221 Deleting messages from the Message View gives incorrect
2431          new/unread message counts in the folder view)
2432
2433         * src/plugins/spamassassin/spamassassin_gtk.c
2434                 add gettext macro for prefs page title
2435
2436 2003-07-20 [paul]       0.9.3claws35
2437
2438         * src/mimeview.c
2439                 redraw icon list on signature check
2440
2441 2003-07-20 [christoph]  0.9.3claws34
2442
2443         * src/Makefile.am
2444         * src/account.c
2445         * src/folder.[ch]
2446         * src/folder_item_prefs.[ch]            ** NEW **
2447         * src/folderview.c
2448         * src/mainwindow.c
2449         * src/mh.c
2450         * src/prefs_gtk.c
2451         * src/prefs_scoring.c
2452         * src/summaryview.c
2453         * src/prefs_folder_item.[ch]
2454                 o seperate FolderItemPrefs (formerly PrefsFolderItem) and the
2455                   Properties dialog
2456                 o use prefswindow for folder properties
2457
2458         * src/gtk/prefswindow.[ch]
2459                 change implementation to use an invisible notebook instead
2460                 of unparenting widgets
2461
2462 2003-07-20 [christoph]  0.9.3claws33
2463
2464         * src/compose.h
2465         * src/folder.c
2466         * src/folderview.h
2467         * src/headerview.h
2468         * src/prefs_filtering.h
2469         * src/prefs_folder_item.[ch]
2470         * src/procmime.h
2471         * src/procmsg.h
2472         * src/summaryview.h
2473                 clean up header mess
2474                 (always use 1. typedefs, 2. #includes, 3. structures)
2475
2476         * src/common/version.h.in
2477                 add casts for constants
2478
2479         * src/plugins/demo/demo.c
2480                 fix typo
2481
2482         * src/plugins/spamassassin/spamassassin.c
2483                 remove unused variable
2484
2485 2003-07-20 [alfons]     0.9.3claws32
2486
2487         * src/mimeview.c
2488                 o make icon buttons respond on left click
2489                 o minor cosmetic change
2490
2491 2003-07-19 [luke]       0.9.3claws31
2492
2493         * src/mimeview.[ch]
2494         * src/gtk/gtkvscrollbutton.c
2495         * src/messageview.c
2496                 o improved mimeview behaviour when selecting a new message
2497                 o plus code cleanups to remove compile warnings
2498
2499
2500 2003-07-19 [alfons]     0.9.3claws30
2501
2502         * src/procmsg.c
2503         * src/compose.c
2504         * src/common/utils.[ch]
2505                 subject_get_reply_prefix_length() <- subject_get_prefix_length()
2506
2507 2003-07-19 [alfons]     0.9.3claws29
2508
2509         * src/prefs_folder_item.c
2510                 reinit "legacy" tmp_prefs, so we don't free nor use invalid 
2511                 string pointers
2512
2513 2003-07-19 [luke]       0.9.3claws28
2514
2515         * src/messageview.c
2516         * src/mimeview.[ch]
2517         * src/procmime.h
2518         * src/rfc2015.c
2519         * src/stock_pixmap.[ch]
2520         * src/gtk/Makefile.am
2521         * src/Makefile.am
2522         * src/gtk/gtkvscrollbutton.[ch]         ** NEW **
2523         * src/pixmaps/mime_*.xpm                ** NEW **
2524                 o mimeview rearrangement with a new icon shortcut bar
2525
2526 2003-07-19 [alfons]     0.9.3claws27
2527
2528         * src/folderview.c
2529                 o plug leaking nodes_to_recollapse
2530                 o add folderview_recollapse_all_nodes() (not used yet)
2531
2532 2003-07-19 [alfons]     0.9.3claws26
2533
2534         * src/compose.c
2535         * src/common/utils.c
2536                 honour #240 "Better SUBJECT handling" by cleaning the prefix
2537                 for both forwarding as replying
2538
2539 2003-07-18 [christoph]  0.9.3claws25
2540
2541         * configure.ac
2542         * src/common/sylpheed.[ch]
2543         * src/common/version.h.in
2544                 add version in numeric form to allow easy comparison
2545
2546         * src/plugins/demo/demo.c
2547                 add version check
2548                 - sylpheed version > plugin version => never allowed, sylpheed
2549                   could contain unknown API changes
2550                 - sylpheed version < minimum version required => don't load,
2551                   API required not available (if linking does not fail)
2552
2553 2003-07-18 [alfons]     0.9.3claws24
2554         
2555         * src/common/plugin.[ch]
2556                 const correctness
2557
2558 2003-07-18 [christoph]  0.9.3claws23
2559
2560         * src/common/hooks.c
2561                 fix crash when hooks where unregisted
2562
2563         * src/plugins/trayicon/trayicon.c
2564                 unregister detroy signal before destroying the widget
2565                 (still crashes when the plugin is unloaded)
2566
2567 2003-07-18 [alfons]     0.9.3claws22
2568         
2569         * src/folderview.c
2570                 delay expanding folder tree during drags until timeout triggered
2571                 (needs perhaps some tweaking, so testing is welcome)
2572
2573 2003-07-17 [alfons]     0.9.3claws21
2574
2575         * src/folderview.c
2576                 clean up cruft
2577
2578 2003-07-17 [christoph]  0.9.3claws20
2579
2580         * src/common/session.c
2581                 fix opening of SSL connections
2582
2583         * src/plugins/image_viewer/Makefile.am
2584                 add OPENSSL_CFLAGS (we should find a better solution to remove
2585                 this dependencies if they are not required)
2586
2587         * src/plugins/spamassassin/spamassassin.c
2588                 remove setlocale workaround (fixed in libspamc)
2589
2590         (closes Bug Bug 184 Entering non-ascii character deletes previous char
2591          if spell checking enabled)
2592
2593 2003-07-17 [alfons]     0.9.3claws19
2594
2595         * src/common/hooks.[ch]
2596         * src/plugins/clamav/clamav_plugin.c
2597         * src/plugins/spamassassin/spamassassin.c
2598         * src/plugins/trayicon/trayicon.c
2599                 fix signedness muck 
2600
2601 2003-07-17 [alfons]     0.9.3claws18
2602
2603         * src/procmime.c
2604                 plug memleak
2605
2606 2003-07-17 [alfons]     0.9.3claws17
2607
2608         * src/inc.c
2609                 plug memleak
2610
2611 2003-07-17 [paul]       0.9.3claws16
2612
2613         * src/common/defs.h
2614           src/mainwindow.c
2615           src/manual.[ch]
2616                 add link to the Claws site's FAQ page, after the suggestion
2617                 and patch by Fred Marton <Fred.Marton@uni-bayreuth.de>
2618                 Move url strings to defs.h
2619                 
2620         * src/mainwindow.c
2621                 fix typo to prevent "unknown menu entry" warnings
2622
2623 2003-07-17 [alfons]     0.9.3claws15
2624
2625         * src/folderview.[ch]
2626         * src/summaryview.[ch]
2627         * src/mimeview.[ch]
2628                 plug DnD leaks 
2629
2630 2003-07-17 [paul]       0.9.3claws14
2631
2632         * src/inc.c
2633                 remove two instances of 'GTK_EVENTS_FLUSH' because
2634                 they are unnecessary and probably cause a stack overflow
2635
2636 2003-07-16 [christoph]  0.9.3claws13
2637
2638         * src/mimeview.[ch]
2639                 use an invisible GTK notebook to switch between viewers
2640                 instead of reparenting widgets
2641
2642 2003-07-16 [christoph]  0.9.3claws12
2643
2644         * src/folder.c
2645                 move folder_item_update_freeze() to correct place in
2646                 folder_item_scan_full()
2647
2648 2003-07-16 [paul]       0.9.3claws11
2649
2650         * sync with 0.9.3cvs12
2651                 see ChangeLog 2003-07-14 and 2003-07-15
2652
2653 2003-07-16 [christoph]  0.9.3claws10
2654
2655         * src/imap.[ch]
2656         * src/prefs_account.[ch]
2657                 sync IMAP CRAM-MD5 authentication with sylpheed-main
2658
2659 2003-07-15 [alfons]     0.9.3claws9
2660
2661         * src/main.c
2662                 make --config-dir do something useful
2663
2664 2003-07-15 [alfons]     0.9.3claws8
2665
2666         * src/procmsg.c
2667                 o fix a bug where 'last' didn't really point to the last message
2668                   in the top level list of children, but to the last threaded
2669                   message. 
2670                 
2671                 o clean up and make it easier to sync
2672
2673 2003-07-15 [alfons]     0.9.3claws7
2674
2675         * src/mainwindow.c
2676                 make correct menu items sensitive       
2677
2678 2003-07-14 [alfons]     0.9.3claws6
2679
2680         * src/procmsg.c
2681                 tune the threader so it will not subject-thread any message
2682                 without a subject prefix (this will not thread correctly if 
2683                 a parent is delivered after their childs, but it looks 
2684                 better right now)
2685
2686 2003-07-13 [christoph]  0.9.3claws5
2687
2688         * src/mainwindow.c
2689                 group "Add mailbox *..." menu items in submenu
2690
2691 2003-07-13 [alfons]     0.9.3claws4
2692
2693         * src/summaryview.c
2694                 correct summary_toggle_pressed() signature and make sure
2695                 signal is not passed on
2696
2697 2003-07-13 [alfons]     0.9.3claws3
2698
2699         * src/summaryview.c
2700                 o for now don't pass on keys when they we're handled by 
2701                   ctree::key_press_event
2702                 o clean up
2703
2704 2003-07-13 [alfons]     0.9.3claws2
2705         
2706         * src/main.c
2707                 add command line option "--config-dir" to get the current 
2708                 configuration dir
2709
2710 2003-07-12 [alfons]     0.9.3claws1
2711
2712         * src/matcher.[ch]
2713         * src/matcher_parser_parse.y
2714         * src/prefs_filtering.c
2715         * src/filtering.c
2716                 add "Lock" filter action to lock messages;
2717
2718         * src/filtering.c       
2719                 remove debug_print()    
2720         * src/prefs_filtering.c
2721                 re-organize matcher part 9: 
2722                 make action text entries easily extendible;
2723                 merge widget selection for ACTION_MARK, ACTION_UNMARK, ACTION_LOCK,
2724                 ACTION_UNLOCK, ACTION_MARK_AS_READ, ACTION_MARK_AS_UNREAD
2725
2726 2003-07-12 [paul]
2727
2728         * tools/README
2729                 update old information and add missing
2730                 information
2731
2732 2003-07-12 [paul]       0.9.3claws
2733
2734         * 0.9.3claws released
2735         
2736 2003-07-12 [paul]       0.9.0claws103
2737
2738         * src/Makefile.am
2739                 add addrquery.h
2740
2741 2003-07-12 [melvin]     0.9.0claws102
2742
2743         * src/messageview.c
2744                 Fixed bug #215: Show MIME tab for single text/html messages. 
2745                 
2746 2003-07-12 [paul]       0.9.0claws101
2747
2748         * man/sylpheed.1
2749                 updated
2750
2751 2003-07-12 [paul]       0.9.0claws100
2752
2753         * po/es.po
2754           po/hr.po
2755           po/pl.po
2756           po/sr.po
2757                 update Spanish, Croatian, Polish, Serbian translations.
2758                 submitted by Ricardo Mones Lastra, Dragan, Witold
2759                 Wladyslaw Wojciech Wilk, Urke MMI
2760
2761 2003-07-12 [melvin]     0.9.0claws99
2762
2763         * po/fr.po
2764                 Updated French translations.
2765
2766 2003-07-12 [paul]       0.9.0claws98
2767
2768         * src/addressbook.c
2769                 disable 'Lookup' button as it has no effect
2770
2771 2003-07-11 [alfons]     0.9.0claws97
2772         
2773         * src/summaryview.c
2774                 summary_searchbar_pressed() should return TRUE to signal that
2775                 event was handled. when returning void, the return value passed
2776                 to GTK is actually random, but maybe FALSE, in which case the
2777                 event is handled by parent
2778                 
2779 2003-07-10 [paul]       0.9.0claws96
2780
2781         * ac/missing/gettext.m4
2782                 update to version 0.12
2783
2784 2003-07-10 [paul]       0.9.0claws95
2785
2786         * src/plugins/clamav/clamav_plugin.c
2787                 fix bug where multipart/alternative messages
2788                 would slip through without being scanned
2789
2790 2003-07-10 [christoph]  0.9.0claws94
2791
2792         * src/folder.c
2793                 correct check if folder supports removing when a message is
2794                 moved. if not the message is only copied.
2795
2796         (closes Bug 132 crash on startup in newsgroups folders)
2797
2798 2003-07-09 [alfons]     0.9.0claws93
2799
2800         * configure.ac
2801         * src/common/defs.h
2802                 --with-config-dir (default .sylpheed)
2803
2804 2003-07-09 [christoph]  0.9.0claws92
2805
2806         * configure.ac
2807                 use PKG_CHECK_MODULES to check for gtkmathview
2808                 (version 0.4.2 now required)
2809
2810 2003-07-08 [melvin]     0.9.0claws91
2811
2812         * src/action.c
2813                 Implemented a progress bar that counts the number of completed
2814                 tasks when the action runs more than one command.
2815
2816 2003-07-08 [alfons]     0.9.0claws90
2817
2818         * src/procmsg.c
2819                 if queued message has an invalid Message-Id, don't try to
2820                 find message it refers to (fixes #209 "crash when processing 
2821                 in folder")
2822
2823 2003-07-08 [paul]       0.9.0claws89
2824
2825         * sync with 0.9.3cvs2
2826                 see ChangeLog 2003-07-08
2827
2828 2003-07-08 [match]      0.9.0claws88
2829
2830         * src/ldapctrl.c
2831                 extend LDAP search for first/last name by parsing search term.
2832
2833 2003-07-08 [alfons]     0.9.0claws87
2834
2835         * src/send_message.c
2836                 fix bug #208 "Status message stuck when sending on POP3 account"
2837
2838 2003-07-07 [paul]       0.9.0claws86
2839
2840         * po/hr.po
2841                 new Croatian translation, submitted by
2842                 Dragan <drleskov@inet.hr>
2843
2844 2003-07-07 [paul]       0.9.0claws85
2845
2846         * sync with 0.9.3cvs1
2847                 see ChangeLog 2003-07-07
2848
2849 2003-07-05 [christoph]  0.9.0claws84
2850
2851         * src/Makefile.am
2852         * src/messageview.c
2853         * src/mimeview.[ch]
2854         * src/stock_pixmap.[ch]
2855         * src/pixmaps/messageview_text.xpm              ** NEW **
2856                 move mimeview tabs to the right side and use icons
2857                 instead of text to save some space
2858
2859         (patch by Luke Plant <lukeplant@softhome.net>)
2860
2861 2003-07-05 [christoph]  0.9.0claws83
2862
2863         * src/inc.c
2864                 add NULL pointer checks
2865
2866         (patch by Luke Plant <lukeplant@softhome.net>)
2867         (closes Bug 204 0.9.0 quits on authentication error?!)
2868
2869 2003-07-05 [alfons]     0.9.0claws82
2870
2871         * configure.ac
2872                 take the clue in bug #202 "./configure script - 
2873                 'if test' comparison failure" reported by John Kristoff. 
2874
2875 2003-07-04 [christoph]  0.9.0claws81
2876
2877         * src/plugins/spamassassin/spamassassin.c
2878                 set timeout for spam check
2879
2880 2003-07-04 [christoph]  0.9.0claws80
2881
2882         * src/main.c
2883                 destroy all FolderItems when shutting down to
2884                 allow folders to clean up
2885
2886 2003-07-04 [melvin]     0.9.0claws79
2887
2888         * src/gtk/gtkaspell.c
2889                 Fixed bug #184 "Entering non-ascii character deletes
2890                 previous char if spell checking enabled": this makes
2891                 the spell checking in multibytes (e.g. UTF-8)locales work.
2892                 (Patch by Luke Plant).
2893                 
2894 2003-07-04 [christoph]  0.9.0claws78
2895
2896         * sync with 0.9.2cvs1
2897                 see ChangeLog 2003-06-10
2898
2899 2003-07-04 [paul]       0.9.0claws77
2900
2901         * sync with 0.9.3 release
2902                 see ChangeLog 2003-07-04
2903
2904 2003-07-03 [christoph]  0.9.0claws76
2905
2906         * src/folder.[ch]
2907         * src/imap.c
2908         * src/mbox_folder.c
2909         * src/mh.c
2910         * src/news.c
2911                 move folder_item_get_path() stuff into a folder virtual function
2912
2913         * src/procmsg.c
2914                 use folder_item_fetch_msg() to get message and do not contruct
2915                 the filename from path and number
2916
2917 2003-07-03 [paul]       0.9.0claws75
2918
2919         * sync with 0.9.2cvs12
2920                 see ChangeLog 2003-07-03
2921
2922 2003-07-02 [paul]       0.9.0claws74
2923
2924         * src/messageview.c
2925                 fix text-selection for replying
2926
2927 2003-07-02 [paul]       0.9.0claws73
2928
2929         * sync with 0.9.2cvs11
2930                 see ChangeLog 2003-07-02
2931
2932 2003-07-02 [paul]       0.9.0claws72
2933
2934         * src/procmsg.c
2935                 revert last commit because it breaks more
2936                 than it fixes
2937
2938 2003-07-02 [paul]       0.9.0claws71
2939
2940         * src/procmsg.c
2941                 fix thread by subject/sort by date
2942
2943 2003-07-01 [paul]       0.9.0claws70
2944
2945         * sync with 0.9.2cvs10
2946                 see ChangeLog 2003-07-01
2947
2948 2003-06-30 [paul]       0.9.0claws69
2949
2950         * sync with 0.9.2cvs9
2951                 see ChangeLog 2003-06-30
2952
2953 2003-06-28 [match]      0.9.0claws68
2954
2955         * src/addressbook.c
2956                 fix null ptr.
2957
2958 2003-06-27 [paul]       0.9.0claws67
2959
2960         * sync with 0.9.2cvs7
2961                 see ChangeLog 2003-06-27
2962
2963 2003-06-26 [christoph]  0.9.0claws66
2964
2965         * src/folder.c
2966                 freeze folder updates while a folder is scanned
2967
2968         (closes Bug 185 New message counter)
2969
2970 2003-06-26 [darko]      0.9.0claws65
2971
2972         * src/ldapserver.c
2973                 fix infinite loop when adding a new LDAP server
2974
2975 2003-06-26 [paul]       0.9.0claws64
2976
2977         * sync with 0.9.2cvs6
2978                 see ChangeLog 2003-06-26
2979
2980 2003-06-26 [paul]       0.9.0claws63
2981
2982         * sync with 0.9.2cvs5
2983                 see ChangeLog 2003-06-25 and 2003-06-26
2984
2985 2003-06-25 [match]      0.9.0claws62
2986
2987         * src/addr_compl.c
2988                 Fixed tab/backtab for dropped-down completion list to
2989                 move next/previous field. (close bug 147)
2990
2991 2003-06-25 [christoph]  0.9.0claws61
2992
2993         * src/addr_compl.[ch]
2994         * src/addrindex.[ch]
2995         * src/folderview.c
2996         * src/inc.c
2997         * src/news.c
2998         * src/summaryview.c
2999         * src/toolbar.c
3000                 fix warnings
3001
3002 2003-06-25 [leandro]    0.9.0claws60
3003
3004         * src/compose.c
3005                 o cleanups
3006                 o gray out "Message/Remove references" menu item if not
3007                   replying to a message
3008
3009 2003-06-24 [leandro]    0.9.0claws59
3010
3011         * src/compose.[ch]
3012                 o removed "Message/Create new thread" menu item
3013                 o added "Message/Remove references" menu item
3014                   (it's off by default and will not check anymore
3015                    if the subject changed)
3016
3017 2003-06-23 [alfons]     0.9.0claws58
3018
3019         * src/procmsg.c
3020                 try better grouping messages threaded by subject based on their age.
3021                 still not perfect - because the message tree is not sorted by date.  
3022
3023 2003-06-23 [thorsten]   0.9.0claws57
3024
3025         * src/pop.[ch]
3026                 added mail_receive_hook to allow modifications
3027                 directly after retrieval (e.g. adding headers).
3028
3029 2003-06-23 [paul]       0.9.0claws56
3030
3031         * src/sourcewindow.c
3032                  enable the use of Ctrl+A to select all text in
3033                  the sourcewindow
3034                  Patch submitted by Ivan Francolin Martinez
3035                  <ivanfm@users.sourceforge.net>
3036
3037 2003-06-22 [christoph]  0.9.0claws55
3038
3039         * src/folder.[ch]
3040                 o add notification hook for folder tree changes
3041                 o invoke hooks after folder tree scanning
3042
3043         * src/folderview.[ch]
3044                 register hook for folder tree changes that
3045                 updates the ctree
3046
3047         (there are more places that should be updated, like add, remove 
3048          or move folder)
3049
3050         (closes Bug 164 Crash on rebuild folder tree)
3051         (closes Bug 190 Crash on 'rebuilding folder tree')
3052
3053 2003-06-21 [leandro]    0.9.0claws54
3054
3055         * src/compose.[ch]
3056                 create a new thread if subject changes
3057                 (it's on by default, can be disabled in Message menu)
3058
3059 2003-06-21 [alfons]     0.9.0claws53
3060
3061         * src/summaryview.c
3062                 quiet little compiler
3063
3064 2003-06-21 [christoph]  0.9.0claws52
3065
3066         update gettext stuff to version 0.12
3067
3068 2003-06-19 [alfons]     0.9.0claws51
3069
3070         * src/common/log.c
3071         * src/common/plugin.c
3072                 move defs.h before glib.h to prevent MIN/MAX redefs
3073
3074 2003-06-19 [alfons]
3075
3076         * src/addressbook.c
3077                 translatable
3078
3079 2003-06-19 [match]      0.9.0claws50
3080
3081         * src/addressbook.[ch]
3082         * src/addrindex.[ch]
3083         * src/addr_compl.[ch]
3084         * src/editldap.[ch]
3085         * src/editldap_basedn.[ch]
3086         * src/addritem.[ch]
3087         * src/ldapquery.h
3088                 re-implemented dynamic LDAP search. works without
3089                 slowdown on display sender with addressbook
3090                 option.
3091         * src/addrbook.c
3092                 documented code.
3093
3094 2003-06-19 [paul]       0.9.0claws49
3095
3096         * src/compose.c
3097                 fix Bug #136 'Nonprovided quotation marks crash claws'
3098                 patch submitted by Pawel Pêkala <c0rn@gazeta.pl>
3099
3100 2003-06-19 [alfons]     0.9.0claws48
3101
3102         * src/prefs_common.[ch]
3103         * src/procmsg.c
3104                 restrict threading by subject by checking thread for
3105                 age (prefs_common.thread_by_subject_max_age)
3106
3107 2003-06-18 [christoph]  0.9.0claws47
3108
3109         * src/imap.c
3110                 fix memory leak in imap_cmd_fetch()
3111
3112 2003-06-18 [christoph]  0.9.0claws46
3113
3114         * src/prefs_gtk.c
3115                 fix memory leak in prefs_set_default() when used multiple
3116                 times or after prefs have been read
3117
3118 2003-06-18 [christoph]  0.9.0claws45
3119
3120         * src/common/plugin.c
3121                 fix memory leak in plugin_unload()
3122
3123 2003-06-18 [christoph]  0.9.0claws44
3124
3125         * src/imap.c
3126                 fix memory leak in imap_cmd_ok()
3127
3128 2003-06-18 [christoph]  0.9.0claws43
3129
3130         * src/folder.c
3131                 stop messages that are downloaded from POP3 and added to
3132                 an IMAP inbox from being filtered twice (first by POP3
3133                 and again when IMAP folder is scaned to get the UID of
3134                 the APPEND operation when no UIDPLUS is available)
3135
3136 2003-06-18 [alfons]
3137
3138         * tools/Makefile.am
3139                 phoenix <- firebird     
3140
3141 2003-06-18 [paul]
3142
3143         * tools/launch_phoenix          ** REMOVED **
3144           tools/launch_firebird         ** NEW **
3145                 renamed and edited to reflect the browser's name change from
3146                 'phoenix' to 'firebird'
3147
3148 2003-06-18 [paul]       0.9.0claws42
3149
3150         * sync with 0.9.2cvs2
3151                 see ChangeLog 2003-06-16
3152
3153 2003-06-17 [alfons]     0.9.0claws41
3154
3155         * src/procmsg.c
3156                 prevent threading problems when a node is an ancestor (parent / great parent),
3157                 which mostly happens with circular references (thanks to Phillipe Gramoullé
3158                 for finding an sample set of messages)
3159
3160 2003-06-16 [christoph]  0.9.0claws40
3161
3162         * src/main.c
3163                 don't popup main window on --receive or --receive-all
3164
3165         * src/mainwindow.[ch]
3166         * src/plugins/trayicon/trayicon.c
3167                 allow hiding of main window by clicking on the trayicon
3168                 (doesn't work correctly in seperate window mode and may
3169                  cause unexpected GTK problems I couldn't find yet)
3170
3171         * src/common/ssl.c
3172                 remove incorrect warning
3173
3174 2003-06-15 [alfons]     0.9.0claws39
3175
3176         * src/gtk/gtkstext.c
3177                 don't output debug text;
3178                 #ifdef out print_line() if not debugging (thanks to Martin Wicke
3179                 for pointing this out);
3180
3181 2003-06-14 [alfons]     0.9.0claws38
3182         
3183         * src/messageview.c
3184                 remove printf() and make one if..else comply with coding style
3185
3186 2003-06-14 [alfons]     0.9.0claws37
3187
3188         * AUTHORS
3189                 add Martin Wicke
3190         * src/action.c
3191         * src/messageview.[ch]
3192         * src/summaryview.c
3193                 apply patch #754162 "Quoting messages filtered by actions" submitted
3194                 by Martin Wicke, which allows quoting message body changed by an
3195                 action (Thanks!).
3196
3197 2003-06-13 [alfons]     0.9.0claws36
3198
3199         * src/utils.c
3200                 add several other subject reply prefixes (suggested by Christoph and Ivan Martinez)
3201                 use case insensitive regexp (suggested by Ivan Martinez)
3202
3203 2003-06-13 [christoph]  0.9.0claws35
3204
3205         * configure.ac
3206         * src/plugins/trayicon/Makefile.am
3207         * src/plugins/trayicon/eggtrayicon.[ch]                         ** REMOVE **
3208         * src/plugins/trayicon/trayicon.c
3209         * src/plugins/trayicon/libeggtrayicon/.cvsignore                ** NEW **
3210         * src/plugins/trayicon/libeggtrayicon/Makefile.am               ** NEW **
3211         * src/plugins/trayicon/libeggtrayicon/eggtrayicon.[ch]          ** NEW **
3212         * src/plugins/trayicon/libeggtrayicon/gtk2-funcs.[ch]           ** NEW **
3213         * src/plugins/trayicon/libeggtrayicon/gtkplugxembed.[ch]        ** NEW **
3214         * src/plugins/trayicon/libeggtrayicon/xembed.h                  ** NEW **
3215                 replace my own EggTrayIcon backport with the backport
3216                 used by (l|x)mule and gabber.
3217
3218 2003-06-13 [alfons]     0.9.0claws34
3219
3220         * AUTHORS
3221         * src/common/utils.c
3222                 add Aw: to list of reply prefixes (thanks to Martin Zwickel)
3223
3224 2003-06-13 [alfons]     0.9.0claws33
3225
3226         * src/compose.c
3227                 clean up a little bit
3228
3229 2003-06-12 [alfons]     0.9.0claws32
3230
3231         * src/compose.c
3232                 const correctness fix
3233
3234         * src/common/sylpheed.[ch]
3235                 () -> (void)
3236                 prevent redef MIN/MAX
3237                 
3238         * src/common/utils.[ch]
3239                 () -> (void)
3240
3241 2003-06-12 [melvin]     0.9.0claws31
3242
3243         * src/compose.c
3244                 Updated to take into accounts changes in GtkAspell.
3245
3246 2003-06-12 [alfons]     0.9.0claws30
3247
3248         * src/compose.c
3249         * src/procmsg.c
3250         * src/common/utils.[ch]
3251                 handle reply subject prefixes better (initial 
3252                 suggestion by Robert Story adapted and enhanced 
3253                 using regexps)
3254
3255 2003-06-12 [melvin]     0.9.0claws29
3256
3257         * src/compose.c
3258                 Use new gtkaspell_checkers_strerror() to get the speller's
3259                 error message instead of accessing the (now private)
3260                 checkers structure.
3261                 Minor code clean up
3262
3263         * src/main.c
3264                 Use #ifdef instead of #if for USE_ASPELL
3265                 Use the new spell checkers init/quit functions 
3266
3267         * src/gtk/gtkaspell.c
3268                 Use #ifdef instead of #if for USE_ASPELL
3269                 Moved in the majority of GtkAspell structures that were
3270                 exported before by gtkaspell.h
3271         
3272         * src/gtk/gktaspell.h
3273                 Made gtkaspell.h contain only the necessary data to be
3274                 publicized by moving many structures to gtkaspell.c.
3275                 Enclosed all the declaration in a #ifdef USE_ASPELL #endif
3276                 gtkaspell_checkers_new(): replaced by...
3277                 gtkaspell_checkers_init(): new function for initialization
3278                 gtkaspell_checkers_delete(): replaced by...
3279                 gtkaspell_checkers_quit(): new function
3280                 gtkaspell_checkers_strerror(): new function that returns
3281                 the checker's last error message.
3282                 
3283 2003-06-11 [melvin]     0.9.0claws28
3284
3285         * po/POTFILES.in
3286                 Updated to take into account gtkaspell.c migration to
3287                 ./src/gtk/ (Thanks to Ricardo Mones Lastra for reporting it)
3288
3289 2003-06-10 [alfons]     0.9.0claws27
3290
3291         * src/filtering.[ch]
3292         * src/folder.c
3293         * src/matcher.c
3294         * src/scoring.[ch]
3295                 - try fixing bug #18 (any brave testers?)
3296                 - add more robustness by refusing previously 
3297                   unchecked NULL pointers 
3298
3299 2003-06-10 [alfons]     0.9.0claws26
3300
3301         * src/procmsg.c
3302                 fix bug #176 by don't checking MsgInfos with a NULL msgid 
3303
3304 2003-06-09 [alfons]     0.9.0claws25
3305
3306         * src/prefs_common.c
3307                 fix bug #163 "Icon switching doesnt work properly" by 
3308                 preventing early freeing of prefs_common.pixmap_theme_path.
3309
3310 2003-06-09 [christoph]  0.9.0claws24
3311
3312         * src/gtk/gtkaspell.c
3313                 revert Thorsten's fix and add forgotten g_strdup for
3314                 aspell path (it should not be possible to alter the path a
3315                 GtkASpell uses from outside)
3316
3317 2003-06-09 [thorsten]   0.9.0claws23
3318
3319         * src/gtk/gtkaspell.c
3320                 dont free prefs_common.aspell_path when closing compose
3321
3322 2003-06-08 [colin]      0.9.0claws22
3323
3324         * src/plugins/spamassassin/spamassassin.c
3325                 fix prefs types
3326
3327 2003-06-07 [christoph]  0.9.0claws21
3328
3329         * src/Makefile.am
3330         * src/compose.c
3331         * src/gtkaspell.[ch]            ** REMOVE **
3332         * src/gtk/Makefile.am
3333         * src/gtk/gtkaspell.[ch]        ** NEW **
3334                 o make gtkaspell independent from sylpheed's prefs
3335                 o move gtkaspell.[ch] to gtk directory
3336
3337 2003-06-07 [christoph]  0.9.0claws20
3338
3339         * src/Makefile.am
3340         * src/crash.c
3341         * src/export.c
3342         * src/filesel.[ch]              ** REMOVE **
3343         * src/folder.c
3344         * src/main.[ch]
3345         * src/common/sylpheed.[ch]
3346         * src/gtk/Makefile.am
3347         * src/gtk/filesel.[ch]          ** NEW **
3348         * src/gtk/pluginwindow.c
3349         * src/gtk/sslcertwindow.c
3350                 move filesel.[ch] to gtk directory
3351
3352 2003-06-07 [alfons]     0.9.0claws19
3353
3354         * src/filesel.c
3355                 make (multi) file selection dialog work again (Claws-only)
3356
3357 2003-06-07 [thorsten]   0.9.0claws18
3358
3359         * po/de.po
3360                 fix typos
3361
3362 2003-06-07 [alfons]     0.9.0claws17
3363
3364         * configure.ac
3365         * src/mimeview.c
3366                 detect apache mishap in which case don't include fnmatch.h
3367                 if regex.h is already included
3368
3369 2003-06-06 [christoph]  0.9.0claws16
3370
3371         * configure.ac
3372         * src/mimeview.h
3373                 add check for fnmatch.h and include it when available
3374
3375         * src/mimeview.[ch]
3376                 fix wrong case sensitivity of Content-Types
3377
3378         * src/gtk/Makefile.am
3379                 need the same include paths in gtk directory as in
3380                 common directory because .h files in common can
3381                 include files from these directories, when included
3382                 in gtk's .h or .c files
3383
3384 2003-06-06 [alfons]     0.9.0claws15
3385
3386         * src/mimeview.c
3387         * src/summaryview.c
3388                 make it compile again because of regex.h / fnmatch.h 
3389                 include problems (related to recent mime stuff, can
3390                 someone check this?)
3391
3392 2003-06-06 [thorsten]   0.9.0claws14
3393
3394         * src/folderview.c
3395                 possible use of uninitialized pointer while dragging
3396
3397 2003-06-06 [paul]       0.9.0claws13
3398
3399         * src/compose.c
3400                 fix bug where the insert sig button would be effective
3401                 only when auto_sig was set
3402
3403 2003-06-06 [paul]       0.9.0claws12
3404
3405         * sync with 0.9.2 release
3406
3407 2003-06-02 [paul]       0.9.0claws11
3408
3409         * sync with 0.9.1cvs1
3410                 see ChangeLog 2003-06-02
3411                 
3412         * po/de.po
3413                 update by Jens
3414
3415 2003-06-01 [christoph]  0.9.0claws10
3416
3417         * src/account.c
3418                 don't use substring search to find accounts by email address
3419
3420         (closes Bug 169 Overly loose matching of "From" address)
3421
3422 2003-05-31 [christoph]  0.9.0claws9
3423
3424         * doc-src/rfc2683.txt
3425         * src/imap.c
3426                 limit IMAP command length as recommended in RFC2683
3427                 (message number lists will be split into multiple imap
3428                 sets, the limit of 1000 octets is not a hard limit)
3429
3430         (closes Bug 161 sylpheed-claws exits with segfault when logging
3431          in to certain imap-servers)
3432
3433 2003-05-29 [alfons]     0.9.0claws8
3434
3435         * src/toolbar.[ch]
3436                 add print button (calling summary_print());
3437                 fine tune setting tooltip text;
3438                 (if someone needs other buttons, please take these 
3439                 commits as a guide, instead of bothering us - also
3440                 see 0.8.11claws150) 
3441
3442 2003-05-29 [darko]      0.9.0claws7
3443
3444         * src/compose.c
3445                 fix crash when word wrapping kicks in due to
3446                 changed text by spell checker
3447
3448 2003-05-29 [paul]       0.9.0claws6
3449
3450         * src/compose.c
3451                 fix bug where changing account would insert
3452                 sig even if auto_sig was FALSE
3453                 
3454         * ChangeLog
3455           ChangeLog.jp
3456           INSTALL
3457                 sync with 0.9.1 release
3458
3459 2003-05-28 [christoph]  0.9.0claws5
3460
3461         * src/imap.c
3462                 fix truncation of too long commands
3463
3464         (closes Bug 167 IMAP hangs trying to get envelope
3465          information in imap_get_uncached_messages)
3466
3467 2003-05-27 [paul]       0.9.0claws4
3468
3469         * tools/Makefile.am
3470           tools/maildir2sylpheed.pl     ** NEW FILE **
3471                 add kmail to sylpheed mailbox conversion script
3472
3473 2003-05-27 [paul]       0.9.0claws3
3474
3475         * sync with 0.9.0cvs10
3476                 see ChangeLog 2003-05-26
3477
3478 2003-05-26 [paul]       0.9.0claws2
3479
3480         * sync with 0.9.0cvs9
3481                 see ChangeLog 2003-05-26
3482
3483 2003-05-24 [paul]       0.9.0claws1
3484
3485         * sync with 0.9.0cvs8
3486                 see ChangeLog 2003-05-23
3487
3488 2003-05-24 [paul]       0.9.0claws
3489
3490         * version 0.9.0claws released
3491
3492 2003-05-24 [paul]       0.8.11claws177
3493
3494         * src/plugins/dillo-viewer/Makefile.am
3495           src/plugins/traycon/Makefile.am
3496                 add missing files
3497                 
3498         * po/bg.po
3499           po/en_GB.po
3500           po/es.po
3501           po/it.po
3502           po/pt_BR.po
3503           po/ru.po
3504           po/sr.po
3505                 update Bulgarian, British English, Spanish, Italian, 
3506                 Brazilian Portuguese, Russian, and Serbian translations, 
3507                 submitted by George Danchev, [me], Ricardo Mones Lastra,
3508                 André Filipe de Assunção e Brito, Alessandro Maestri, 
3509                 Ruslan N. Balkin, and Urke MMI
3510
3511 2003-05-23 [melvin]     0.8.11claws176
3512
3513         * po/fr.po
3514                 Updated French translations
3515
3516 2003-05-22 [paul]       0.8.11claws175
3517
3518         * src/Makefile.am
3519           src/addrbook.[ch]
3520           src/addrcache.[ch]
3521           src/addr_compl.[ch]
3522           src/adressbook.[ch]
3523           src/addrindex.[ch]
3524           src/addritem.[ch]
3525           src/editaddress.c
3526           src/editgroup.c
3527           src/editldap_basedn.c
3528           src/editldap.c
3529           src/jpilot.c
3530           src/vcard.c
3531                 revert to get ldap into it previous working state
3532                 
3533         * po/zh_TW.Big5.po
3534                 new Taiwanese translation,
3535                 submitted by Tsu-Fan Cheng <tscheng@ic.sunysb.edu>
3536
3537 2003-05-22 [christoph]  0.8.11claws174
3538
3539         * src/plugins/spamassassin/libspamc.[ch]
3540                 sync libspamc with SpamAssaain release 2.55
3541
3542 2003-05-22 [paul]       0.8.11claws173
3543
3544         * sync with 0.9.0cvs7
3545                 see ChangeLog 2003-05-22
3546                 
3547         * src/summaryview.c
3548                 revert change in 0.8.11claws172: follow
3549                 Hiroyuki's decision and that's the end of it.
3550
3551 2003-05-21 [paul]       0.8.11claws172
3552
3553         * src/summaryview.c
3554                 fix discrepency between open_unread_on_enter
3555                 and always_show_msg
3556
3557 2003-05-21 [paul]       0.8.11claws171
3558
3559         * sync with 0.9.0cvs6
3560                 see ChangeLog 2003-05-21
3561
3562 2003-05-21 [paul]       0.8.11claws170
3563
3564         * sync with 0.9.0cvs5
3565                 see ChangeLog 2003-05-21
3566
3567 2003-05-20 [paul]       0.8.11claws169
3568
3569         * sync with 0.9.0cvs4
3570                 see ChangeLog 2003-05-20
3571                 fixes bug #152, 'encoding of IMAP folders names'
3572
3573 2003-05-20 [paul]       0.8.11claws168
3574
3575         * sync with 0.9.0cvs3
3576                 see ChangeLog 2003-05-20
3577                 
3578         * src/tools/convert_mbox.pl
3579                 minor change in the comments, submitted by Fred Marton
3580
3581 2003-05-19 [paul]       0.8.11claws167
3582
3583         * src/plugins/clamav/Makefile.am
3584           configure.ac
3585                 link clamav_lib to the plugin and not to the main program
3586
3587 2003-05-19 [christoph]
3588
3589         * src/Makefile.am
3590                 add -export-dynamic for linking
3591
3592 2003-05-19 [paul]       0.8.11claws166
3593
3594         * sync with 0.9.0cvs1
3595                 see ChangeLog 2003-05-19
3596
3597 2003-05-19 [paul]       0.8.11claws165
3598
3599         * src/inc.c
3600                 fix 'pop before smtp' timeout
3601
3602 2003-05-18 [alfons]     0.8.11claws164
3603
3604         * src/prefs_matcher.c
3605                 put "execute" action command line ("expression") in edit box
3606
3607 2003-05-18 [christoph]  0.8.11claws163
3608
3609         * src/mimeview.[ch]
3610         * src/plugins/dillo_viewer/dillo_viewer.c
3611         * src/plugins/image_viewer/viewer.c
3612         * src/plugins/mathml_viewer/mathml_viewer.c
3613                 let a viewer have a list of Content-Types
3614
3615 2003-05-18 [paul]       0.8.11claws162
3616
3617         * src/prefs_filtering.c
3618                 add 'Recipient' label for FORWARD, FORWARD_AS_ATTACHMENT,
3619                 and REDIRECT actions
3620
3621 2003-05-17 [christoph]
3622
3623         * README.claws
3624                 o remove dynamic signatures that was syned with main
3625                 o add infos about no longer "build in" image viewer
3626                 o update bugtracker URL
3627
3628 2003-05-17 [christoph]  0.8.11claws161
3629
3630         * src/folder.c
3631         * src/folderview.c
3632         * src/imap.c
3633                 don't use imap_scan_folder anymore. Instead call folder_item_scan
3634                 for every folder after rebuilding the folder tree.
3635
3636         (closes Bug 19 imap_scan_folder() computes incorrectly number of new
3637          messages)
3638
3639 2003-05-17 [christoph]  0.8.11claws160
3640
3641         * src/imap.c
3642                 don't use STATUS command on current folder to check for
3643                 content changes. imap_cmd_ok() now tracks changes to
3644                 folder and number of existing messages.
3645
3646 2003-05-17 [paul]       0.8.11claws159
3647
3648         * src/plugins/clamav/clamav_plugin.c
3649                 remove unnecessary debug_print
3650
3651 2003-05-16 [thorsten]   0.8.11claws158
3652
3653         * src/plugins/demo.c
3654                 included missing intl.h
3655
3656 2003-05-16 [paul]       0.8.11claws157
3657
3658         * po/POTFILES.in
3659                 remove non-existant entries
3660         
3661         * src/plugins/clamav/clamav_plugin.c
3662           src/plugins/clamav/clamav_plugin_gtk.c
3663           src/plugins/dillo_viewer/dillo_prefs.c
3664           src/plugins/dillo_viewer/dillo_viewer.c
3665                 gettextise
3666
3667 2003-05-16 [christoph]  0.8.11claws156
3668
3669         * po/POTFILES.in
3670                 include plugin .c files for translation until I
3671                 find a better solution to have plugins have their
3672                 own textdomain
3673         * src/plugins/demo/demo.c
3674         * src/plugins/image_viewer/plugin.c
3675         * src/plugins/mathml_viewer/mathml_viewer.c
3676         * src/plugins/spamassassin/spamassassin.c
3677         * src/plugins/spamassassin/spamassassin_gtk.c
3678         * src/plugins/trayicon/trayicon.c
3679                 add gettext macros for plugin name and description
3680
3681 2003-05-16 [paul]
3682
3683         * sync with 0.9.0
3684
3685 2003-05-16 [paul]       0.8.11claws155
3686
3687         * sync with lastest 0.9.0pre1
3688                 see ChangeLog 2003-05-16
3689
3690 2003-05-15 [paul]       0.8.11claws154
3691
3692         * sync with latest 0.9.0pre1
3693                 see ChangeLog 2003-05-14 and 2003-05-15
3694
3695 2003-05-14 [christoph]  0.8.11claws153
3696
3697         * src/plugins/image_viewer/viewer.c
3698         * src/plugins/image_viewer/viewer.glade         ** NEW **
3699         * src/plugins/image_viewer/viewerprefs.c
3700                 make it possible to disable the autoload function in the
3701                 imageviewer again
3702
3703 2003-05-14 [christoph]  0.8.11claws152
3704
3705         * src/folder.c
3706                 fix folder update after adding a message
3707
3708 2003-05-13 [alfons]     0.8.11claws151
3709
3710         * src/common/session.c
3711                 remove debug traces
3712                 
3713         * src/addrcache.[ch]
3714         * src/filtering.[ch]
3715         * src/folder.[c]
3716         * src/gtkaspell.[ch]
3717         * src/imap.[ch]
3718         * src/mbox_folder.[ch]
3719         * src/mh.[ch]
3720         * src/mimeview.h
3721         * src/msgcache.[ch]
3722         * src/news.[ch]
3723         * src/passphrase.[ch]
3724         * src/prefs_common.[ch]
3725         * src/prefs_gtk.[ch]
3726         * src/procmsg.c
3727         * src/scoring.[ch]
3728                 be pedantic; (in prototypes () implies (int))
3729
3730 2003-05-13 [alfons]     0.8.11claws150
3731
3732         * src/prefs_toolbar.[ch]
3733         * src/summaryview.[ch]
3734         * src/toolbar.[ch]
3735                 change misleading text in toolbar prefs;
3736                 add toolbar action for ignore thread (toggles ignore thread flag);
3737                 clean up a little bit;
3738
3739 2003-05-12 [paul]
3740
3741         * tools/convert_mbox.pl
3742                 bug fixed by Fred Marton
3743
3744 2003-05-12 [paul]
3745
3746         * sync with 0.9.0pre1
3747
3748 2003-05-09 [paul]       0.8.11claws149
3749
3750         * sync with 0.8.11cvs43
3751                 see ChangeLog 2003-05-09
3752
3753 2003-05-08 [christoph]  0.8.11claws148
3754
3755         * src/imap.[ch]
3756                 o use CAPABILIY as first command and check for PREAUTH
3757                   information in the response to it
3758                 o rewrite all imap_cmd_* functions to use an IMAPSession
3759                   instead of a SockInfo as parameter
3760                 o do STARTTLS after fetching and checking the server
3761                   capabilities
3762
3763 2003-05-08 [paul]       0.8.11claws147
3764
3765         * tools/Makefile.am
3766           tools/README
3767           tools/convert_mbox.pl         ** NEW FILE **
3768                 add mbox conversion script. Submitted by 
3769                 Fred Marton <Fred.Marton@uni-bayreuth.de>
3770
3771 2003-05-07 [christoph]
3772
3773         * doc-src/glade.txt
3774         * src/gtk/pluginwindow.glade
3775         * src/plugins/image_viewer/viewerprefs.glade
3776         * src/plugins/spamassassin/spamassassin_gtk.glade
3777                 add glade files for user interfaces and a description how
3778                 to use glade to create the sylpheed code
3779
3780 2003-05-07 [paul]       0.8.11claws146
3781
3782         * sync with 0.8.11cvs41
3783                 see ChangeLog 2003-05-07
3784
3785 2003-05-06 [christoph]  0.8.11claws145
3786
3787         * src/main.c
3788         * src/plugins/image_viewer/viewer.c
3789                 fix usage of imlib in imageviewer plugin
3790
3791         * src/gtk/prefswindow.c
3792                 handle window close event correctly
3793
3794 2003-05-06 [paul]       0.8.11claws144
3795
3796         * src/common/ssl.c
3797                 fix typo introduced in sync
3798
3799 2003-05-06 [paul]       0.8.11claws143
3800
3801         * sync with 0.8.11cvs39
3802                 see ChangeLog 2003-05-06
3803
3804 2003-05-06 [paul]       0.8.11claws142
3805
3806         * AUTHORS
3807           po/cs.po
3808                 updated Czech translation, submitted by 
3809                 Radek Vybiral <Radek.Vybiral@vsb.cz>
3810                 
3811         * src/plugins/clamav/clamav_plugin_gtk.c
3812                 clean up
3813
3814 2003-05-03 [alfons]     0.8.11claws141
3815
3816         * src/compose.[ch]
3817                 make paste as quotation work even when the call to 
3818                 text_inserted() was deferred (fixes bug #140 "Paste 
3819                 as quotation does not work when using "external" 
3820                 clipboard")
3821
3822 2003-05-03 [thorsten]   0.8.11claws140
3823
3824         * src/addrquery.h
3825           src/ldapquery.h
3826           src/mainwindow.c
3827                 removed C++ comments
3828         * src/addr_compl.c
3829                 function with non-int retval/param used before
3830                 implementation/declaration
3831
3832 2003-05-02 [paul]       0.8.11claws139
3833
3834         * src/addr_compl.[ch]
3835           src/addressbook.[ch]
3836           src/addrindex.c
3837           src/summaryview.c
3838                 revert match's changes to (finally) remove the bug where
3839                 opening a folder causes massive slowdown when using the 
3840                 'Display sender using address book' option
3841
3842 2003-05-01 [melvin]     0.8.11claws138
3843
3844         * src/plugins/dillo_viewer/dillo_prefs.[ch]
3845         * src/plugins/dillo_viewer/dillo_viewer.c
3846                 Fixed bug where "Cancel" button from prefs issued
3847                 warnings.
3848                 Comply a little more to coding style
3849
3850 2003-05-01 [paul]       0.8.11claws137
3851
3852         * sync with 0.8.11cvs38
3853                 see ChangeLog 2003-05-01
3854
3855 2003-05-01 [paul]       0.8.11claws136
3856
3857         * po/bg.po
3858                 updated by George Danchev
3859
3860 2003-04-30 [christoph]  0.8.11claws135
3861
3862         * src/plugins/dillo_viewer/dillo_prefs.c
3863         * src/plugins/image_viewer/viewerprefs.c
3864         * src/plugins/spamassassin/spamassassin_gtk.c
3865                 remove gtk_widget_ref() calls for widgets in
3866                 glade code
3867
3868 2003-04-30 [paul]       0.8.11claws134
3869
3870         * src/addrindex.c
3871                 ok, this time a better fix for the bug where opening folder
3872                 has massive slowdown when using the 'Display sender using 
3873                 address book' option
3874
3875 2003-04-30 [paul]       0.8.11claws133
3876
3877         * src/addrindex.c
3878                 revert the 'fix' of 0.8.11claws128 because it doesn't fix it
3879         
3880 2003-04-30 [melvin]     0.8.11claws132
3881
3882         New: Dillo plugin preferences (patch by Dimitar Haralanov)
3883
3884         * src/plugins/dillo_viewer/dillo_prefs.[ch]     *** NEW ***
3885                 Preferences for the dillo plugin
3886         * src/plugins/dillo_viewer/dillo_viewer.c
3887                 Support for preferences
3888         * src/plugins/dillo_viewer/Makefile.am
3889                 Added dillo_prefs.[ch]
3890
3891 2003-04-30 [alfons]     0.8.11claws131
3892
3893         * src/common/plugin.[ch]
3894                 see? this ANSI C'fication immediately gives us type
3895                 checking for free.
3896
3897 2003-04-30 [alfons]     0.8.11claws130
3898
3899         * src/common/plugin.[ch]
3900         * src/plugins/clamav/clamav_plugin.[ch]
3901         * src/plugins/clamav/clamav_plugin_gtk.c
3902         * src/plugins/demo/demo.c
3903         * src/plugins/dillo_viewer/dillo_viewer.c
3904         * src/plugins/image_viewer/plugin.c
3905         * src/plugins/image_viewer/viewer.[ch]
3906         * src/plugins/image_viewer/viewerprefs.[ch]
3907         * src/plugins/mathml_viewer/mathml_viewer.c
3908         * src/plugins/spamassassin/spamassassin.[ch]
3909         * src/plugins/spamassassin/spamassassin_gtk.c
3910         * src/plugins/trayicon/trayicon.c
3911                 clean up
3912
3913 2003-04-30 [alfons]     0.8.11claws129
3914
3915         * src/common/utils.c
3916                 make is_ascii_str() fail gracefully when NULL pointer
3917                 is passed
3918
3919 2003-04-30 [paul]       0.8.11claws128
3920
3921         * src/addrindex.c
3922                 fix bug where opening folder has massive slowdown when
3923                 using the 'Display sender using address book' option
3924
3925 2003-04-30 [paul]       0.8.11claws127
3926
3927         * src/plugins/clamav/clamav_plugin.c
3928           src/plugins/clamav/clamav_plugin_gtk.c
3929           src/plugins/demo/demo.c
3930           src/plugins/dillo_viewer/dillo_viewer.c
3931           src/plugins/image_viewer/plugin.c
3932           src/plugins/mathml_viewer/mathml_viewer.c
3933           src/plugins/spamassassin/spamassassin.c
3934           src/plugins/spamassassin/spamassassin_gtk.c
3935           src/plugins/trayicon/trayicon.c
3936                 get rid of eye-hurting function signatures
3937
3938 2003-04-30 [paul]       0.8.11claws126
3939
3940         * src/plugins/trayicon/trayicon.c
3941                 add description
3942                 
3943         * src/mimeview.c
3944                 be more descriptive
3945
3946 2003-04-30 [paul]       0.8.11claws125
3947
3948         * configure.ac
3949                 arrange the plugins in reverse alphabetical order
3950                 
3951         * src/plugins/clamav/clamav_plugin.[ch]
3952           src/plugins/clamav/clamav_plugin_gtk.c
3953                 rename some params
3954                 resize max_size window
3955                 re-arrange the order of some gui elements
3956                 improve descriptions
3957         
3958         * src/plugins/image_viewer/plugin.c
3959           src/plugins/mathml_viewer/mathml_viewer.c
3960                 add descriptions
3961                 
3962         * src/plugins/spamassassin/spamassassin_gtk.c
3963                 resize max_size window
3964                 re-arrange the order of some gui elements
3965                 
3966         * src/messageview.c
3967           src/mimeview.c
3968                 correct typos
3969
3970 2003-04-30 [alfons]     0.8.11claws124
3971
3972         * src/imap.c
3973                 fix a leak found while browsing Martin Kluge's 
3974                 valgrind log (Claws only)
3975
3976 2003-04-29 [darko]      0.8.11claws123
3977
3978         * src/gtk/gtkstext.h
3979                 include wchar.h if it is available, fixes compilation
3980                 on HP-UX systems
3981
3982 2003-04-29 [melvin]     0.8.11claws122
3983
3984         * src/prefs_actions.c
3985                 Improved help text of Actions' syntax
3986
3987 2003-04-28 [paul]       0.8.11claws121
3988
3989         * src/action.c
3990                 a better fix for the crash when performing an action
3991                 on a mime part
3992
3993 2003-04-28 [paul]       0.8.11claws120
3994
3995         * src/action.c
3996                 fix crash when performing an action on a
3997                 mime part
3998
3999 2003-04-28 [paul]       0.8.11claws119
4000
4001         * sync with 0.8.11cvs36
4002                 see ChangeLog 2003-04-28
4003
4004 2003-04-27 [paul]       0.8.11claws118
4005
4006         * more sync with 0.8.11cvs35
4007                 see ChangeLog 2003-04-25
4008
4009 2003-04-26 [christoph]  0.8.11claws117
4010
4011         * src/folder.c
4012                 fix remove virtual check
4013
4014 2003-04-26 [paul]       0.8.11claws116
4015
4016         * src/messageview.c
4017                 fix return-receipt, make it work again
4018
4019 2003-04-26 [paul]       0.8.11claws115
4020
4021         * src/mimeview.c
4022                 restore double-clicking of the [application/pgp-signature 
4023                 (Select "Check signature" to check)] line in the message view,
4024                 broken in recent sync
4025
4026 2003-04-26 [christoph]  0.8.11claws114
4027
4028         * src/folder.c
4029                 check if remove virtual really exists before
4030                 calling the function
4031
4032 2003-04-25 [match]      0.8.11claws113
4033
4034         * src/addrindex.c
4035         * src/addrbook.c
4036         * src/ldapquery.[ch]
4037         * src/ldapctrl.[ch]
4038                 fix memleak.
4039         * src/ldapserver.[ch]
4040                 fix memleak. fix segfault.
4041                 plug a Claws memleak
4042
4043 2003-04-25 [alfons]     0.8.11claws112
4044
4045         * src/folder.c
4046                 plug a Claws memleak
4047
4048 2003-04-25 [alfons]     0.8.11claws111
4049
4050         * src/common/session.c
4051                 plug a memleak
4052
4053 2003-04-25 [paul]       0.8.11claws110
4054
4055         * sync with 0.8.11cvs35
4056                 see ChangeLog 2003-04-24 and 2003-04-25
4057                 
4058         * src/gtk/pluginwindow.c
4059                 correct another strange float value
4060
4061 2003-04-24 [christoph]  0.8.11claws109
4062
4063         * src/folder.c
4064                 freeze folder item updates when unsetting new flags
4065
4066         * src/gtk/pluginwindow.c
4067                 correct strange float value
4068
4069 2003-04-23 [paul]       0.8.11claws108
4070
4071         * sync with 0.8.11cvs33
4072                 see ChangeLog 2003-04-23
4073
4074 2003-04-22 [paul]       0.8.11claws107
4075
4076         * src/Makefile.am
4077           src/messageview.c
4078           src/mimeview.c
4079           src/pgptext.[ch]      ** REMOVED **
4080                 remove pgptext.[ch] as its not used any more
4081
4082 2003-04-22 [paul]       0.8.11claws106
4083
4084         * sync with 0.8.11cvs31
4085                 see ChangeLog 2003-04-21 and 2003-04-22
4086
4087 2003-04-21 [alfons]     0.8.11claws105
4088
4089         * src/main.c
4090                 No access to GTK structures if we're a spawned child
4091                 (and clean up code a little bit...) Should fix #126.
4092
4093 2003-04-21 [melvin]     0.8.11claws104
4094
4095         * src/plugins/dillo_viewer/README
4096                 Improved slightly the text.
4097
4098 2003-04-21 [melvin]     0.8.11claws103
4099
4100         * src/plugins/dillo_viewer/README *** NEW ***
4101                 Added a README file for the Dillo plugin
4102
4103 2003-04-20 [paul]
4104
4105         * tools/README
4106           tools/outlook2sylpheed.pl
4107                 updated and improved by Ricardo Mones Lastra
4108
4109 2003-04-18 [oliver]     0.8.11claws102
4110
4111         * src/inc.c 
4112         * src/prefs_account.h
4113                 remove Pop3SessionType (used by selective download)
4114         * src/prefs_toolbar.c
4115                 enable set Default Toolbar button
4116
4117 2003-04-18 [paul]       0.8.11claws101
4118
4119         * sync with 0.8.11cvs29
4120                 see ChangeLog 2003-04-18
4121
4122 2003-04-17 [paul]       0.8.11claws100
4123
4124         * src/prefs_common.[ch]
4125           src/summaryview.c
4126                 remove 'Open next message on deletion' option,
4127                 as the same effect can now be achieved via the
4128                 'Always open messages in summary when selected'
4129                 option.
4130
4131 2003-04-17 [paul]       0.8.11claws99
4132
4133         * sync with 0.8.11cvs28
4134                 see ChangeLog 2003-04-17
4135
4136 2003-04-17 [christoph]  0.8.11claws98
4137
4138         * ac/spamassassin.m4
4139         * src/plugins/spamassassin/libspamc.[ch]
4140         * src/plugins/spamassassin/utils.[ch]
4141                 sync libspamc with SpamAssassin project
4142
4143 2003-04-17 [christoph]  0.8.11claws97
4144
4145         * src/common/socket.h
4146         * src/gtk/sslcertwindow.h
4147                 rename old USE_SSL to USE_OPENSSL
4148
4149 2003-04-17 [paul]       0.8.11claws96
4150
4151         * src/prefs_common.h
4152                 use gulong for P_COLOR so that it compiles/runs on
4153                 64-bit systems. Patch submitted by James Noyes
4154                 <jnoyes-claws@retrogeeks.com>
4155                 
4156         * po/de.po
4157                 updated by Jens
4158
4159 2003-04-17 [paul]       0.8.11claws95
4160
4161         * sync with 0.8.11cvs27
4162                 see ChangeLog 2003-04-16
4163
4164 2003-04-15 [paul]       0.8.11claws94
4165
4166         * src/prefs_common.[ch]
4167                 rearrange to stop the window getting too long:
4168                         move Receive dialog stuff to Receive tab
4169                         move Send dialog to Send tab
4170                         remove Dialogs frame
4171                 rename 'Open messages in summary with cursor keys' to
4172                 'Always open messages in summary when selected', as its
4173                 more appropriate
4174
4175 2003-04-15 [paul]       0.8.11claws93
4176
4177         * src/prefs_common.[ch]
4178           src/summaryview.c
4179                 add new option '/Interface/Open next message on deletion'
4180
4181 2003-04-15 [paul]       0.8.11claws92
4182
4183         * src/summaryview.[ch]
4184                 add /Mark/Lock and /Mark/Unlock to the pop-up
4185                 menu. Patch submitted by Ivan Francolin Martinez
4186                 <ivanfm@users.sourceforge.net>
4187
4188 2003-04-15 [paul]       0.8.11claws91
4189
4190         * sync with 0.8.11cvs24
4191                 see ChangeLog 2003-04-15
4192
4193 2003-04-14 [jens]       0.8.11claws90
4194
4195         * updated German translation and some corrections from
4196                 Roland Bless <bless@tm.uka.de>
4197
4198 2003-04-14 [paul]       0.8.11claws89
4199
4200         * sync with 0.8.11cvs22
4201                 see ChangeLog 2003-04-14
4202
4203 2003-04-13 [paul]       0.8.11claws88
4204
4205         * src/plugins/clamav/clamav_plugin.c
4206                 fix memory leaks
4207                 clean up
4208
4209 2003-04-12 [paul]       0.8.11claws87
4210
4211         * src/plugins/clamav/clamav_plugin.c
4212                 activate enable/disable archive scanning option
4213                 
4214         * src/plugins/clamav/.cvsignore         ** NEW FILE **
4215
4216 2003-04-12 [paul]       0.8.11claws86
4217
4218         * src/plugins/Makefile.am
4219           src/plugins/clamav/Makefile.am                ** NEW FILE **
4220           src/plugins/clamav/README                     ** NEW FILE ** 
4221           src/plugins/clamav/clamav_plugin.[ch]         ** NEW FILES **
4222           src/plugins/clamav/clamav_plugin_gtk.c        ** NEW FILE **
4223                 add Clam AntiVirus plugin
4224
4225 2003-04-12 [paul]       0.8.11claws85
4226
4227         * sync with 0.8.11cvs21
4228                 see ChangeLog 2003-04-11
4229
4230 2003-04-11 [paul]       0.8.11claws84
4231
4232         * po/es.po
4233                 update Spanish translation. Submitted by Ricardo
4234                 Mones Lastra.
4235
4236 2003-04-10 [christoph]  0.8.11claws83
4237
4238         * src/mbox.c
4239                 fix typo that did not move unfiltered mails to destination
4240                 folder
4241
4242         (closes Bug 115 Sylpheed 0.8.11claws81 does not deliver mail correctly
4243          when filtering from spool)
4244
4245 2003-04-10 [christoph]  0.8.11claws82
4246
4247         * src/imap.c
4248                 use BODY.PEEK instead of BODY in in message fetch operation
4249                 to make sure the IMAP server does not set the \Seen flag for
4250                 messages. Sylpheed does that later itself, when the message
4251                 is opened in sylpheed
4252
4253         (closes Bug 111 Claws destroys unread marks)
4254
4255 2003-04-09 [oliver]     0.8.11claws81
4256         
4257         * src/folder.c
4258                 fix crash in folder_destroy
4259         * README.claws
4260                 remove selective download
4261
4262 2003-04-09 [christoph]  0.8.11claws80
4263
4264         * src/imap.c
4265                 fix crash in imap_get_msginfo() when then fetched message
4266                 is not found
4267
4268         (closes Bug 110 Crash during mail composition)
4269
4270 2003-04-08 [christoph]  0.8.11claws79
4271
4272         * src/folder.c
4273         * src/prefs_account.c
4274                 Filter new messages that are found in an INBOX folder
4275                 when 'Filter messages on receiving' is enabled in the
4276                 Folder's AccountPrefs. This allows to use Sylpheed's
4277                 filtering engine for IMAP folders where messages are
4278                 added to the INBOX by a MTA
4279
4280 2003-04-08 [paul]       0.8.11claws78
4281
4282         * src/procmsg.h
4283                 clean up after last commit
4284
4285 2003-04-08 [paul]       0.8.11claws77
4286
4287         * sync with 0.8.11cvs20
4288                 see ChangeLog 2003-04-07 and 2003-04-08
4289
4290 2003-04-07 [christoph]  0.8.11claws76
4291
4292         * src/filtering.[ch]
4293         * src/inc.[ch]
4294         * src/mbox.c
4295         * src/procmsg.[ch]
4296                 add procmsg_msginfo_filter() to execute filtering actions
4297
4298 2003-04-06 [christoph]  0.8.11claws75
4299
4300         * src/imap.c
4301                 use IMAPSet for imap_cmd_store() and imap_cmd_envelope()
4302
4303 2003-04-06 [christoph]  0.8.11claws74
4304
4305         * src/common/utils.[ch]
4306                 add g_int_compare() function for slist sorting
4307
4308         * src/imap.c
4309                 fetch all MsgInfos with one command in imap_get_msginfos()
4310                 using an imap set with a list of ranges
4311
4312         * src/news.c
4313                 use new g_int_compare() function
4314
4315 2003-04-06 [thorsten]   0.8.11claws73
4316
4317         * src/mh.c
4318                 corrected implementation of mh_folder_destroy()
4319
4320 2003-04-05 [christoph]  0.8.11claws72
4321
4322         * src/account.c
4323         * src/folder.[ch]
4324         * src/folderview.c
4325         * src/imap.c
4326         * src/inc.c
4327         * src/main.c
4328         * src/mainwindow.c
4329         * src/mbox_folder.c
4330         * src/mh.c
4331         * src/mimeview.h
4332         * src/msgcache.[ch]
4333         * src/news.c
4334         * src/procmime.h
4335         * src/procmsg.[ch]
4336         * src/setup.c
4337         * src/gtk/gtkutils.c
4338                 o rename structure field names class and new to klass and
4339                   new_msgs, to allow including files in C++
4340                 o add 'extern "C"' block to some header files
4341                 o add MsgInfoList and MsgNumberList as alias for GSList for
4342                   developers to know what type of list is expected
4343
4344         * src/plugins/image_viewer/plugin.c
4345         * src/plugins/image_viewer/viewer.[ch]
4346         * src/plugins/image_viewer/viewerprefs.[ch]
4347                 rename function names to prevent conflicts
4348
4349 2003-04-05 [paul]       0.8.11claws71
4350
4351         * sync with 0.8.11cvs18
4352                 see ChangeLog 2003-04-03 and 2003-04-04
4353
4354 2003-04-02 [christoph]  0.8.11claws70
4355
4356         * src/folder.[ch]
4357         * src/imap.[ch]
4358         * src/mbox_folder.[ch]
4359         * src/mh.[ch]
4360         * src/news.[ch]
4361                 o Make all virtual folder functions private
4362                 o remove unused folder code
4363
4364         * src/common/socket.[ch]
4365         * src/summaryview.c
4366                 fix warnings
4367
4368 2003-03-30 [alfons]     0.8.11claws69
4369
4370         * src/send_message.c
4371                 remove two debug traces and see if people still report
4372                 errors
4373
4374 2003-03-30 [alfons]     0.8.11claws68
4375
4376         * src/send_message.c
4377         * src/commons/session.c
4378                 add more debug traces
4379
4380 2003-03-30 [christoph]  0.8.11claws67
4381
4382         * src/folder.c
4383                 change processing folder name from .processing to processing
4384
4385         * src/common/ssl.c
4386                 disable SSL certificate check because it causes Xlib error
4387                 when the child process want's to open an GTK window
4388
4389 2003-03-30 [christoph]  0.8.11claws66
4390
4391         * src/folder.c
4392                 don't use default folder for processing folder item because
4393                 it can be a non local folder
4394
4395         (fixes bug reported by Stephen Lewis <slewis@paradise.net.nz>)
4396
4397 2003-03-30 [alfons]     0.8.11claws65
4398
4399         * src/send_message.c
4400                 try fixing crashes when sending messages: my gcc 2.95.4 seems 
4401                 to generate bad code for 'send_send_data_progressive': When
4402                 called from 'send_send_data_finished', the 'data' pointer is
4403                 cleared just before the assignment to the dialog pointer
4404
4405 2003-03-29 [christoph]  0.8.11claws64
4406
4407         * src/common/prefs.h
4408         * src/plugins/image_viewer/Makefile.am
4409         * src/plugins/image_viewer/plugin.c
4410         * src/plugins/image_viewer/viewer.[ch]
4411         * src/plugins/image_viewer/viewerprefs.[ch]     ** NEW **
4412                 add PrefsPage for ImageViewer
4413
4414 2003-03-28 [thorsten]   0.8.11claws63
4415
4416         * src/common/session.c
4417                 added some comments
4418
4419 2003-03-28 [pa