fdfffeb9615338a1acbec315b44cf7e2490b859f
[claws.git] / ChangeLog
1 2003-12-04
2
3         * src/codeconv.c: conv_get_code_conv_func(): return conv_latintodisp
4           only if src_charset and current charset is identical or current
5           one is multibyte (fixes display of ISO-8859-5 on KOI8-R locale etc.).
6
7 2003-11-25
8
9         * autogen.sh: don't include m4 directory in aclocal.
10         * intl/libgnuintl.h: removed from cvs.
11         * po/.cvsignore: added stamp-po and remove-potcdate.sed.
12
13 2003-11-24
14
15         * upgraded to gettext-0.12.1.
16
17 2003-11-24  gettextize  <bug-gnu-gettext@gnu.org>
18
19         * Makefile.am (SUBDIRS): Add m4.
20         (ACLOCAL_AMFLAGS): New variable.
21         (EXTRA_DIST): Add config.rpath.
22         * configure.in (AC_OUTPUT): Add m4/Makefile.
23
24 2003-11-21
25
26         * configure.in: added check for d_type member in struct dirent.
27         * src/mh.c: mh_scan_folder(): use d->d_type if available.
28           mh_get_uncached_msgs(): removed redundant stat().
29           mh_parse_msg(): return NULL if not a regular file.
30           mh_scan_tree_recursive(): use d->d_type if available.
31         * src/utils.[ch]:
32           dirent_is_regular_file()
33           dirent_is_directory(): new. Use d->d_type to determine the type
34           of entry if available.
35           remove_dir_recursive(): use dirent_is_directory().
36
37 2003-11-14
38
39         * src/folder.h: added 'updated' flag to FolderItem.
40         * src/folderview.[ch]: folderview_update_all_updated(): new. It
41           updates all updated folders.
42         * src/imap.c: set FolderView::update flag on changes of contents.
43         * src/main.c: send_queue()
44           src/mainwindow.c: send_queue_cb(): code cleanup.
45         * src/mh.c: code cleanup.
46           mh_scan_folder(): correctly count new messages.
47         * src/procmsg.[ch]: code cleanup.
48           procmsg_open_cache_file(): new.
49           procmsg_open_mark_file(): enable read/write/append.
50           procmsg_send_queue(): correctly choose outbox for accounts.
51         * src/send_message.[ch]: send_get_queue_info(): get a queue
52           information from queued messages.
53           send_queue_info_free(): free QueueInfo.
54           send_message_queue(): take QueueInfo as an argument instead of file.  
55         * src/summaryview.c: summary_write_cache(): code cleanup.
56
57 2003-11-10
58
59         * src/compose.c: compose_redirect_write_headers(): correctly add
60           Resent-Cc: header.
61
62 2003-11-05
63
64         * src/imap.c: imap_get_msg_list(): fallback to FETCH command if SEARCH
65           command to get flags failed.
66           imap_search_flags(): returns UID array and flags hash table using
67           SEARCH command.
68           imap_fetch_flags(): returns UID array and flags hash table using
69           FETCH command.
70
71 2003-10-28
72
73         * src/summary_search.c: summary_search_execute(): fixed 'Select all
74           matched' when backward search is enabled.
75           Made the backward search button insensitive when 'select all
76           matched' is enabled.
77
78 2003-10-15
79
80         * version 0.9.7
81
82 2003-10-15
83
84         * src/imap.c: imap_scan_tree(): check the existence of root directory
85           with LIST instead of STATUS.
86
87 2003-10-07
88
89         * src/send_message.c: fixed format string bug (exploitable by
90           malicious SMTP server) when calling alertpanel_error()
91           (thanks to Georgi Guninski).
92
93 2003-10-03
94
95         * src/folder.[ch]
96           src/imap.[ch]
97           src/mh.[ch]
98           src/news.[ch]: refactoring of the folder system (based on the claws'
99           implementation).
100         * src/account.c
101           src/foldersel.c
102           src/folderview.c
103           src/mainwindow.c
104           src/messageview.c
105           src/procmsg.c
106           src/setup.c
107           src/summaryview.c: use FOLDER_TYPE() macro at every place.
108
109 2003-09-17
110
111         * version 0.9.6
112
113 2003-09-17
114
115         * src/addressbook.c:
116           addressbook_folder_load_person()
117           addressbook_folder_load_group(): sort the ctree after the end of
118           the loop (fixes performance issue when many addresses are in one
119           folder) (thanks to christian mock).
120
121 2003-09-16
122
123         * src/folderview.c: folder_init(): code cleanup.
124         * src/summaryview.c: summary_init(): check if boldfont is
125           successfully loaded.
126         * src/grouplistdialog.c: use proper callback for delete_event (thanks
127           to Takuro Ashie).
128         * src/imap.c: allow zero-length messages.
129         * src/recv.c: recv_bytes_write(): return immediately if size == 0.
130
131 2003-09-16
132
133         * src/folderview.c: folderview_init(): if font can't be loaded, fall
134           back to gtk default (fixes crashes on startup). Also removed the
135           redundant code.
136
137 2003-09-15
138
139         * src/compose.c: compose_insert_sig(): insert signature at the
140           current cursor position on manual operation.
141
142 2003-09-11
143
144         * src/summaryview.c: summary_key_pressed(): don't ignore delete key
145           even if the main window is locked.
146
147 2003-09-10
148
149         * src/action.c: improved synchronous action exit code (fixes long
150           delay after action exit on RH9) (thanks to Melvin).
151         * src/stringtable.[ch]: string_table_insert_string(): modified the
152           code to remove the warning "dereferencing type-punned pointer will
153           break strict-aliasing rules".
154           Use const gchar * instead of gchar * for arguments.
155
156 2003-09-05
157
158         * src/utils.[ch]: generate_mime_boundary(): a new function to create
159           MIME boundary (moved from rfc2015.c).
160           Removed more special characters.
161           Use random() instead of lrand48() which is obsolete.
162           Added an argument for prefix to prevent duplication.
163           Always add "=_" as a counter-QP sequence to simplify the code.
164         * src/rfc2015.c:
165           rfc2015_decrypt_message()
166           rfc2015_encrypt()
167           rfc2015_sign(): fixed a bug that didn't handle continuous content
168           lines correctly.
169         * src/compose.c
170           src/rfc2015.c: use generate_mime_boundary().
171
172 2003-09-05
173
174         * src/folderview.c:
175           folderview_delete_folder_cb()
176           folderview_remove_mailbox_cb(): close currently displayed folder
177           before removing FolderItem (fixes crash on deleting folder).
178         * src/folder.h
179           src/imap.[ch]: imap_scan_tree()
180           src/mh.[ch]: mh_scan_tree(): return -1 when scanning failed.
181         * src/summaryview.c: summary_clear_all(): also clear the message view.
182         * src/imap.c: imap_close(): fail if the specified folder is not
183           selected.
184           imap_scan_tree(): check if the specified root directory exist, and
185           try creating it if not.
186           imap_parse_list(): output warning if a server returns error.
187           imap_find_namespace_from_list(): support not slash-delimited path.
188           imap_status(): don't return values if they're not specified.
189
190 2003-09-02
191
192         * sylpheed.spec.in: fixed a typo.
193
194 2003-09-02
195
196         * version 0.9.5
197
198 2003-09-01
199
200         * src/inc.[ch]
201           src/main.c
202           src/mainwindow.c
203           src/prefs_common.[ch]: added the receive dialog's option to
204           display the dialog only on manual receiving, and the
205           RECV_DIALOG_ACTIVE option was removed.
206
207 2003-09-01
208
209         * src/compose.c: compose_write_headers(): also replace ':' in the
210           MIME boundary with '_' (as a workaround for broken servers).
211
212 2003-08-28
213
214         * src/imap.c: imap_scan_tree_recursive(): fixed compile error.
215
216 2003-08-27
217
218         * src/prefs_filter.c: added 'Top' and 'Bottom' button.
219
220 2003-08-26
221
222         * src/folder.[ch]: folder_item_remove_children(): new. It removes
223           all children under a FolderItem.
224         * src/folderview.c: folderview_rescan_tree(): modified the message.
225         * src/imap.c: imap_scan_tree(), imap_scan_tree_recursive(): reuse
226           the previous FolderItem objects.
227
228 2003-08-25
229
230         * src/folder.[ch]: added a reference to its own GNode in FolderItem.
231           folder_item_remove(): free all FolderItem's.
232           folder_tree_destroy(): use folder_item_remove().
233         * src/folderview.c: folderview_sort_folders(): keep the order even
234           if special folders' parents are different.
235         * src/imap.c: imap_scan_tree_recursive(): fixed a memory leak.
236         * src/mh.c: mh_scan_tree(): preserve the previous FolderItem's.
237           mh_remove_missing_folder_items(): scan the directories and remove
238           missing folders.
239           mh_scan_tree_recursive(): reuse the previous FolderItem objects.
240
241 2003-08-20
242
243         * src/mainwindow.c: always reflect window size changes.
244         * src/folderview.c: folderview_init()
245           src/summaryview.c: summary_init(): realize the widget before
246           creating pixmaps.
247         * src/prefs_common.[ch]: remember the folder and mesage view's
248           visibility.
249
250 2003-08-07
251
252         * src/mainwindow.c
253           src/prefs_common.[ch]: remember the size and position of
254           separated views.
255           main_window_set_widgets(): fixed a bug that the hidden items on
256           the header view were shown when changing the view type.
257           Instead of setting the window size, set the each view's size.
258
259 2003-08-01
260
261         * src/compose.c: compose_select_account(): don't append signature
262           on redirect mode.
263           compose_insert_sig(): don't insert "\n\n" if signature string
264           doesn't exist. Always insert signature at the end of message.
265
266 2003-08-01
267
268         * improved sylpheed.spec.in (thanks to Andre Oliveira da Costa).
269
270 2003-07-31
271
272         * minor code cleanups for the folder system.
273         * src/compose.c: compose_queue(), compose_draft_cb(): code cleanup.
274         * src/folder.c: code cleanups.
275         * src/imap.c
276           src/mh.c: calculate message numbers inside the functions.
277         * src/procmsg.c: procmsg_set_flags(): calculate message numbers.
278         * src/summaryview.[ch]: don't calculate and preserve message numbers
279           inside SummaryView,
280
281 2003-07-30
282
283         * src/folder.[ch]
284           src/imap.[ch]
285           src/mh.[ch]
286           src/procmsg.c
287           src/summaryview.c: renamed *_msgs_with_dest() to *_msgs().
288
289 2003-07-29
290
291         * src/imap.[ch]: use CAPABILITY to use protocol extentions.
292           imap_greeting(): parse initial server greeting. Also support
293           PREAUTH response.
294           imap_add_msgs()
295           imap_cmd_append(): use APPENDUID responses if UIDPLUS is supported.
296
297 2003-07-28
298
299         * src/imap.c: imap_get_flag_str(): fixed a buffer overrun.
300
301 2003-07-25
302
303         * version 0.9.4
304
305 2003-07-25
306
307         * src/main.c: main(): don't save config files on startup.
308
309 2003-07-25
310
311         * src/imap.c:
312           imap_get_msg_list(): removed redundant UID SEARCH ALL when not
313           using cache.
314           Unset MSG_NEW flag if \Seen is set.
315           imap_get_uncached_messages(): fetch all messages if both first_uid
316           and last_uid is 0.
317
318 2003-07-24
319
320         * src/imap.c: revamped the implementation so that it always
321           exactly reflects the state of IMAP4 servers.
322           imap_get_msg_list(): examine the state of messages using
323           UID SEARCH commands.
324           imap_delete_cached_message(): removes single message cache.
325           imap_get_uid(): removed.
326           imap_cmd_search(): new. It issues UID SEARCH command and returns
327           an array of UIDs.
328           imap_cmd_gen_recv(): made the length of strings unrestricted.
329           imap_get_uid_table(): returns a hash table from UID array.
330
331 2003-07-24
332
333         * src/folder.[ch]
334           src/imap.[ch]
335           src/mh.[ch]
336           src/news.[ch]: added Folder::close() method.
337         * src/summaryview.c: summary_clear_list(): call folder_item_close().
338
339 2003-07-23
340
341         * flags are now taken over when copying messages into IMAP folders
342           from others.
343         * src/imap.[ch]
344           src/mh.[ch]
345           imap_add_msg()
346           imap_add_msgs()
347           mh_add_msg()
348           mh_add_msgs(): flags can be also specified when adding files.
349         * src/folder.[ch]: added assertions for virtual functions.
350         * src/procmsg.[ch]: procmsg_get_message_file_list(): return the list
351           of MsgFileInfo.
352           procmsg_message_file_list_free(): new.
353
354 2003-07-23
355
356         * src/procmsg.h: changed MsgPermFlags and MsgTmpFlags from enum to
357           guint32 for portability (thanks to Alfons).
358         * src/imap.c: imap_add_msgs(): removed redundant unlink().
359
360 2003-07-22
361
362         * src/session.[ch]:
363           session_read_msg_cb()
364           session_read_data_cb(): fixed a bug that ran into infinite loop
365           if connection was closed by remote host (thanks to Yoichi Imai).
366           Added SESSION_EOF state to SessionState.
367           session_is_connected(): new.
368         * src/inc.[ch]: inc_put_error()
369           src/send_message.c: send_put_error(): also put log messages.
370
371 2003-07-18
372
373         * more optimization of IMAP4.
374         * src/folder.[ch]: added a method add_msgs() that adds multiple files
375           to a folder.
376           Removed redundant scan() for the operations of FolderItem.
377         * src/imap.[ch]: implemented Folder::add_msgs() and optimized move
378           and copy from other Folder instances.
379         * src/mh.[ch]: implemented Folder::add_msgs() and cleaned up the code.
380           mh_fetch_msg(): scan folder if required.
381         * src/procmsg.[ch]: procmsg_get_message_file_list(): returns file
382           list from message list.
383         * src/summaryview.c: don't remove MSG_MARKED flags on
384           delete/move/copy operation.
385           summary_display_msg_full(): removed redundant message fetching.
386
387 2003-07-17
388
389         * optimized move/copy/delete/mark operations of IMAP4 by using
390           sequence set when issuing commands (adopted claws' implementation
391           with cleaning it up).
392         * src/imap.[ch]:
393           imap_set_message_flags()
394           imap_cmd_envelope()
395           imap_cmd_copy()
396           imap_cmd_store(): take sequence set string instead of UID number.
397           imap_do_copy_msgs_with_dest(): optimized by using sequence set.
398           imap_cmd_fetch(): use BODY.PEEK instead of BODY.
399           imap_remove_all_msg()
400           imap_set_message_flags(): use FLAGS.SILENT instead of FLAGS.
401         * src/compose.c
402           src/summaryview.c: use imap_msg_list_{set,unset}_perm_flags()
403           instead of issuing commands for each message.
404
405 2003-07-15
406
407         * src/inc.c
408           src/prefs_account.[ch]
409           src/send_message.c
410           src/session.[ch]: added an option to enable/disable non-blocking
411           SSL.
412
413 2003-07-15
414
415         * src/compose.c: compose_attach_append(): display message's subject
416           when attaching message/rfc822 file.
417
418 2003-07-14
419
420         * src/session.[ch]:
421           session_recv_msg()
422           session_recv_data()
423           session_read_msg_cb()
424           session_read_data_cb(): optimized by removing sock_peek() and
425           buffering received data in user space (correctly implemented
426           this time).
427
428 2003-07-11
429
430         * src/session.c: reverted the previous change because it couldn't
431           handle data receiving after messages correctly.
432
433 2003-07-11
434
435         * src/session.c:
436           session_recv_msg()
437           session_read_msg_cb(): optimized by removing sock_peek() and
438           buffering messages in user space.
439
440 2003-07-11
441
442         * src/imap.[ch]: refactored.
443           Changed all functions that have SockInfo arguments to take
444           IMAPSession.
445           Made imap_cmd_count an instance variable: IMAPSession::cmd_count.
446           imap_open(): only establish TCP (or SSL) connection.
447           imap_session_new(): process greeting and authentication here.
448
449 2003-07-10
450
451         * src/imap.[ch]: implemented CRAM-MD5 authentication, and made code
452           cleanups.
453         * src/prefs_account.[ch]: added option menu for IMAP4 authentication
454           type in Receive tab, and hide other protocols' frames.
455
456 2003-07-10
457
458         * src/mainwindow.c: send_queue_cb(): don't scan folder twice if
459           error occurred.
460         * src/procmsg.c: procmsg_send_queue(): return number of sent
461           messages.
462
463 2003-07-09
464
465         * src/mainwindow.c:
466           main_window_set_toolbar_sensitive()
467           main_window_set_menu_sensitive(): removed the locking of file
468           operations while receiving mail.
469
470 2003-07-09
471
472         * src/folder.[ch]: folder_item_remove_msg(): take MsgInfo as an
473           argument instead of message number.
474         * src/imap.[ch]: imap_remove_msg(): reimplemented using
475           imap_remove_msgs().
476         * src/mh.[ch]: mh_do_move(): reimplemented using
477           mh_do_move_msgs_with_dest().
478           mh_copy_msg(): reimplemented using mh_copy_msgs_with_dest().
479         * src/procmsg.c: procmsg_send_queue(): modified to use message list.
480
481 2003-07-08
482
483         * src/rfc2015.c: rfc2015_is_encrypted(): check MimeInfo::mime_type
484           to suppress some warnings.
485         * src/logwindow.c: log_window_append(): don't scroll up when trimming
486           lines.
487
488 2003-07-07
489
490         * src/compose.c: add 'Content-Disposition: inline' to a text/plain
491           part when using PGP/MIME signing.
492
493 2003-07-04
494
495         * version 0.9.3
496
497 2003-07-04
498
499         * src/defs.h: changed UI_REFRESH_INTERVAL from 40msec to 50msec.
500         * src/session.c: session_read_msg_cb(): make it always fail if
501           sock_read() returns by error.
502         * src/socket.[ch]: sock_check(): handle exceptional SSL condition.
503           sock_has_pending_data(): removed.
504           Removed debug output.
505         * src/send_message.c: send_recv_message(): display messages to
506           statusbar.
507
508 2003-07-03
509
510         * src/inc.[ch]: update received message number on CList while
511           retrieving.
512         * src/session.c: session_read_data_cb(): optimized by removing
513           g_malloc() and memcpy().
514
515 2003-07-02
516
517         * src/socket.[ch]: sock_add_watch(): new. It monitors SSL by original
518           watch functions (otherwise uses g_io_add_watch()).
519         * src/session.[ch]: removed previous workarounds, and replaced
520           g_io_add_watch() with sock_add_watch().
521
522 2003-07-01
523
524         * src/socket.[ch]: added sock_has_pending_data() which returns TRUE
525           if socket has pending data.
526         * src/session.c: session_recv_msg(), session_recv_data(): check if
527           socket has pending data and call the callbacks immediately in that
528           case (fixes the hang at ESMTP EHLO on SSL).
529
530 2003-06-30
531
532         * src/socket.c: check return value in SSL functions.
533
534 2003-06-30
535
536         * src/mimeview.c: mimeview_init(): initialize TextView to prevent
537           slowdown caused by GTK+ themes (thanks to Yuri Arapov).
538
539 2003-06-27
540
541         * src/session.c: session_read_data_cb(): clear Session::read_data_buf
542           before calling callbacks.
543
544 2003-06-26
545
546         * src/socket.c: made socket connection protocol independent.
547         * src/session.c: removed debug g_print().
548         * src/inc.c: made status bar output less verbose, and show counter
549           on main window's progressbar.
550
551 2003-06-26
552
553         * src/session.c: added missing #include <errno.h>.
554
555 2003-06-25
556
557         * src/session.[ch]: reimplemented the Session system with non-blocking
558           I/O to solve the performance and the code design issue.
559         * src/socket.[ch]: added sock_connect_async() and
560           sock_connect_async_cancel() to enable asynchronous connection.
561           sock_peek(): modified the implementation.
562         * src/pop.c: optimized the receiving of the responses of
563           UIDL/LIST/RETR.
564
565 2003-06-18
566
567         * src/procmsg.c: procmsg_get_thread_tree(): prevent threading problems
568           when a node is an ancestor (parent / great parent), which mostly
569           happens with circular references (thanks to Phillipe Gramoulle
570           for finding an sample set of messages, and Alfons for the patch).
571
572 2003-06-16
573
574         * src/pop3.c: pop3_get_uidl_table(): return empty hash table even if
575           UIDL list is not found (fixes inability of initial retrieval).
576
577 2003-06-10
578
579         * src/main.c: added the option '--status-full' which shows the status
580           of each folder specified. The option '--status' also takes
581           following arguments for folders (thanks to Yuri Arapov).
582         * src/folder.[ch]: folder_get_status(): new. it takes the array of
583           folders as the argument and returns their status.
584           folder_count_total_msgs(): removed.
585
586 2003-06-06
587
588         * version 0.9.2
589
590 2003-06-06
591
592         * src/filesel.c
593           src/foldersel.c
594           src/inputdialog.c: use gtk_main_iteration() instead of gtk_main()
595           to prevent abort when a button is double-clicked.
596
597 2003-06-02
598
599         * src/addr_compl.c: invalidate_address_completion(): check if
600           g_completion_list is NULL (thanks to Kazuhiro NISHIYAMA).
601
602 2003-06-02
603
604         * src/pop.c: pop3_session_recv_data_finished(): fixed a bug that
605           deleted messages that is to be kept on server (thanks to Tristan
606           Wallis).
607
608 2003-05-27
609
610         * version 0.9.1
611
612 2003-05-26
613
614         * src/socket.[ch]:
615           sock_set_io_timeout(): new. It sets the timeout interval.
616           sock_gdk_input_add(): removed since it's not used anymore.
617         * src/prefs_common.[ch]: added an option to set the timeout parameter.
618
619 2003-05-26
620
621         * src/action.c: fixed a bug that didn't hide user string in
622           create_io_dialog() (thanks to Markus Amersdorfer).
623           Removed ChildInfo::type and added Children::action_type.
624
625 2003-05-23
626
627         * src/inc.c: inc_start(): ask every password before retrieving.
628           Don't popup the redundant error dialog.
629           inc_account_mail()
630           inc_all_account_mail()
631           inc_progress_dialog_set_list(): separated account list display
632           into a new function.
633           inc_progress_dialog_set_label()
634           inc_recv_data_finished()
635           inc_recv_message(): properly update the dialog when RETR finished.
636
637 2003-05-22
638
639         * src/imap.c:
640           imap_modified_utf7_to_locale()
641           imap_locale_to_modified_utf7(): fixed compilation failure when not
642           using iconv().
643
644 2003-05-21
645
646         * src/procmime.c: procmime_scan_multipart_message(): fixed parsing
647           of message/rfc822 parts.
648
649 2003-05-21
650
651         * src/pop.c: pop3_ok(): detect timeout error.
652
653 2003-05-20
654
655         * src/imap.c: imap_locale_to_modified_utf7(): fixed the encoding bug
656           when locale strings include '+'.
657           imap_modified_utf7_to_locale()
658           imap_locale_to_modified_utf7(): at least escape/unescape '&' even
659           if iconv() is not supported.
660
661 2003-05-20
662
663         * src/compose.c:
664           compose_insert_sig()
665           compose_get_signature_str(): include separator in signature string.
666           Don't insert separator if signature file is not found.
667           Disabled use of implicit default signature path (~/.signature) when
668           sig_path is NULL.
669
670
671 2003-05-20
672
673         * src/codeconv.c
674           src/gtkshruler.c
675           src/news.c
676           src/procmsg.c
677           src/quote_fmt_parse.y
678           src/smtp.c: suppress warnings that gcc-3.3 issues.
679           src/stringtable.c: use string_entry_free().
680
681 2003-05-19
682
683         * src/compose.c: compose_insert_sig(): fixed the bug that always
684           appended signature separator if signature file was not found.
685           compose_get_signature_str(): fixed the bug that caused crash if
686           signature file cannot be opened.
687
688 2003-05-16
689
690         * version 0.9.0
691
692 2003-05-16
693
694         * src/session.c: session_recv_msg(): removed debug print.
695
696 2003-05-15
697
698         * src/imap.c:
699           imap_parse_atom()
700           imap_get_header()
701           imap_cmd_fetch(): check for data size that servers return (fixes
702           vulnerability found in BugTraq).
703
704 2003-05-14
705
706         * src/addr_compl.c: get_complete_address()
707           src/addressbook.c: addressbook_format_address()
708           src/compose.c: QUOTE_IF_REQUIRED(): quote if name contains
709           characters that is not defined in atext (RFC 2822, 3.2.4. Atom).
710         * src/main.c: main(): set colormap and visual to solve color problem
711           in Solaris (thanks to Markus Schwarzenberg).
712
713 2003-05-12
714
715         * version 0.9.0pre1
716
717 2003-05-12
718
719         * src/prefs_account.c: temporarily removed POP before SMTP option.
720
721 2003-05-09
722
723         * src/prefs_common.[ch]: changed the description of "Open message when
724           cursor keys are pressed on summary".
725         * src/summaryview.c: summary_show(): open message when always_show_msg
726           is TRUE.
727
728 2003-05-09
729
730         * src/logwindow.[ch]: restrict the maximum lines of the log messages
731           to reduce the memory usage.
732
733 2003-05-07
734
735         * src/compose.c: compose_insert_sig(): fixed a crash when signature
736           string contains illegal sequence.
737         * src/utils.[ch]: changed get_wcs_len() to get_mbs_len() for accuracy.
738
739 2003-05-07
740
741         * major refactoring of MIME structure.
742         * src/procmime.c: procmime_scan_message(): decrypt message if
743           gpgme is enabled. Create multipart tree only if content-type is
744           multipart/* or message/rfc822.
745           procmime_scan_multipart_message(): fixed the scanning of
746           message/rfc822 part.
747         * src/action.c: parse_append_msgpart()
748           src/messageview.c: messageview_show()
749           src/mimeview.c: mimeview_show_message(): use procmime_scan_message()
750           instead of procmsg_open_message() and procmime_scan_mime_header().
751           mimeview_set_multipart_tree(): conform to the new MIME structure.
752         * src/textview.c: textview_show_part(): removed unnecessary check.
753         * src/procmsg.c: procmsg_open_message_decrypted(): fixed the file
754           pointer when decryption failed.
755
756 2003-05-06
757
758         * src/ssl.c: ssl_init_socket_with_method(): replaced log_warning()
759           by g_warning(), and log_print() by debug_print().
760         * src/pop.[ch]: added an error code PS_NOTSUPPORTED, and retry with
761           LAST if UIDL is not supported.
762
763 2003-05-01
764
765         * src/codeconv.c: conv_get_code_conv_func(): convert to EUC-JP only
766           if it is the current locale encoding when dest_charset_str is NULL.
767
768 2003-05-01
769
770         * src/action.c: execute_actions(): fixed crash when no text widget
771           is selected (thanks to Paul and Melvin).
772         * src/action.c
773           src/prefs_actions.c: added missing reference to Claws team in the
774           copyright.
775
776 2003-04-28
777
778         * src/session.c:
779           session_send_msg()
780           session_send_data(): fixed a memory leak and data sending bug.
781         * src/send_message.c:
782           send_message_smtp(): fixed focus management.
783
784 2003-04-25
785
786         * src/smtp.[ch]: set the response string to SMTPSession::error_msg
787           if error occurred.
788         * src/send_message.c: show error dialog if error occurred.
789         * src/main.c: send_queue()
790           src/mainwindow.c: send_queue_cb(): don't show error dialog here.
791
792 2003-04-25
793
794         * src/session.c: session_close(): kill child process only if
795           state is not SESSION_DISCONNECTED.
796         * src/send_message.c: send_cancel_button_cb()
797           src/inc.c: inc_cancel(): don't set Session::state to
798           SESSION_DISCONNECTED.
799         * src/prefs.[ch]: modified the names of prefs_write_*().
800         * src/address.[ch]: removed.
801
802 2003-04-24
803
804         * src/compose.c: compose_template_apply(): overwrite recipients.
805
806 2003-04-23
807
808         * src/procheader.c: procheader_date_parse(): removed debug print.
809         * src/session.c: changed every g_print to debug_print.
810           session_child_input(): removed unrequired session_close() (it'll
811           be closed anyway after returning FALSE).
812         * src/send_message.c: send_message_smtp(): changed g_print to
813           debug_print.
814
815 2003-04-23
816
817         * src/procheader.c: procheader_procheader_date_parse(): don't add
818           local timezone offset if timezone is unknown.
819           Made the Y2K workaround code to follow RFC 2822.
820           procheader_scan_date_string(): workaround for date strings which
821           don't have timezone specification.
822         * src/utils.c: remote_tzoffset_sec(): return -1 if timezone is
823           unknown.
824
825 2003-04-22
826
827         * src/action.[ch]: refactored. Also fixed a bug on MIME mode, and
828           some memory leaks on error.
829           action_update_msgview_menu(): new.
830         * src/messageview.[ch]: added "Tools/Actions" menu. Keep window list.
831           messageview_get_selected_mime_part(): returns MimeInfo of selected
832           part when MessageView is in MIME mode.
833         * src/mimeview.[ch]: mimeview_get_selected_part(): returns MimeInfo
834           of selected part.
835         * src/summaryview.[ch]: summary_get_selected_msg_list(): returns
836           MsgInfo list of selected messages.
837
838 2003-04-21
839
840         * src/prefs_filter.[ch]: include original message's headers as
841           the preset keywords. Modified the sizes of the widgets.
842         * src/utils.[ch]: added str_case_equal() and str_case_hash() for
843           case-insensitive hash.
844
845 2003-04-18
846
847         * src/procmsg.c: procmsg_get_filter_keyword(): added X-Sequence to
848           auto-detected headers.
849         * src/action.[ch]
850           src/prefs_actions.c
851           src/compose.c
852           src/mainwindow.c: modified function names.
853           get_user_string(): Use input_dialog() instead of its own
854           implementation.
855
856 2003-04-17
857
858         * src/codeconv.[ch]: conv_encode_header(): don't include '(' and ')'
859           in encoded strings if addr_field is TRUE.
860         * src/compose.c: compose_convert_header(): added a flag 'addr_field'.
861
862 2003-04-16
863
864         * src/prefs_actions.[ch]: separated action execution routine into
865           action.[ch].
866
867 2003-04-16
868
869         * src/prefs_actions.c: minor code cleanup.
870
871 2003-04-16
872
873         * src/codeconv.[ch]: conv_iconv_strdup(): fixed the handling of
874           EILSEQ.
875
876 2003-04-16
877
878         * src/inc.c:
879           inc_recv_data_progressive()
880           inc_recv_data_finished()
881           inc_recv_message()
882           send_recv_message()
883           send_send_data_progressive()
884           send_send_data_finished(): added assertion.
885
886 2003-04-16
887
888         * src/codeconv.[ch]: conv_iconv_strdup(): fixed potential memory
889           corruption bug.
890
891 2003-04-16
892
893         * src/codeconv.[ch]: conv_iconv_strdup(): don't include nul character
894           in source buffer since it messed up some encoding conversion (like
895           UTF-7).
896
897 2003-04-15
898
899         * src/procmsg.c: procmsg_get_filter_keyword(): unfold headers and
900           extract ID from List-Id header.
901         * src/utils.[ch]: extract_one_parenthesis_with_skip_quote(): removed.
902           extract_list_id_str(): extract ID string from List-Id header.
903
904 2003-04-15
905
906         * src/prefs_actions.c: merged from the claws branch. Fixes several
907           bugs and adds some features.
908
909 2003-04-14
910
911         * src/compose.c: compose_parse_header(): fixed a bug that unnecessary
912           linebreaks were included on reediting.
913         * src/imap.c
914           src/pop.c: fixed typos: 'occured'.
915
916 2003-04-11
917
918         * src/compose.[ch]: implemented auto signature replacement on
919           changing accounts.
920           compose_insert_sig(): added a flag to replace current signature.
921           compose_get_signature_str(): new. It returns signature string.
922           compose_insert_command_output(): removed.
923           compose_select_account(): call compose_insert_sig() on account
924           change.
925           compose_destroy(): fixed a memory leak of UndoMain object.
926           Compose::sig_str: new. It stores current signature string.
927         * src/gtkutils.[ch]: gtkut_stext_find(): new.
928           Renamed gtk_stext_clear() to gtkut_stext_clear().
929         * src/utils.[ch]: get_wcs_len(): returns wide-character length of
930           multibyte string.
931           normalize_newlines(): converts CR+LF and CR into LF.
932           get_command_output(): returns command output.
933
934 2003-04-08
935
936         * src/procmsg.[ch]: procmsg_get_filter_keyword(): new. It returns
937           filter keyword for messages.
938         * src/summaryview.c: summary_filter_open(): use
939           procmsg_get_filter_keyword().
940         * src/messageview.c: create_filter_cb(): implemented.
941
942 2003-04-07
943
944         * src/inc.c:
945           inc_start()
946           inc_put_error(): display server responses on error.
947         * src/pop.[ch]: added Pop3Session::error_msg, and set server responses
948           on error.
949
950 2003-04-04
951
952         * src/messageview.[ch]: separated the forced charset of message view
953           in separate window from the main window.
954           src/textview.c:
955           textview_show_message()
956           textview_show_part()
957           textview_add_part(): use MessageView::forced_charset if specified.
958
959 2003-04-03
960
961         * src/mainwindow.c: modified File menu a bit.
962         * src/menu.[ch]: added functions to handle item factory rc strings.
963         * src/messageview.[ch]: added a menu, and made it take over main
964           window's menu shortcuts.
965           added msginfo which is duplicated on display to MessageView.
966         * src/prefs_common.c: prefs_keybind_apply_clicked(): use
967           menu_factory_clear_rc().
968
969 2003-03-28
970
971         * send_message.c: send_message_smtp():
972           re-enabled forcing of SMTP AUTH method.
973           Clear temporary password if authentication failed.
974         * smtp.c: output warning to log and set SMTPSession::error_val
975           if error occurs.
976         * smtp.h: changed error value to enum. Added SMTPSession::error_val.
977         * src/mbox.c: proc_mbox(): force updating of folder.
978
979 2003-03-28
980
981         * src/pop.h: changed error value to enum.
982         * src/pop.c: pop3_retr_recv(): return PS_IOERR when inc_drop_message()
983           failed.
984           pop3_ok(): return appropriate error value based on current state.
985           Output warning to log if error occurs.
986
987 2003-03-27
988
989         * src/nntp.[ch]
990           src/news.[ch]: refactored. Remove NNTPSockInfo and use NNTPSession
991           in nntp.c.
992
993 2003-03-27
994
995         * src/inc.c: inc_pop3_session_do(): retrun appropriate error if
996           Session::state == SESSION_ERROR.
997         * po/POTFILES.in: removed src/automaton.c and src/send.c.
998           Added src/send_message.c.
999
1000 2003-03-26
1001
1002         * src/pop.[ch]
1003           src/session.c: fixed breakage of POP3 retrieval.
1004           session_recv_data_from_sock_unescape(): read until terminator
1005           appears and also return the actual size.
1006
1007 2003-03-25
1008
1009         * src/automaton.[ch]: removed.
1010         * src/session.c: removed some of the debug output.
1011         * src/smtp.c: smtp_session_recv_msg(): workaround in case server
1012           returns EHLO-style response to HELO command.
1013           Ignore all multiline responses except for EHLO since they are
1014           allowed for any command.
1015
1016 2003-03-25
1017
1018         * src/session.[ch]
1019           src/pop.c: fixed retrieval of messages which contain dot-escaped
1020           lines.
1021           session_recv_data(): added a flag for unescape.
1022           session_recv_data_from_sock_unescape(): new. It receives message
1023           for each line and unescapes dot-escaped lines.
1024           Removed the previous workaround.
1025         * src/defs.h: decreased UI_REFRESH_INTERVAL to 40 msec.
1026
1027 2003-03-25
1028
1029         * src/pop.[ch]: workaround for brekage of retrieval when given size
1030           and actual one is different.
1031
1032 2003-03-24
1033
1034         * src/pop.c: pop3_retr_eom_recv(): ignore invalid end of message
1035           since some servers sometimes return incorrect message size.
1036         * src/news.c: news_session_new(): zero clear NNTPSession object.
1037           Don't initialize Session::sock with nntp_sock->sock to prevent
1038           double-free of SockInfo.
1039         * src/imap.c: zero clear IMAPSession object.
1040           imap_cmd_append(): don't close SockInfo.
1041
1042 2003-03-22
1043
1044         * src/pop.c: pop3_session_recv_msg(): fixed STLS.
1045
1046 2003-03-22
1047
1048         * src/inc.[ch]
1049           src/pop.[ch]: reimplemented using new I/O system.
1050         * src/session.[ch]: session_recv_data(): new.
1051           session_send_data_to_sock()
1052           session_recv_data_from_sock(): decreased the frequency of progress
1053           notification.
1054
1055 2003-03-22
1056
1057         * src/smtp.c: smtp_auth_recv(): fixed CRAM-MD5 authentication.
1058
1059 2003-03-20
1060
1061         * src/session.[ch]: session_start_tls(): new.
1062           session_recv_msg(): made it static.
1063
1064 2003-03-20
1065
1066         * implemented asynchronous network I/O.
1067         * src/session.[ch]: the interface to communicate with servers through
1068           child process.
1069         * src/smtp.[ch]
1070           src/send_message.[ch]: rewrote using new I/O system.
1071         * src/socket.[ch]: renamed *_write() to *_write_all(), and made
1072           *_write() as just a simple wrapper for write().
1073         * src/utils.c: get_outgoing_rfc2822_str(): new. It modifies the
1074           message to send with SMTP or NNTP.
1075           file_read_stream_to_str(): new.
1076
1077 2003-03-12
1078
1079         * src/textview.c: textview_button_pressed(): corrected the range of
1080           URI link.
1081         * src/compose.c: compose_wrap_line_all_full(): treat UTF-8 characters
1082           represented with more than 2 bytes as 2 character width and 2 bytes
1083           one as a single character width as a workaround for wrapping problem.
1084
1085 2003-03-12
1086
1087         * src/utils.c: subject_compare_for_sort(): allow null strings (fixes
1088           summary sorting).
1089
1090 2003-03-11
1091
1092         * implemented HTML link correctly.
1093         * src/html.[ch]: HTMLAttr, HTMLTag: new structure for attributes /
1094           tags.
1095           html_get_tag(): new. It parses tag and returns HTMLTag object.
1096           html_parse_tag(): also parses <a> tags and 'href' attributes.
1097         * src/textview.c: textview_write_link(): new. It creates link string.
1098
1099 2003-03-10
1100
1101         * src/compose.c: compose_wrap_line_all_full(): fixed an infinite
1102           loop / crash bug (thanks to Darko Koruga).
1103           compose_write_to_file(): put correct charset element when
1104           conversion failed but want to send anyway.
1105
1106 2003-03-10
1107
1108         * src/headerview.c: headerview_show()
1109           src/textview.c: textview_write_line(): remove unreadable characters
1110           from displayed strings to prevent crashes on multi-byte
1111           environments.
1112         * src/codeconv.[ch]: conv_unreadable_locale(): new. It was separated
1113           from conv_localetodisp().
1114
1115 2003-03-10
1116
1117         * src/procmsg.c: procmsg_cmp_by_subject()
1118           src/summaryview.c: summary_cmp_by_subject(): ignore Re: when
1119           comparing subjects.
1120         * src/utils.[ch]:
1121           subject_compare_for_sort()
1122           trim_subject_for_sort(): new.
1123
1124 2003-03-07
1125
1126         * version 0.8.11
1127
1128 2003-03-07
1129
1130         * src/defs.h: added -i option to the default sendmail command.
1131
1132 2003-03-06
1133
1134         * src/codeconv.[ch]: added missing character encodings and locales.
1135
1136 2003-03-06
1137
1138         * src/procmsg.[ch]:
1139           procmsg_get_mark_sum()
1140           procmsg_open_mark_file()
1141           procmsg_read_mark_file(): take FolderItem instead of directory
1142           path.
1143
1144 2003-03-05
1145
1146         * src/codeconv.c: conv_encode_header(): fixed a bug that spaces
1147           which is on the wrap boundary would be lost when encoding long
1148           non-ascii strings (thanks to Sergey Vlasov).
1149           Don't force wrapping within a long word until it reaches hard line
1150           length limit (998 characters) (workaround for the breakage of
1151           long address list with no spaces).
1152
1153 2003-03-03
1154
1155         * src/prefs_account.c: fixed compile failure when using neither
1156           gpg or ssl.
1157
1158 2003-03-03
1159
1160         * src/codeconv.c: fixed UTF-8 locale support.
1161           conv_get_code_conv_func(): return conv_noconv if locale encoding
1162           is UTF-8. Return conv_latintodisp on ISO-8859-* to locale encoding
1163           conversion.
1164           conv_convert(): call conv_iconv_strdup() instead of
1165           conv_codeset_strdup().
1166           conv_codeset_strdup(): moved some codes into conv_iconv_strdup().
1167
1168 2003-02-28
1169
1170         * src/prefs_account.[ch]: added an option to use command output for
1171           signature.
1172         * src/compose.c: compose_insert_sig(): use command output if
1173           specified.
1174           compose_insert_command_output(): new.
1175
1176 2003-02-28
1177
1178         * src/main.c: main(): remove lock socket if sylpheed is not running
1179           when --status command is executed.
1180           lock_socket_remove(): new.
1181
1182 2003-02-27
1183
1184         * src/codeconv.c: conv_codeset_strdup(): don't convert if current
1185           codeset is US-ASCII (or POSIX).
1186
1187 2003-02-21
1188
1189         * src/codeconv.c: conv_iconv_strdup(): try to skip invalid characters
1190           and continue conversion.
1191
1192 2003-02-21
1193
1194         * src/summaryview.c: summary_selected(): always update widget
1195           sensitivity.
1196
1197 2003-02-20
1198
1199         * src/utils.c: tzoffset_sec(): fixed a bug that displayed wrong
1200           date in timezones more than GMT+12 or less than GMT-12.
1201
1202 2003-02-18
1203
1204         * src/prefs_common.[ch]
1205           src/sourcewindow.c: remember the size of source window.
1206         * src/md5.c: fixed a compile problem with gcc 3.3.
1207
1208 2003-02-17
1209
1210         * src/about.c: about_create(): modified the copyright notice.
1211
1212 2003-02-17
1213
1214         * src/colorlabel.c: don't use pixmaps for label color rect but draw
1215           rectangles so we can respect the color map of palette based visuals
1216           (fixes the long time crashes on Solaris - thanks to Alfons
1217           Hoogervorst).
1218
1219 2003-02-17
1220
1221         * src/procheader.c: procheader_date_parse(): made month string case
1222           insensitive.
1223         * src/prefs_filter.c: prefs_filter_close(): fixed the crash when the
1224           selection list is empty.
1225
1226 2003-02-14
1227
1228         * src/quote_fmt_parse.y: removed gettext translatable strings.
1229         * src/unmime.c: unmime_header(): remove broken characters when
1230           code conversion failed.
1231         * src/codeconv.c: conv_encode_header(): fixed a bug that broken
1232           headers if long words more than 75 characters are entered.
1233
1234 2003-02-13
1235
1236         * src/prefs_account.c: prefs_account_receive_create()
1237           src/utils.c: to_human_readable(): made units translatable.
1238
1239 2003-02-13
1240
1241         * src/codeconv.c: isprintableeuckanji(): don't allow more than 0xf4
1242           at first byte (fixes abort() problem of glibc).
1243         * src/html.c: html_read_line(): remove characters which can't be
1244           displayed on the current locale.
1245
1246 2003-02-11
1247
1248         * src/utils.[ch]:
1249           trim_subject_for_compare(): renamed from trim_subject().
1250           trim_subject(): new. It removes [...] or (...) at the beginning
1251           of subject.
1252         * src/prefs_folder_item.c
1253           src/folder.[ch]:
1254           added options for trimming summary / compose subject.
1255         * src/summaryview.c: summary_set_header(): trim subject if the folder
1256           option is set.
1257         * src/compose.c: compose_reply_set_entry(): trim subject if the folder
1258           option is set.
1259
1260 2003-02-09
1261
1262         * src/codeconv.c:
1263           LBREAK_IF_REQUIRED(): don't break lines before first word (fixes
1264           X-Face header problem).
1265           conv_encode_header(): allow up to 97 characters for one word.
1266
1267 2003-02-07
1268
1269         * src/filter.c: filter_match_condition(): fixed the bug that
1270           second condition ignored regex.
1271         * src/news.h: NewsGroupInfo: use guint for message numbers
1272           (fix count in grouplist dialog) (thanks to Thorsten Maerz).
1273
1274 2003-02-06
1275
1276         * src/codeconv.c: conv_encode_header(): fixed a segfault bug
1277           on code conversion failure.
1278           conv_get_charset_str()
1279           conv_get_charset_from_str(): optimized using hash table.
1280
1281 2003-02-06
1282
1283         * src/quote_fmt_parse.y:
1284           SHOW_MESSAGE_NO_SIGNATURE, SHOW_QUOTED_MESSAGE_NO_SIGNATURE:
1285           treat only "\n-- \n" as a signature separator.
1286
1287 2003-02-05
1288
1289         * src/gtkutils.[ch]: gtkut_ctree_node_prev(): new.
1290         * src/summary_search.c: summary_search_execute(): search collapsed
1291           nodes, too.
1292
1293 2003-02-05
1294
1295         * src/codeconv.c:
1296           conv_unreadable_latin(): include 0x7f as an unreadable character.
1297           conv_localetodisp(): don't remove 8bit characters by default.
1298           conv_get_current_charset()
1299           conv_get_outgoing_charset(): return ISO-8859-15 if "@euro" is
1300           appended at the last of locale name.
1301         * src/compose.c: compose_write_to_file(): show from and to encoding
1302           when code conversion failed.
1303
1304 2003-02-04
1305
1306         * version 0.8.10
1307
1308 2003-02-04
1309
1310         * src/procmsg.h: WRITE_CACHE_DATA(): little speed improvement
1311           (thanks to Colin Leroy).
1312         * src/mh.c: mh_get_msginfo(): added NULL check (thanks to Thorsten
1313           Maerz).
1314
1315 2003-02-03
1316
1317         * src/textview.c: textview_write_line(): don't convert if conv is
1318           NULL.
1319
1320 2003-02-03
1321
1322         * src/codeconv.[ch]:
1323           renamed conv_guess_encoding() to conv_guess_ja_encoding().
1324           conv_localetodisp(): new. It removes unreadable characters from
1325           (assumed) current locale string.
1326           conv_codeset_strdup(): convert into ISO-8859-1 if dest_code is
1327           NULL and current locale encoding is US-ASCII.
1328           conv_get_code_conv_func(): return conv_ustodisp if US-ASCII is
1329           specified for destination charset.
1330         * src/textview.c: textview_write_line(): use conv_localetodisp()
1331           instead of strncpy2() if conversion failed.
1332
1333 2003-01-31
1334
1335         * src/codeconv.c: conv_iconv_strdup()
1336           src/imap.c:
1337           imap_modified_utf7_to_locale()
1338           imap_locale_to_modified_utf7(): use ICONV_CONST macro to remove
1339           a warning on some systems.
1340         * src/codeconv.c: conv_iconv_strdup(): flush iconv() output and
1341           truncate buffer.
1342           Return NULL instead of incomplete string if conversion failed.
1343
1344 2003-01-30
1345
1346         * src/summaryview.c: summary_execute(): select appropriate node
1347           if currently selected node is to be deleted.
1348         * src/gtkutils.[ch]: gtkut_ctree_node_is_selected(): new. Returns
1349           TRUE if the specified node is selected.
1350
1351 2003-01-30
1352
1353         * src/summaryview.c: summary_status_show(): fixed a occasional crash
1354           on deleting or moving.
1355
1356 2003-01-29
1357
1358         * src/codeconv.c: conv_unreadable_eucjp(): made the validity check
1359           of EUC-JP more accurate.
1360           isprintableeuckanji(): new. Use table for validity check of EUC-JP.
1361
1362 2003-01-17
1363
1364         * version 0.8.9
1365
1366 2003-01-17
1367
1368         * updated INSTALL.
1369
1370 2003-01-17
1371
1372         * src/quoted-printable.c: qp_encode_line(): fixed linebreak
1373           duplication bug if the source string has CRLF.
1374         * src/utils.[ch]:
1375           canonicalize_str(): new. Returns newly allocated canonicalized
1376           string.
1377           uncanonicalize_file(): new. Uncanonicalize (CRLF -> LF) text.
1378           uncanonicalize_file_replace(): new.
1379         * src/compose.c: always canonicalize body before processing, and
1380           uncanonicalize before returning.
1381
1382 2003-01-17
1383
1384         * src/procmime.c: procmime_get_encoding_for_charset(): prefer
1385           ENC_8BIT for Russian charsets.
1386         * src/compose.c: compose_write_to_file(): use base64 when signing
1387           8bit message.
1388
1389 2003-01-16
1390
1391         * src/prefs_common.c: prefs_send_create(): added a description for
1392           the setting of Content-Transfer-Encoding.
1393
1394 2003-01-16
1395
1396         * src/codeconv.c: fixed locale_table for Russian locales (thanks to
1397           Sergey Vlasov).
1398         * src/procmime.c: procmime_get_encoding_for_charset(): return
1399           ENC_BASE64 for ISO-8859-5, KOI8-* and Windows-1251.
1400         * src/compose.c: compose_attach_append(): set correct Content-
1401           Transfer-Encoding for message/rfc822.
1402           compose_write_to_file(): enabled user-definable Content-Transfer-
1403           Encoding.
1404         * src/prefs_common.[ch]: added an option for user-defined Content-
1405           Transfer-Encoding.
1406
1407 2003-01-15
1408
1409         * src/quoted-printable.[ch]: qp_encode_line(): fixed a bug if the
1410           line doesn't end with linebreak.
1411
1412 2003-01-15
1413
1414         * implemented quoted-printable encoding.
1415         * src/quoted-printable.[ch]: qp_encode_line(): new.
1416         * src/compose.c:
1417           compose_write_to_file()
1418           compose_write_attach(): implemented quoted-printable encoding.
1419           compose_attach_property_create(): enabled quoted-printable menu
1420           item.
1421         * src/procmime.c: procmime_get_encoding_for_charset(): return
1422           ENC_QUOTED_PRINTABLE for ISO-8859-* and CP125* charset.
1423         * src/Makefile.am: added $(LIBICONV) to sylpheed_LDADD for libiconv
1424           support.
1425
1426 2003-01-14
1427
1428         * src/folderview.c
1429           src/summaryview.c
1430           src/utils.[ch]: get_abbrev_newsgroup_name(): improved the way
1431           of abbreviation of newsgroup name.
1432
1433 2003-01-14
1434
1435         * configure.in: show the result of iconv detection.
1436
1437 2003-01-13
1438
1439         * src/codeconv.[ch]: made the transition from libjconv to iconv().
1440           conv_iconv_strdup(): new.
1441         * src/about.c
1442           src/imap.c
1443           src/mainwindow.c
1444           src/prefs_common.c: replaced HAVE_LIBJCONV to HAVE_ICONV.
1445
1446 2003-01-10
1447
1448         * src/compose.c
1449           src/folderview.c
1450           src/prefs_folder_item.c: English fix (property -> properties).
1451         * src/prefs_filter.c: alert if entry is not saved.
1452           prefs_filter_dialog_to_filter(): new.
1453
1454 2003-01-09
1455
1456         * src/codeconv.c: conv_encode_header(): fixed a bug which output raw
1457           strings after linefeed.
1458         * updated INSTALL.
1459
1460 2003-01-08
1461
1462         * src/codeconv.[ch]: code cleanup and optimization.
1463           conv_code_converter_new()
1464           conv_convert(): use functions obtained by conv_get_code_conv_func()
1465           when using libjconv.
1466           conv_codeset_strdup(): code cleanup.
1467           conv_get_code_conv_func(): added an argument for destination
1468           character set, and generalized.
1469
1470 2003-01-06
1471
1472         * src/codeconv.c: LBREAK_IF_REQUIRED(): break line only if some
1473           characters follow.
1474         * src/compose.c: compose_convert_header(): remove trailing spaces.
1475         * src/customheader.c: custom_header_read_str(): strip the spaces
1476           of name and value.
1477         * src/prefs_customheader.c: prefs_custom_header_clist_set_row():
1478           strip the spaces of name and value.
1479
1480 2002-12-25
1481
1482         * version 0.8.8
1483
1484 2002-12-25
1485
1486         * src/codeconv.c: conv_encode_header(): fixed a bug which will run
1487           into infinite loop when encountering invalid characters.
1488
1489 2002-12-25
1490
1491         * src/procmsg.[ch]: procmsg_sort_msg_list(): new. It sorts message
1492           list.
1493         * src/summaryview.c: summary_show(): removed summary_sort() because
1494           it is done inside folder_item_get_msg_list(). This will improve
1495           the performance of summary display.
1496           Sorted out the summary sort functions using macros.
1497         * src/mh.c
1498           src/imap.c
1499           src/news.c
1500           src/folder.[ch]: folder_item_get_msg_list(): return pre-sorted
1501           list if FolderItem::sort_key is set.
1502           Added SORT_BY_TO to FolderSortKey enum.
1503         * src/mainwindow.c: added "View/Sort/by recipient".
1504
1505 2002-12-20
1506
1507         * version 0.8.7
1508
1509 2002-12-20
1510
1511         * src/codeconv.c: conv_encode_header(): fix for redundant space on
1512           line-breaking.
1513         * src/compose.c: compose_convert_header(): always pass string to
1514           conv_encode_header() for line-breaking.
1515
1516 2002-12-20
1517
1518         * src/textview.c: textview_make_clickable_parts(): fixed incorrect
1519           parsing of email addresses.
1520
1521 2002-12-19
1522
1523         * src/defs.h: added DEFAULT_BROWSER_CMD.
1524         * src/mimeview.c: mimeview_view_file()
1525           src/prefs_common.c: prefs_other_create()
1526           src/utils.c: open_uri(): changed the default web browser to
1527           mozilla, and changed 'raise' command (which is undocumented)
1528           to 'new-window' in 'netscape -remote'.
1529
1530 2002-12-19
1531
1532         * src/compose.c: compose_send_control_enter(): fixed crash on
1533           Ctrl-Enter when Message/Send has no accelerator key (thanks to
1534           Sergey Vlasov).
1535
1536 2002-12-18
1537
1538         * src/mainwindow.c:
1539           set_charset_cb()
1540           sort_summary_cb()
1541           sort_summary_type_cb(): prevent unwanted processing on unchecking
1542           menu items.
1543
1544 2002-12-18
1545
1546         * src/main.c: process command line option before gtk_init() to
1547           enable remote operation without X (thanks to Ruslan N. Balkin).
1548         * src/codeconv.c: conv_encode_header(): fixed a potential buffer
1549           overflow.
1550
1551 2002-12-18
1552
1553         * src/Makefile.am: changed $(target_alias) to $(target_triplet)
1554           (the spec of autotools seems to be changed).
1555
1556 2002-12-18
1557
1558         * src/imap.c: get path separator using LIST command if server
1559           doesn't support NAMESPACE (based on the patch by Brian Sammon).
1560           imap_parse_list(): added an argument to return path separator.
1561           imap_get_namespace_by_list(): new.
1562
1563 2002-12-17
1564
1565         * src/addr_compl.c: add_address(): removed the debug print.
1566         * src/gtkutils.[ch]: gtkut_window_popup()
1567           src/mainwindow.c: main_window_popup(): applied the patch to fix
1568           the behavior of window popup from Sergey Vlasov (thanks!)
1569         * src/account.c: account_edit_create(): use signal_connect_after
1570           for row_move signal to fix the row position bug.
1571           account_row_moved(): scroll the CList half page.
1572         * src/prefs_filter.c: prefs_filter_row_move(): scroll the CList
1573           half page.
1574         * src/summaryview.c: summary_reply(): use selection text only if
1575           the displayed message is selected (thanks to Sergey Vlasov).
1576
1577 2002-12-13
1578
1579         * src/codeconv.c: conv_encode_header(): reimplemented the routine
1580           of MIME header encoding. And use Q-encoding method if the current
1581           locale is single-byte one.
1582         * src/utils.[ch]: is_next_nonascii(): take multi-byte string instead
1583           of wide-character string. Consider control codes as non-ASCII.
1584           get_next_word_len(): new. It returns the length of next word.
1585           is_next_mbs(), find_wspace(): removed.
1586         * src/quoted-printable.[ch]: new.
1587           qp_decode_line(): decodes one QP line.
1588           qp_decode_q_encoding(): decodes Q-encoded string in MIME header.
1589           qp_get_q_encoding_len(): returns the length when a string is
1590           Q-encoded.
1591           qp_q_encode(): Q-encode a string (RFC 2047).
1592         * src/unmime.c: moved the functions for quoted-printable to
1593           quoted-printable.c.
1594
1595 2002-12-05
1596
1597         * src/send.c: send_message_local(): escape line that only have one
1598           dot character (postfix's sendmail command will stop there).
1599
1600 2002-12-05
1601
1602         * src/send.c: send_message_local(): don't escape first-dot line
1603           (thanks to Sergey Vlasov).
1604
1605 2002-12-03
1606
1607         * autogen.sh: added 'libtoolize --force --copy' to override the
1608           current ltmain.sh.
1609         * acconfig.h: removed.
1610         * configure.in: increased minimal version of GPGME to 0.3.10.
1611           Fixed checking of XIM.
1612         * ac/check-type.m4
1613           ac/gnupg-check-typedef.m4: added an argument for comment.
1614
1615 2002-11-29
1616
1617         * src/imageview.[ch]: fixed conflicting declarations of
1618           imageview_show_image() (thanks to Thorsten Maerz).
1619
1620 2002-11-28
1621
1622         * src/compose.c: compose_entry_append(): don't add ", " on subject
1623           entry.
1624         * src/codeconv.c: conv_get_outgoing_charset(): obtain outgoing
1625           charset from the table (currently disabled for non-Japanese locales).
1626           conv_get_current_locale(): also refer to LC_CTYPE.
1627
1628 2002-11-27
1629
1630         * README: added a description about hidden settings.
1631
1632 2002-11-27
1633
1634         * src/prefs_common.[ch]: reorganized the common prefs dialog.
1635           Made enable_hscrollbar and bold_unread hidden options.
1636
1637 2002-11-26
1638
1639         * src/quote_fmt_parse.y: fixed a parse error (thanks to Andreas Hinz).
1640
1641 2002-11-26
1642
1643         * src/account.[ch]:
1644           account_find_from_message_file()
1645           account_find_from_msginfo(): new. They find an account from the
1646           headers like 'From:', 'X-Sylpheed-Account-Id:', and 'AID:' in the
1647           specified message.
1648         * src/compose.c:
1649           compose_reedit(): restore messages' previous account on composition.
1650           compose_write_headers(): add 'X-Sylpheed-Account-Id:' header
1651           on draft mode.
1652
1653 2002-11-26
1654
1655         * src/compose.c: cleaned up the code using compose_entry_set()
1656           (don't use gtk_entry_set_text() directly).
1657
1658 2002-11-25
1659
1660         * src/imap.c: imap_parse_namespace(): fixed a memory leak.
1661
1662 2002-11-22
1663
1664         * updated autotools and libtool to the latest version.
1665         * configure.in: added AC_PREREQ(2.50).
1666
1667 2002-11-22
1668
1669         * src/textview.c: textview_set_font(): fix for message display in
1670           UTF-8 locales (thanks to Sergey Vlasov).
1671
1672 2002-11-21
1673
1674         * src/imageview.[ch]: imageview_show_image(): resize images to fit
1675           the window size if specified.
1676         * src/prefs_common.[ch]: added an option 'Resize attached images'.
1677
1678 2002-11-20
1679
1680         * refactoring for SMTP implementation.
1681         * src/session.h: added ui_func to Session.
1682         * src/smtp.[ch]: separated the connection routine from
1683           smtp_session_new() to smtp_connect().
1684           Changed the argument of every function other than smtp_ok() from
1685           SockInfo to SMTPSession.
1686           Call UI callback from each functions.
1687         * src/send.c: send_message_smtp(): separated the code for UI update
1688           into send_progress_dialog_update().
1689
1690 2002-11-18
1691
1692         * src/smtp.[ch]: separated smtp_auth() from smtp_from().
1693         * src/send.c: send_message_smtp(): call smtp_auth() and display
1694           the state to the dialog.
1695
1696 2002-11-18
1697
1698         * src/filter.c: strmatch_regex(): use extended regex (thanks to
1699           Fabien Devaux).
1700         * src/main.c: main(): removed the code for assortrc -> filterrc
1701           transition.
1702         * src/gtkutils.c: gtkut_font_load(): only use gdk_font_load() if
1703           current locale is C or POSIX.
1704           gtkut_stext_is_uri_string(): include "www." for URI string.
1705         * src/textview.c: textview_make_clickable_parts(): include "www."
1706           for URI string.
1707
1708 2002-11-15
1709
1710         * version 0.8.6
1711
1712 2002-11-13
1713
1714         * src/textview.c: textview_add_part(): indicate signature status
1715           using different colors.
1716
1717 2002-11-12
1718
1719         * src/folder.c: folder_write_list_recursive(): escape
1720           To/Cc/Bcc/Reply-To strings.
1721
1722 2002-11-11
1723
1724         * src/codeconv.c: conv_encode_header(): enabled B-encoding of
1725           headers on locales other than Japanese when not using libjconv.
1726
1727 2002-11-11
1728
1729         * src/inc.[ch]: added INC_IO_ERROR to IncState. Also added its
1730           corresponding error message.
1731           inc_pop3_session_do(): set INC_IO_ERROR instead of INC_NOSPACE
1732           on PS_IOERR.
1733
1734 2002-11-07
1735
1736         * src/prefs_account.[ch]: removed prefs_account_save_config() since
1737           it is not used.
1738         * src/procmime.[ch]: removed procmime_mimeinfo_free() since
1739           procmime_mimeinfo_free_all() can be used in every case.
1740
1741 2002-11-06
1742
1743         * src/account.c: account_get_special_folder(): support F_INBOX, and
1744           made code cleanup.
1745
1746 2002-11-06
1747
1748         * src/compose.[ch]: ComposeEntryType: changed COMPOSE_* to
1749           COMPOSE_ENTRY_*, and added
1750           COMPOSE_ENTRY_{REPLY_TO,SUBJECT,FOLLOWUP_TO}.
1751           compose_reply()
1752           compose_forward()
1753           compose_redirect(): added FolderItem to the arguments, and reflect
1754           settings in the item.
1755           compose_entry_set(): new.
1756           compose_entry_append(): code cleanup.
1757           compose_entries_set_from_item(): take ComposeMode in its arguments,
1758           and enabled FolderItem::use_auto_to_on_reply.
1759         * src/summaryview.c: summary_reply(): pass folder_item to
1760           compose_{reply,forward,redirect}().
1761
1762 2002-11-05
1763
1764         * src/gtkutils.[ch]:
1765           gtkut_font_load(): new. It automatically choose font or fontset
1766           by current locale.
1767           gtkut_font_load_from_fontset(): new. It tries to load single font
1768           instead of fontset from a fontset string.
1769         * src/alertpanel.c
1770           src/folderview.c
1771           src/headerview.c
1772           src/summaryview.c: workaround for the problem that couldn't display
1773           8-bit characters in C or POSIX locale (use font instead of fontset).
1774         * src/compose.c
1775           src/sourcewindow.c
1776           src/textview.c: made code cleanup using gtkut_font_load*().
1777
1778 2002-10-29
1779
1780         * src/mh.c: mh_get_msginfo(): set correct message number.
1781
1782 2002-10-29
1783
1784         * src/folder.[ch]: added a new virtual method Folder::get_msginfo().
1785           It returns a new MsgInfo associated to a message number.
1786           folder_item_get_msginfo(): new.
1787         * src/imap.[ch]: imap_get_msginfo(): new.
1788         * src/mh.[ch]: mh_get_msginfo(): new.
1789         * src/news.[ch]: news_get_msginfo(): new.
1790
1791 2002-10-28
1792
1793         * src/codeconv.c: conv_euctojis(): fixed a bug which will cause
1794           infinite loop if an invalid code appeared.
1795
1796 2002-10-25
1797
1798         * src/codeconv.c: conv_codeset_strdup()
1799           src/html.[ch]: html_read_line(): don't output conversion failure
1800           warnings.
1801           Added HTML_CONV_FAILED to the enum HTMLState.
1802
1803 2002-10-24
1804
1805         * implemented per-folder auto-set address (still in progress).
1806         * src/compose.[ch]: compose_new(): added FolderItem to its arguments,
1807           and set entries from it (if mailto is empty).
1808           compose_entry_append(): activate menu if required.
1809           compose_entries_set_from_item(): new.
1810         * src/folder.[ch]: added auto_to, use_auto_to_on_reply, auto_cc,
1811           auto_bcc, and auto_replyto to FolderItem, and renamed apply_sub to
1812           ac_apply_sub.
1813           folder_build_tree(), folder_read_folder_func(),
1814           folder_write_list_recursive(): added the above members.
1815         * src/prefs_folder_item.[ch]: added auto-set addresses.
1816         * src/pop.[ch]: removed Pop3State::prev_folder.
1817
1818 2002-10-11
1819
1820         * src/compose.c: allow dropping files by also "moving" files from a
1821           file manager (thanks to Alfons).
1822
1823 2002-10-10
1824
1825         * compose_reply_set_entry(): made Reply-To have priority over
1826           List-Post on ML reply.
1827
1828 2002-10-09
1829
1830         * src/gtksctree.[ch]: gtk_sctree_set_anchor_row(): new.
1831         * src/summaryview.c: summary_step(): fixed a bug that lost the
1832           correct selection anchor.
1833           summary_key_pressed(): use gtk_sctree_select() instead of
1834           gtk_ctree_select().
1835         * src/inc.[ch]
1836           src/pop.c
1837           src/recv.c: differentiate disk full and socket errors
1838           (thanks to Colin Leroy).
1839
1840 2002-10-08
1841
1842         * src/account.c: account_edit_prefs(): removed unused variables.
1843         * src/compose.[ch]: separated WITH_QUOTE/WITHOUT_QUOTE flags in
1844           ComposeMode.
1845           compose_reply()
1846           compose_reply_set_entry(): receive reply type with one argument.
1847         * src/summaryview.c: summary_reply(): reduced conditional branches.
1848
1849 2002-10-08
1850
1851         * src/compose.c: compose_redirect(), compose_reedit(): strip CR
1852           from line ends (thanks to Sergey Vlasov).
1853         * src/folderview.c: renamed 'Rescan folder tree' to 'Rebuild
1854           folder tree'.
1855
1856 2002-10-08
1857
1858         * src/folder.[ch]: added a virtual method Folder::remove_msgs().
1859         * src/imap.[ch]: implemented imap_remove_msgs() which expunges
1860           messages all at once.
1861
1862 2002-10-07
1863
1864         * src/account.[ch]: account_open(): new. It opens account prefs
1865           dialog and reflects to UI when finished.
1866         * src/folderview.c:
1867           folderview_button_pressed()
1868           folderview_property_cb(): open account prefs dialog when the
1869           property of the root folder of remote account is requested.
1870
1871 2002-10-07
1872
1873         * src/account.c: account_destroy(): unref account information in
1874           folders.
1875         * src/folder.[ch]: folder_unref_account_all(): new. It unref the
1876           specified account information in all folders.
1877         * src/folderview.c:
1878           folderview_rm_imap_server_cb()
1879           folderview_rm_news_server_cb(): destroy Folder first because
1880           folder_destroy() refers to account information.
1881
1882 2002-10-04
1883
1884         * src/account.c: account_find_from_item(): fixed a bug which didn't
1885           select the correct account.
1886         * inc_pop3_session_do():
1887           fixed the resource leak when SSL initialization failed.
1888           Immediately break from temporary event loop if cancelled.
1889
1890 2002-10-04
1891
1892         * src/account.[ch]: account_find_from_item(): new.
1893         * src/compose.c:
1894           compose_reply(), compose_forward(), compose_redirect()
1895           src/mainwindow.c: compose_cb(): select optimal account when
1896           composing.
1897         * src/folder.[ch]: added FolderItem::apply_sub.
1898         * src/menu.[ch]: menu_find_option_menu_index(): new. It finds the
1899           index of option menu which contains the specified data.
1900         * src/prefs_folder_item(): added Compose tab, and the setting of
1901           folder account.
1902
1903 2002-10-04
1904
1905         * configure.in: added $LDAP_LIBS for lber library detection.
1906
1907 2002-10-03
1908
1909         * version 0.8.5
1910
1911 2002-10-03
1912
1913         * src/procmsg.c: procmsg_msginfo_get_full_info(): fixed a memory
1914           leak, and added error checking.
1915
1916 2002-10-03
1917
1918         * src/compose.[ch]: added a flag Compose::use_newsgroups, and
1919           removed Compose::orig_account.
1920           compose_check_for_valid_recipient(): check only enabled entries.
1921           compose_write_headers()
1922           compose_redirect_write_headers(): add Newsgroups header only
1923           when the entry is enabled.
1924           compose_send(): modified the method of finding a mail account
1925           from a news account so that it tries to match the From address.
1926         * src/send.c: send_message_queue(): enabled the queueing of news
1927           messages.
1928         * src/news.[ch]: news_post_stream(): new.
1929
1930 2002-10-03
1931
1932         * configure.in: check lber first and use $LDAP_LIBS on the check
1933           for ldap.
1934
1935 2002-10-02
1936
1937         * po/*.po: fixed many typos of format strings which will lead to
1938           crash (thanks to Sergey Vlasov).
1939
1940 2002-10-02
1941
1942         * src/procheader.c: procheader_parse_stream(): added Cc header
1943           to the target for full parsing.
1944         * src/procmsg.[ch]: procmsg_msginfo_get_full_info(): new. It
1945           returns the full message information from the given information.
1946         * src/compose.c: compose_reply(), compose_forward(): get full
1947           message information for Cc header.
1948
1949 2002-10-02
1950
1951         * src/inc.c: inc_account_mail(), inc_all_account_mail(): update
1952           IMAP4 and NNTP folder summary after checking those accounts.
1953
1954 2002-10-01
1955
1956         * version 0.8.4
1957
1958 2002-10-01
1959
1960         * src/prefs_common.c: prefs_compose_create(): modified the label
1961           of the option for Reply button.
1962         * configure.in: add -lldap and -llber to the 5th argument of
1963           AC_CHECK_LIB() for LDAP library detection.
1964
1965 2002-09-30
1966
1967         * INSTALL
1968           INSTALL.jp: updated.
1969
1970 2002-09-30
1971
1972         * src/mainwindow.c: toggle the behavior of Reply button between
1973           normal reply and reply-to-list.
1974         * src/prefs_common.[ch]: added an option to switch the function
1975           of Reply button.
1976
1977 2002-09-27
1978
1979         * src/compose.c: compose_new(): removed the workaround for XIM
1980           because it doesn't have any effect and only seems to cause
1981           hangs.
1982
1983 2002-09-26
1984
1985         * src/compose.[ch]: compose_reply(): added a flag for reply-to-ML.
1986           compose_parse_header(): parse also List-Post header.
1987           compose_reply_set_entry(): support reply-to-ML (fall back to
1988           normal reply if ML address is not found).
1989         * src/mainwindow.c
1990           src/prefs_common.c
1991           src/summaryview.c: reorganized Reply menu and added 'Reply to
1992           mailing list'.
1993         * src/utils.[ch]: scan_mailto_url(): new. It scans mailto URL and
1994           returns newly allocated parameters.
1995
1996 2002-09-25
1997
1998         * src/account.c: account_read_config_all(): set account information
1999           to default before initializing with configuration file.
2000         * src/prefs_account.[ch]: prefs_account_new(): new. It returns a
2001           newly created account information structure initialized by
2002           the default settings.
2003
2004 2002-09-24
2005
2006         * src/addr_compl.c:
2007           replace_address_in_edit(): check if newtext is NULL.
2008           completion_window_button_press(): fixed a memory leak.
2009         * src/pop.c: LOOKUP_NEXT_MSG(): don't expire messages whose
2010           recv_time is RECV_TIME_KEEP.
2011           pop3_getrange_uidl_recv(): only set get_all flag if
2012           ac_prefs->getall is set.
2013           pop3_retr_recv(): don't delete messages which are not received
2014           by filter, and set recv_time to RECV_TIME_KEEP in the case.
2015         * src/pop.h: added an enum RecvTime.
2016         * src/inc.c: inc_drop_message(): unlink temporary message file if
2017           not received by filter.
2018
2019 2002-09-20
2020
2021         * src/mainwindow.c: added 'Edit/Select thread' menu.
2022         * src/summaryview.[ch]: added 'Select thread' to the context menu.
2023           summary_select_thread(): new. It selects all messages of current
2024           thread.
2025
2026 2002-09-19
2027
2028         * src/rfc2015.c: check_signature(): corrected error handling and
2029           fixed memory leak.
2030
2031 2002-09-19
2032
2033         * src/rfc2015.c: check_signature(): correctly remove the last empty
2034           line, and canonicalize the file part before verifying (this should
2035           fix incompatibility with Evolution or some other MUAs).
2036         * src/utils.[ch]: copy_file_part(): new. It copies the specified
2037           range of file stream to another file.
2038
2039 2002-09-19
2040
2041         * src/compose.c: compose_write_to_file(): force BASE64 encoding for
2042           8-bit text when signing (thanks to Colin Leroy).
2043
2044 2002-09-16
2045
2046         * src/prefs_common.c: prefs_send_create(): fixed the charset string
2047           for Cyrillic (Windows-1251).
2048
2049 2002-09-15
2050
2051         * version 0.8.3
2052
2053 2002-09-15
2054
2055         * src/codeconv.c: changed the charset for ru_RU.CP1251 to
2056           Windows-1251. Added bg_BG locale.
2057
2058 2002-09-11
2059
2060         * src/compose.c: account_activated(): change the state of menu items
2061           and entries according to the selected account.
2062           compose_select_account(): new. It changes the state of title bar,
2063           menu items and entries.
2064
2065 2002-09-11
2066
2067         * src/inc.c: inc_mail(): correct new_msgs when inc_spool() returned
2068           by error.
2069           Don't refresh summary view on fetching when open_inbox_on_inc is
2070           set.
2071
2072 2002-09-10
2073
2074         * src/summaryview.c: summary_show(): refresh even if open_inbox_on_inc
2075           is set (to avoid summary refresh problem).
2076         * src/imap.c: removed warnings by checking the existence of directory
2077           before calling remove*_numbered_files().
2078
2079 2002-09-06
2080
2081         * src/prefs_common.c: corrected English.
2082
2083 2002-09-06
2084
2085         * src/prefs_common.[ch]: added an option: "Mark messages as read
2086           only when opened in new window".
2087
2088 2002-09-04
2089
2090         * src/folder.c:
2091           folder_tree_destroy()
2092           folder_write_list_recursive(): added sanity check.
2093         * src/imap.c: imap_scan_tree(): if folder->node is NULL and
2094           can't get session, create empty folder node (based on the
2095           Alfons' suggestion).
2096
2097 2002-09-03
2098
2099         * src/textview.c: textview_key_pressed(): pass GDK_Delete event to
2100           SummaryView.
2101         * src/summaryview.c: summary_key_pressed(): scroll correct TextView
2102           on MIME mode.
2103
2104 2002-09-02
2105
2106         * src/news.c: news_scan_group(): fixed wrong message number
2107           calculation.
2108
2109 2002-08-30
2110
2111         * major refactoring for POP3.
2112         * src/inc.[ch]: moved Pop3State, inc_pop3_state_new(),
2113           inc_pop3_state_destroy(), inc_get_uidl_table(), and
2114           inc_write_uidl_list() into pop.c.
2115           Moved Pop3State::folder_table and Pop3State::inc_state into
2116           IncSession.
2117           inc_start()
2118           inc_put_error(): added lockbusy state.
2119           inc_pop3_session_do(): obtain inc_state from Pop3State::error_val.
2120           inc_cancel(): don't terminate the automaton here but just set
2121           the flags to prevent crash.
2122         * src/pop.[ch]
2123           pop3_getauth_pass_recv()
2124           pop3_getauth_apop_recv(): check lockbusy state.
2125           pop3_retr_recv(): check Pop3State::cancelled flag.
2126         * src/automaton.[ch]: added 'cancelled' flag to Automaton.
2127           automaton_input_cb(): terminate if cancelled flag is true.
2128         * sylpheed.desktop: changed Type=Internet to Type=Application.
2129           Added Categories=Application;Network;.
2130
2131 2002-08-29
2132
2133         * src/inc.[ch]
2134           src/pop.c
2135           src/progressdialog.c: show detailed information to the status
2136           column.
2137           Added cur_total_recv_bytes to Pop3State.
2138         * src/prefs_common.[ch]: added an option to specify whether to
2139           close receive dialog when finished.
2140
2141 2002-08-28
2142
2143         * src/folder.[ch]: folder_get_path(): new. It returns the root path
2144           of Folder.
2145         * src/imap.c
2146           src/news.c
2147           imap_folder_destroy()
2148           imap_remove_msg()
2149           imap_remove_all_msg()
2150           news_folder_destroy(): remove cache directories / files when
2151           deleting Folder / messages.
2152         * src/utils.c:
2153           file_exist()
2154           is_dir_exist()
2155           is_file_entry_exist(): check if the argument is NULL.
2156           remove_all_files()
2157           remove_numbered_files()
2158           remove_expired_files(): fixed memory leaks on error.
2159
2160 2002-08-28
2161
2162         * src/folder.[ch]
2163           src/imap.[ch]
2164           src/mh.[ch]
2165           src/news.[ch]
2166           src/session.[ch]
2167           src/smtp.[ch]: made Folder and Session destructor virtual method.
2168
2169 2002-08-27
2170
2171         * src/compose.c: do joining of normal lines only when auto-wrapping.
2172         * src/main.c: modified the warning message for GnuPG.
2173         * src/about.c: about_create(): modified the compiled-in features
2174           list.
2175         * configure.in: improved LDAP library checking (thanks to Alfons).
2176
2177 2002-08-26
2178
2179         * version 0.8.2
2180
2181 2002-08-26
2182
2183         * src/compose.c:
2184           join_next_line()
2185           compose_wrap_line_all(): backed out the change to join lines that
2186           are not indented.
2187         * NEWS
2188           TODO
2189           TODO.jp: updated.
2190         * configure.in: require at least gpgme-0.3.5.
2191
2192 2002-08-23
2193
2194         * src/alertpanel.c: alertpanel_create(): minor modification.
2195         * modified NEWS.
2196
2197 2002-08-23
2198
2199         * updated NEWS.
2200
2201 2002-08-23
2202
2203         * src/alertpanel.c: alertpanel_create(): modified the layout.
2204         * src/rfc2015.c: check_signature(): don't abort on error.
2205
2206 2002-08-22
2207
2208         * src/compose.c: compose_wrap_line_all(): freeze widget only if
2209           required to repress flickers.
2210
2211 2002-08-21
2212
2213         * src/compose.c: improved line wrapping.
2214           join_next_line()
2215           compose_wrap_line_all(): also join lines that are not indented.
2216           dump_text(): handle multi-byte strings correctly.
2217
2218 2002-08-21
2219
2220         * src/compose.c: compose_wrap_line_all(): fix for auto-wrapping
2221           (go to next line when space is entered at line limit).
2222
2223 2002-08-19
2224
2225         * src/inc.c: inc_get_uidl_table(): fixed a memory leak reported by
2226           Martin Kluge.
2227
2228 2002-08-16
2229
2230         * src/mh.c: mh_scan_tree_recursive(): disabled Maildir folder
2231           checking to prevent confusion.
2232
2233 2002-08-16
2234
2235         * src/folder.[ch]: folder_item_get_msg_list(): added a wrapper for
2236           method Folder::get_msg_list().
2237         * src/account.c: account_edit_prefs(), account_delete(): use
2238           folderview_set_all() instead of folderview_rescan_all().
2239         * src/folderview.[ch]:
2240           folderview_check_new_all(): new. Updates all folders.
2241           folderview_rescan_tree(): confirm before executing.
2242           folderview_rescan_all(): commented out since it's not used anymore.
2243           folderview_update_item_foreach(): added a flag for summary update.
2244         * src/inc.c: inc_finished(): update summary only when
2245           prefs_common.scan_all_after_inc is set.
2246           inc_drop_message(): set mtime of target folder to 0 to force
2247           the updating of summary.
2248           inc_start(), get_spool(): update also summary when updating
2249           folder view.
2250         * src/mainwindow.c: changed 'File - Rescan folder tree' to
2251           'File - Check for new messages in all folders'.
2252
2253 2002-08-09
2254
2255         * src/compose.c: compose_write_to_file(): clearsign message body
2256           if specified.
2257           compose_clearsign_text(): new. Replaces the string with clearsigned
2258           one.
2259         * src/prefs_account.c: added an option for clearsign.
2260         * src/rfc2015.c: rfc2015_clearsign(): new.
2261           pgp_sign(): added a flag for clearsign.
2262         * src/utils.[ch]: get_tmp_file(): return newly allocated unique file
2263           name (needs to be freed by caller).
2264           str_write_to_file(), file_read_to_str(): new.
2265
2266 2002-08-08
2267
2268         * src/procmsg.c: procmsg_read_mark_file(): check key duplication
2269           to avoid memory leak.
2270
2271 2002-08-08
2272
2273         * src/base64.c: include string.h for memcpy().
2274         * src/gtksctree.c: use macro ABS() instead of function abs().
2275         * src/prefs_account.c
2276           src/prefs_common.c: renamed 'send' to 'p_send' so as not to
2277           conflict with the function send() in sys/socket.h.
2278         * src/mainwindow.c: commented out the unnecessary functions.
2279         * src/utils.c: canonicalize_file_replace(): correct warning message.
2280
2281 2002-08-08
2282
2283         * src/utils.[ch]: get_tmp_file(): new. Returns the directory for
2284           temporary files in ~/.sylpheed/.
2285         * src/main.c: create temporary directory in ~/.sylpheed/.
2286         * src/compose.c
2287           src/inc.c: create temporary files in ~/.sylpheed/, and modified
2288           the file name.
2289           compose_exec_ext_editor(): fixed a bug that failed to create the
2290           temporary file if g_get_tmp_dir() returned directory other than
2291           '/tmp'.
2292
2293 2002-08-08
2294
2295         * src/utils.c: copy_file(): check if dest_bak != NULL when unlinking.
2296
2297 2002-08-08
2298
2299         * src/utils.[ch]: canonicalize_file_replace(): fixed a bug that fails
2300           to replace the file when the given file and temporary file are not
2301           on the same filesystem.
2302           copy_file(): added a flag whether to keep backup.
2303           move_file(): added a flag whether to overwrite the destination file.
2304
2305 2002-08-07
2306
2307         * src/socket.[ch]: fixed the linking failure when IPv6 is enabled.
2308         * src/select-keys.c: modified key selection dialog.
2309
2310 2002-08-07
2311
2312         * src/socket.[ch]: my_gethostbyname(): new.
2313         * src/utils.c: get_domain_name(): return FQDN instead of short
2314           hostname (thanks to Bob Woodside).
2315         * src/template.c: made the debug messages less verbose.
2316
2317 2002-08-06
2318
2319         * src/prefs_common.[ch]: removed obsolete default sign key setting.
2320         * src/utils.c: canonicalize_file(): correct the error check of
2321           fwrite().
2322
2323 2002-08-06
2324
2325         * src/compose.c: compose_write_to_file():
2326           canonicalize line endings before encrypting/signing (this will fix
2327           interoperability with other MUAs).
2328           Removed unnecessary strdup.
2329           Don't encrypt/sign draft message.
2330         * src/utils.[ch]:
2331           canonicalize_file(), canonicalize_file_replace(): new.
2332         * src/passphrase.c
2333           src/select-keys.c: changed g_message() to debug_print() and
2334           g_warning().
2335         * src/mimeview.c: mimeview_check_signature(): removed unnecessary
2336           MIME structure scanning.
2337         * src/textview.c: textview_add_part(): show signature status in
2338           TextView.
2339         * src/rfc2015.c
2340           src/sigstatus.c: modified translatable strings and some MIME
2341           headers.
2342
2343 2002-08-06
2344
2345         * src/procmsg.c: procmsg_save_to_outbox(): don't forget to remove
2346           the temporary file when saving from queue.
2347 2002-08-05
2348
2349         * src/compose.c
2350           src/passphrase.[ch]
2351           src/rfc2015.[ch]
2352           src/prefs_account.[ch]
2353           src/prefs_common.[ch]: merged GnuPG stuff from the claws branch.
2354           Modified some messages.
2355
2356 2002-08-05
2357
2358         * src/textview.c: textview_scan_header(): fixed a memory leak
2359           (thanks to Alfons).
2360
2361 2002-08-04
2362
2363         * src/prefs_actions.c: execute_actions(): put create_io_dialog()
2364           in right conditional block.
2365
2366 2002-08-01
2367
2368         * src/compose.c: compose_wrap_line_all(): fixed character buffer
2369           initialization.
2370         * src/utils.c:
2371           log_print()
2372           log_message()
2373           log_warning()
2374           log_error(): add time stamp to log messages.
2375
2376 2002-07-31
2377
2378         * src/socket.c:
2379           corrected a typo (HAVE_SYS_SELECT -> HAVE_SYS_SELECT_H)
2380
2381 2002-07-31
2382
2383         * src/socket.c: implemented socket I/O timeout.
2384           fd_recv(): new.
2385         * src/pop.c: check errors and return error value correctly.
2386
2387 2002-07-31
2388
2389         * src/prefs_actions.c: made the action's input/output dialog display
2390           without delay. Made the dialog modal instead of making window
2391           insensitive. Also cleaned up its UI.
2392
2393 2002-07-29
2394
2395         * implemented --attach command line option.
2396         * src/main.c:
2397           Cmd::attach_files: new member to store file paths.
2398           parse_cmd_opt(): added --attach option. --compose option is implied.
2399           prohibit_duplicate_launch()
2400           lock_socket_input_cb(): added "compose_attach" message.
2401         * src/compose.c
2402           src/mainwindow.c
2403           src/textview.c: renamed compose_new_with_recipient() to
2404           compose_new(), and added an argument for attachment files.
2405
2406 2002-07-29
2407
2408         * src/logwindow.c: freeze GtkText widget while hidden.
2409           log_window_append(): changed the header for message and warning.
2410
2411 2002-07-26
2412
2413         * src/news.c: implement automatic cache expiration.
2414           news_delete_expired_caches(): new.
2415           news_get_article_list(): fixed a bug that nonexistent messages
2416           were not removed from list.
2417         * src/procmsg.[ch]: procmsg_get_last_num_in_msg_list(): renamed
2418           procmsg_get_last_num_in_cache().
2419         * src/utils.[ch]: remove_expired_files(): new.
2420
2421 2002-07-26
2422
2423         * src/inc.c:
2424           inc_mail(): force summary refresh when using external command for
2425           incorporation.
2426           inc_all_account_mail(): fixed a bug on spool checking failure.
2427
2428 2002-07-25
2429
2430         * version 0.8.1
2431
2432 2002-07-24
2433
2434         * src/addressbook.c
2435           src/editaddress.c
2436           src/editgroup.c
2437           src/editldap_basedn.c
2438           src/importldif.c
2439           src/prefs_common.c: fixed memory leaks which didn't free strings
2440           gtk_editable_get_chars() returned. And minor code cleanups.
2441         * src/importldif.h
2442           src/vcard.h: removed C++-style comments.
2443
2444 2002-07-23
2445
2446         * src/codeconv.c: conv_encode_header(): fixed a problem in encoding
2447           strings which include both multi-byte and us-ascii characters.
2448
2449 2002-07-23
2450
2451         * src/utils.c: remove_numbered_files(): don't try to unlink()
2452           directories.
2453         * src/codeconv.c:
2454           conv_get_code_conv_func(): return conv_anytodisp() if charset is
2455           not specified.
2456           conv_unmime_header_overwrite()
2457           conv_unmime_header(): do conv_anytodisp() before decoding header.
2458
2459 2002-07-14
2460
2461         * version 0.8.0
2462
2463 2002-07-14
2464
2465         * src/compose.c: added 'Tools/Actions' menu.
2466
2467 2002-07-12
2468
2469         * src/base64.c: a minor fix for BASE64VAL() macro.
2470
2471 2002-07-11
2472
2473         * src/base64.c: base64_decode(): fixed a buffer overrun bug.
2474
2475 2002-07-11
2476
2477         * src/codeconv.c
2478           src/compose.c
2479           src/smtp.c
2480           src/unmime.c
2481           src/base64.[ch]: rewrote the BASE64 encode / decode routines.
2482           base64_encode(), base64_decode(): new.
2483         * src/rfc822.[ch]: removed.
2484         * COPYING
2485           src/about.c: removed the copyright notice for fetchmail.
2486
2487 2002-07-10
2488
2489         * src/codeconv.c
2490           src/procmime.c
2491           src/unmime.[ch]: rewrote the MIME decode routines.
2492           unmime_header()
2493           unmime_quoted_printable_line(): new.
2494         * src/procheader.c:
2495           procheader_get_one_field()
2496           procheader_get_unfolded_line(): remove also CR.
2497
2498 2002-07-08
2499
2500         * libkcc: removed from the source tree.
2501         * COPYING
2502           src/about.c: removed the copyright notice for libkcc.
2503         * src/codeconv.c: conv_guess_encoding(): check for ASCII code first
2504           for speedup.
2505         * src/prefs_actions.c: removed unnecessary spaces/tabs.
2506
2507 2002-07-05
2508
2509         * src/prefs_actions.c: comply with the coding style.
2510           Modified the UI design.
2511         * src/mainwindow.c: main_window_set_menu_sensitive(): enable Actions
2512           menu when multiple messages are selected.
2513
2514 2002-07-05
2515
2516         * src/prefs_actions.[ch]: merged the 'Actions' feature from claws.
2517           update_actions_menu(): simplified the menu deletion.
2518         * src/mainwindow.c: added 'Actions' menu to Tools and Configuration.
2519
2520 2002-07-04
2521
2522         * src/codeconv.[ch]: implemented conv_jistoeuc(), conv_euctojis(),
2523           conv_sjistoeuc(), and conv_guess_encoding(). Removed the dependency
2524           to libkcc.
2525
2526 2002-07-04
2527
2528         * configure.in: added check for strchr.
2529
2530 2002-07-02
2531
2532         * src/prefs_common.[ch]
2533           src/inc.c: added an option to inhibit receive error dialog.
2534
2535 2002-07-01
2536
2537         * src/account.c: account_find_from_address(): support multiple
2538           addresses in header.
2539
2540 2002-06-28
2541
2542         * src/gtksctree.[ch]: changed GtkSCTree::anchor_row from gint to
2543           GtkCTreeNode* so that it won't become invalid after the row move.
2544           Removed dependency to gtkutils.c.
2545         * src/prefs_common.[ch]
2546           src/summaryview.c: summary_selected(): added an option to show
2547           message when cursor keys are pressed on summary view.
2548
2549 2002-06-28
2550
2551         * configure.in
2552           src/Makefile.am
2553           src/compose.c: changed "host_alias" to "target_alias" so that it
2554           shows the correct system name on cross-compiling (thanks to
2555           Patrice Mandin).
2556
2557 2002-06-27
2558
2559         * src/prefs_account.[ch]: added the option menu to force an
2560           authentication method for SMTP AUTH.
2561         * src/send.c
2562           src/smtp.[ch]: smtp_from(), smtp_auth(): added an argument to
2563           specify the authentication method for SMTP AUTH.
2564           smtp_ehlo(): allow AUTH responses that don't comply with the RFC.
2565
2566 2002-06-25
2567
2568         * src/prefs_common.[ch]
2569           src/compose.c: enabled "Wrap on input".
2570
2571 2002-06-25
2572
2573         * src/summaryview.[ch]
2574           src/mainwindow.c: added "Go to/{Prev,Next} new message" menu.
2575           Made some code cleanups.
2576
2577 2002-06-20
2578
2579         * src/folderview.c
2580           src/prefs_common.[ch]: added the hidden option to specify the
2581           policy of the vertical scrollbar on folder view.
2582
2583 2002-06-19
2584
2585         * src/messageview.[ch]:
2586           messageview_copy_clipboard(): fixed a bug that couldn't copy text
2587           on MIME mode.
2588           messageview_get_current_textview(): new.
2589           messageview_get_text_widget(): removed.
2590         * src/quote_fmt_parse.y: quote message even if msginfo is empty.
2591         * src/compose.[ch]: implemented the "Paste as quotation" feature.
2592           text_inserted(): new callback for "insert_text" signal.
2593           Add quote mark to the pasted text if Compose::paste_as_quotation
2594           is TRUE.
2595
2596 2002-06-19
2597
2598         * src/compose.c: if the Content-Type of a file is text/*, check
2599           its content and set the optimal Content-Transfer-Encoding (thanks
2600           to Yoichi Yuasa).
2601
2602 2002-06-18
2603
2604         * src/textview.c: textview_key_pressed(): pass key press event to
2605           main window to activate menu shortcuts (thanks to Alfons).
2606
2607 2002-06-18
2608
2609         * src/folder.c: folder_build_tree(): use strtoul() instead of atoi()
2610           for mtime to prevent flooring.
2611         * src/imap.c:
2612           imap_move_msg()
2613           imap_move_msgs_with_dest()
2614           imap_copy_msgs_with_dest(): fixed a bug that prevented multiple
2615           message copy/move.
2616           imap_parse_envelope()
2617           imap_cmd_envelope(): use RFC822.HEADER instead of ENVELOPE to get
2618           full information of messages and simplify the parser. Also fixed
2619           the bug that References header was ignored on threading.
2620           imap_parse_one_address()
2621           imap_parse_address(): removed.
2622           imap_get_header(): new. It reads the RFC822 header and returns
2623           a newly allocated string.
2624         * src/procheader.[ch]: changed procheader_parse() to
2625           procheader_parse_stream() and added different interfaces for it.
2626
2627 2002-06-17
2628
2629         * po/zh_TW.Big5.po: fixed a mistake that caused a crash.
2630
2631 2002-06-15
2632
2633         * version 0.7.8
2634
2635 2002-06-13
2636
2637         * src/inc.c: inc_get_uidl_table(): fixed a bug that garbage time
2638           could be inserted into the hash table.
2639           inc_write_uidl_list(): a minor code cleanup.
2640         * src/mainwindow.c: main_window_get_current_state():
2641           make the state unexecutable on an empty folder.
2642         * src/summaryview.c: summary_sort(): don't sort on an empty folder.
2643         * src/pop.c: minor code cleanups.
2644
2645 2002-06-12
2646
2647         * src/prefs_account.c: CREATE_RADIO_BUTTONS(): fixed a typo and
2648           corrected the behavior of the radio buttons.
2649
2650 2002-06-11
2651
2652         * implemented 'Delete messages after N days' feature for POP3.
2653         * src/inc.[ch]:
2654           inc_get_uidl_table()
2655           inc_write_uidl_list(): moved the location of UIDL list file from
2656           RC_DIR/uidl-* to RC_DIR/uidl/*.
2657           Added received time for each UIDLs.
2658           src/main.c: main(): create RC_DIR/uidl/ directory.
2659           src/pop.[ch]: LOOKUP_NEXT_MSG(): delete expired messages here.
2660           Added recv_time to Pop3MsgInfo.
2661           src/prefs_account.[ch]: added an option for the number of days for
2662           leaving messages.
2663
2664 2002-06-09
2665
2666         * version 0.7.7
2667
2668 2002-06-07
2669
2670         * src/folder.c: folder_set_missing_folders(): fixed a bug that
2671           caused multiplication of special folders on startup if their
2672           types were changed.
2673         * src/folderview.c: folderview_remove_mailbox_cb(): modified the
2674           label.
2675
2676 2002-06-04
2677
2678         * src/compose.c: compose_reply(), compose_forward(): reverted the
2679           last change since it causes lockup problem.
2680
2681 2002-06-04
2682
2683         * src/compose.c: compose_reply(), compose_forward(): don't autowrap
2684           the signature part.
2685           compose_new_with_recipient(): workaround for initial XIM problem.
2686
2687 2002-06-04
2688
2689         * src/mainwindow.c: sort ascending / descending order can be
2690           specified with separated menu items.
2691           Added "View/Sort/Don't sort" menu item.
2692         * src/summaryview.[ch]: summary_sort(): added an argument for
2693           sort type.
2694
2695 2002-05-31
2696
2697         * implemented persistent sort order.
2698         * src/folder.[ch]:
2699           folder_build_tree(): read 'sort_key' and 'sort_type' attributes.
2700           folder_write_list_recursive(): write sorting state.
2701           src/mainwindow.c
2702           src/summaryview.[ch]: summary_show(): sort if required.
2703           select the top node on descending sort.
2704           Removed SummarySortType and sorting state variables from
2705           SummaryView.
2706
2707 2002-05-30
2708
2709         * src/account.c
2710           src/news.[ch]
2711           src/nntp.[ch]
2712           src/prefs_account.[ch]: enabled NNTP over SSL.
2713         * src/nntp.c: nntp_group(): issue MODE READER command and retry
2714           when GROUP command once failed (this seems to avoid problems on
2715           some broken news servers).
2716
2717 2002-05-30
2718
2719         * faq/it/*.html: corrected DOS linebreaks.
2720         * faq/*/*.html: changed ">" to &quot;.
2721
2722 2002-05-29
2723
2724         * src/prefs_account.c: prefs_account_protocol_activated(): hide
2725           unnecessary frames in SSL tab.
2726
2727 2002-05-29
2728
2729         * src/pop.[ch]
2730           src/inc.c
2731           src/prefs_account.[ch]: enabled STLS command in POP3.
2732         * src/account.c: account_clist_set_row(): display TLS setting.
2733
2734 2002-05-28
2735
2736         * src/compose.c: compose_send_later_cb(): support redirect function.
2737         * src/imap.[ch]
2738           src/ssl.h
2739           src/prefs_account.[ch]: enabled STARTTLS command in IMAP4.
2740         * src/send.c
2741           src/smtp.[ch]: use SSLType instead of SSLSMTPType.
2742
2743 2002-05-28
2744
2745         * src/utils.[ch]: make_dir(): wrapper for mkdir() and chmod().
2746         * src/compose.c: compose_create(): removed unrequired lines.
2747
2748 2002-05-27
2749
2750         * src/news.c: news_scan_group(): fixed a bug that set the wrong
2751           values in some cases.
2752         * src/prefs_account.c: corrected English in Advanced - Folder
2753           settings.
2754
2755 2002-05-23
2756
2757         * src/textview.c: textview_show_message(), textview_show_part():
2758           fixed a bug that GtkSText *text pointed the incorrect object.
2759           textview_add_part(): freeze GtkSText while adding RFC822 headers.
2760           textview_show_part(): fixed a bug that couldn't display single
2761           part MIME message as text.
2762
2763 2002-05-22
2764
2765         * src/compose.c: compose_redirect_write_to_file(): correct the target
2766           for change_file_mode_rw(). Check if fclose() succeeded. Unlink
2767           incomplete file when an error occured.
2768
2769 2002-05-22
2770
2771         * src/compose.c:
2772           compose_create(): disable menus for draft on redirection mode.
2773           compose_redirect_write_to_file(): correct the error handling of
2774           fwrite().
2775         * src/prefs_common.c: turned off the "Display recipient on `From'
2776           column if sender is yourself" option by default.
2777
2778 2002-05-21
2779
2780         * src/compose.[ch]: implemented 'Redirect' (aka Bounce) feature.
2781           Based on the implementation of the claws branch.
2782           compose_redirect(): create a new window and make it uneditable.
2783           compose_redirect_write_to_file(): copy headers and body of
2784           original message except for some.
2785           compose_redirect_write_headers(): add extra "Resent-*" headers.
2786           compose_create(): set menu sensitivity for redirection mode.
2787
2788 2002-05-20
2789
2790         * src/codeconv.c: conv_encode_header(): fixed a bug that unnecessary
2791           space is inserted between encoded string and the following folded
2792           one (thanks to Masahiro Tomita).
2793
2794 2002-05-19
2795
2796         * src/mainwindow.[ch]: some refactoring has been made.
2797           main_window_toggle_message_view(): moved summary_toggle_view_real()
2798           here.
2799         * src/messageview.[ch]: messageview_is_visible(): new.
2800         * src/summary_search.c
2801           src/summaryview.[ch]: SummaryView::msg_is_toggled_on: removed.
2802           Instead use messageview_is_visible().
2803
2804 2002-05-17
2805
2806         * src/mainwindow.c: added 'Expand/Collapse all threads' menu.
2807         * src/summaryview.[ch]:
2808           summary_expand_threads(), summary_collapse_threads(): new.
2809
2810 2002-05-17
2811
2812         * src/mainwindow.c: Fixed the behavior of
2813           '/View/Show or hide/Folder tree' and
2814           '/View/Show or hide/Message view' toggle menu.
2815           Removed '/View/Toggle summary view' menu and integrated the
2816           function into '/View/Show or hide/Message view'.
2817           main_window_set_widgets(): change the state of toggle menu items.
2818         * src/prefs_common.c: prefs_keybind_apply_clicked(): updated menurc
2819           strings.
2820
2821 2002-05-16
2822
2823         * src/mimeview.c: mimeview_set_multipart_tree(): show single part
2824           MIME contents other than text as children of message/rfc822 part.
2825         * src/procmime.c:
2826           procmime_mimeinfo_next(): modified for message/rfc822 part which
2827           content-type is single part MIME.
2828           procmime_scan_multipart_message(): fix for nested message/rfc822
2829           part. Corrected the size of the contents of message/rfc822.
2830         * src/textview.c: textview_show_part(): extract the contents of
2831           multipart/* and message/rfc822. Some code cleanups.
2832           textview_add_parts(): new. It adds the all parts under a part to
2833           textview.
2834           textview_clear(): reset body_pos and cur_pos.
2835
2836 2002-05-16
2837
2838         * src/addr_compl.c: modified so that it behaves better.
2839           get_address_from_edit(): ignore comma inside of brackets.
2840           completion_window_apply_selection(): new. Only apply the current
2841           clist selection.
2842           completion_window_accept_selection(): removed.
2843           address_completion_complete_address_in_entry(): minor code cleanup.
2844           don't replace address in entry here.
2845           completion_window_select_row(): always apply clist selection to
2846           entry.
2847           completion_window_key_press(): don't apply selection here.
2848
2849 2002-05-15
2850
2851         * src/imap.c: imap_create_folder(): keep trailing directory separator
2852           to create a folder that contains sub folder.
2853
2854 2002-05-14
2855
2856         * src/foldersel.c: sort tree with case insensitive.
2857         * src/mainwindow.c: allsel_cb()
2858           src/messageview.c: messageview_select_all(): fixed 'Select all'
2859           on MIME view.
2860         * src/mainwindow.c: removed common and account prefs button from
2861           the toolbar.
2862
2863 2002-05-13
2864
2865         * src/compose.c: compose_account_option_menu_create(): check if
2866           ac->name is NULL.
2867
2868 2002-05-12
2869
2870         * version 0.7.6
2871
2872 2002-05-12
2873
2874         * manual/ja/*: updated the Japanese manual (thanks to Yoichi Imai).
2875           manual/en/*: updated the English manual.
2876         * faq/de/*
2877           faq/it/*: added German and Italian FAQ.
2878         * faq/en/*
2879           faq/es/*
2880           faq/fr/*: updated FAQs.
2881         * src/manual.[ch]
2882           src/mainwindow.c: added German and Italian language.
2883
2884 2002-05-11
2885
2886         * src/prefs_account.c: turn off "receive at get all" option by default
2887           when creating an IMAP or News account.
2888
2889 2002-05-11
2890
2891         * src/imap.c: imap_scan_tree(): don't use namespace for prefix.
2892         * src/prefs_folder_item.c: show also identifier path.
2893           Made layout using table. Show uneditable entry using background
2894           color of window.
2895         * src/procmime.c: procmime_get_tmp_file_name(): generate safe
2896           file name.
2897
2898 2002-05-11
2899
2900         * src/automaton.[ch]: added UI callback to Automaton.
2901         * src/inc.c
2902           src/pop.c: use callback instead of calling inc_progress_update()
2903           directly.
2904           pop3_getrange_uidl_recv(): don't fall back to LAST when 'get all'
2905           option is set.
2906
2907 2002-05-10
2908
2909         * src/folderview.c: properly sort abbreviated newsgroups.
2910
2911 2002-05-10
2912
2913         * src/folderview.c
2914           src/prefs_common.[ch]
2915           src/summaryview.c: added an option to specify the minimum length
2916           for abbreviated newsgroups name.
2917
2918 2002-05-09
2919
2920         * src/folderview.c: folderview_check_new(): skip unselectable folders.
2921         * src/summaryview.c: added 'Create filter rule' to the context menu.
2922         * src/imap.c: some code cleanups.
2923           imap_scan_tree_recursive(): get path separator for each calls.
2924           imap_get_path_separator(): new.
2925
2926 2002-05-08
2927
2928         * src/imap.[ch]: supported namespace for others/shared folders
2929           (in progress).
2930           imap_parse_namespace(): parse also others/shared namespace.
2931           imap_find_namespace(): search also others/shared namespace.
2932         * src/utils.[ch]:
2933           strchr_parenthesis_close(): return pointer to closing parenthesis.
2934           strsplit_parenthesis(): split parenthetic list into array of
2935           strings.
2936
2937 2002-05-08
2938
2939         * src/procheader.c: procheader_date_parse(): fixed a bug that didn't
2940           parse date string like "Mon,6 May 2002 20:31:12 +0800".
2941           procheader_scan_date_string(): new. Separated string scanning
2942           part from procheader_date_parse().
2943
2944 2002-05-07
2945
2946         * src/summary_search.c: summary_search_execute(): unlock while
2947           selecting summary row (thanks to Martin Schaaf).
2948         * src/summaryview.c: summary_set_column_titles(): reversed the
2949           direction of the arrow so that it matches with Win/Mac style.
2950
2951 2002-05-02
2952
2953         * src/compose.c: compose_write_headers(): quote self address name
2954           if required. Some code cleanups. Don't override Newsgroups and
2955           Cc with custom headers.
2956         * src/imap.c: imap_add_msg(): return UID for appended message.
2957         * src/compose.c: compose_queue(): check if queue folder exists.
2958         * src/imap.c: QUOTE_IF_REQUIRED(): quote also other IMAP special
2959           characters.
2960           imap_open(): removed an unrequired argument.
2961
2962 2002-04-25
2963
2964         * src/utils.[ch]: trim_string(): new. It trim characters longer than
2965           the specified length and adds "...".
2966         * src/folderview.c: trim folder name when displaying dialog.
2967
2968 2002-04-23
2969
2970         * src/imap.c: imap_create_folder(): don't add prefix for root INBOX
2971           folder.
2972         * src/folderview.c: folderview_select()
2973           src/summary_search.c: summary_search_execute(): lock summary view
2974           while searching (thanks to Martin Schaaf).
2975
2976 2002-04-21
2977
2978         * version 0.7.5
2979
2980 2002-04-21
2981
2982         * sylpheed*.png: added new app icons by WAKAI Kazunao (thanks!).
2983
2984 2002-04-21
2985
2986         * src/summaryview.c: summary_show(): fixed a bug that didn't process
2987           the left marks.
2988         * src/account.c: account_edit_prefs(): fixed a crash bug when account
2989           name was empty.
2990         * src/prefs_account.c: prefs_account_apply(): display error dialog
2991           if account name is empty.
2992         * src/imap.c: changed some log_print() to debug_print() to reduce
2993           the amount of log.
2994
2995 2002-04-21
2996
2997         * src/mh.c: mh_get_new_msg_filename(): new. It returns the filename
2998           for new message.
2999           mh_add_msg()
3000           mh_do_move()
3001           mh_do_move_msgs_with_dest()
3002           mh_copy_msg()
3003           mh_copy_msgs_with_dest(): use mh_get_new_msg_filename().
3004         * src/utils.[ch]: added is_file_entry_exist() which returns TRUE
3005           if stat() succeeded.
3006         * src/imap.c:
3007           imap_fetch_msg(): SELECT mailbox before FETCH if required.
3008           imap_scan_folder(): set last_num using the value of UIDNEXT.
3009           imap_select(): return immediately if there is no need for SELECT.
3010           preserve the path of currently selected mailbox.
3011           imap_status(): added UIDNEXT.
3012
3013 2002-04-20
3014
3015         * src/folder.c: folder_item_scan(): removed the warning.
3016         * src/inputdialog.[ch]: input_dialog_combo(): added an argument for
3017           setting case sensitivity.
3018
3019 2002-04-17
3020
3021         * src/mainwindow.c: main_window_create(): restrict the minimum size.
3022
3023 2002-04-17
3024
3025         * src/compose.c: merged the new line-wrapping routine.
3026           join_next_line(): fixed a bug that didn't join multibyte
3027           characters.
3028           get_indent_length(): modified enums and variable names.
3029           INDENT_CHARS: don't indent ':'.
3030         * src/folderview.c:
3031           folderview_rename_folder_cb()
3032           folderview_delete_folder_cb(): support folder identifier.
3033           folderview_rm_imap_folder_cb(): integrated with
3034           folderview_delete_folder_cb().
3035
3036 2002-04-15
3037
3038         * src/folder.[ch]: folder_item_scan(): return -1 if scanning failed.
3039         * src/folderview.c: folderview_check_new(): abort checking if
3040           folder_item_scan() failed.
3041
3042 2002-04-15
3043
3044         * src/imap.c: imap_create_missing_folders(): create only INBOX and
3045           Trash.
3046         * src/prefs_folder_item.c: prefs_folder_item_set_dialog(): made the
3047           type of news folders unchangeable.
3048           prefs_folder_item_destroy(): use prefs_dialog_destroy().
3049         * src/prefs.[ch]: prefs_dialog_destroy(): new.
3050
3051 2002-04-15
3052
3053         * src/prefs_account.[ch]: added special folder setting to Advanced
3054           tab. Also moved "IMAP server directory" setting to there.
3055         * src/account.[ch]: account_get_special_folder(): new. It returns
3056           the optimal special folder for accounts.
3057         * src/compose.c: use account_get_special_folder().
3058         * src/prefs_folder_item.[ch]: new. Implemented folder property
3059           dialog, and the special folder settings (most of the functions in
3060           claws are not integrated yet, and the structure is slightly
3061           modified).
3062         * src/folderview.c: enabled Property menu.
3063
3064 2002-04-14
3065
3066         * src/textview.c: IS_RFC822_CHAR(): make email parser also stop
3067           scanning when encountering separators ',' and ';'.
3068
3069 2002-04-12
3070
3071         * src/mainwindow.c: reorderd the menu a bit.
3072         * src/compose.c: made 'Ctrl-Enter' ignore some modifiers.
3073           compose_reply_set_entry(): made 'Reply to sender' work for
3074           newsgroups.
3075
3076 2002-04-11
3077
3078         * src/compose.c: compose_create(): set geometry hints to restrict
3079           the maximum size of window.
3080         * src/imap.c: imap_parse_list(): don't mark INBOX as \Noselect.
3081           imap_get_uncached_messages()
3082           imap_cmd_fetch(): ignore responses which don't include FETCH.
3083
3084 2002-04-11
3085
3086         * COPYING: re-licensed (removal of "NO-VIRUS CLAUSE" and addition of
3087           the clause for OpenSSL).
3088
3089 2002-04-09
3090
3091         * src/prefs_account.c
3092           src/smtp.[ch]: fixed a bug that didn't complie with OpenSSL enabled.
3093
3094 2002-04-09
3095
3096         * src/smtp.[ch]
3097           src/send.c
3098           src/session.[ch]: first reorganization of SMTP protocol handling.
3099           SMTPSession: new class which is a sub class of Session.
3100           smtp_session_new(): moved send_smtp_open() into this function.
3101           smtp_from(): moved SMTP AUTH calls into smtp_auth().
3102           smtp_auth(): use server response for SMTP AUTH method.
3103           smtp_ehlo(): read server response and set auth type flags.
3104           smtp_helo(): separated EHLO command.
3105           smtp_ok(): return the last server response if the buffer is
3106           specified.
3107         * src/esmtp.[ch]: merged into smtp.[ch].
3108         * src/imap.c: imap_session_destroy_all(): use session_destroy().
3109
3110 2002-04-08
3111
3112         * src/imap.c: imap_open(): show warning message if IMAP4 session
3113           can't be established.
3114
3115 2002-04-06
3116
3117         * src/compose.c: made template able to be inserted into the current
3118           cursor position.
3119         * src/mainwindow.c: moved some menu items under the submenu
3120           '/View/Show or hide'.
3121
3122 2002-04-05
3123
3124         * src/filter.c
3125           src/inc.c: changed folder_find_item_from_path() to
3126           folder_find_item_from_identifier().
3127           src/prefs_account.c
3128           src/prefs_filter.c: use folder_item_get_identifier() to specify
3129           folder path.
3130
3131 2002-04-05
3132
3133         * src/folder.[ch]: implemented "folder identifier" (and fixed a bug
3134           existed in claws' implementation).
3135           folder_find_from_name(): find Folder from name and type.
3136           folder_get_identifier(): return Folder id.
3137           folder_item_get_identifier(): return FolderItem id.
3138           folder_find_item_from_identifier(): find FolderItem from id.
3139           folder_get_type_string(): return folder type string.
3140           folder_get_type_from_string(): return FolderType from string
3141           (and fixed the wrong g_strcasecmp() usage).
3142         * src/export.c
3143           src/import.c: use folder_item_get_identifier() and
3144           folder_find_item_from_identifier().
3145
3146 2002-04-03
3147
3148         * src/imap.c: imap_parse_atom(): fixed a bug that cur_pos didn't
3149           point the correct address after reading the continuous line.
3150           imap_scan_folder(): set new number to 0 if unseen number is 0.
3151           imap_parse_flags(): don't add new and unread flag if \Seen flag
3152           exists.
3153         * ac/Makefile.am: removed gpgme.m4 from MACROS.
3154
3155 2002-04-02
3156
3157         * fixed the old problem that couldn't add flags to currently opened
3158           folders.
3159         * src/compose.c:
3160           compose_send(): update outbox after saving.
3161           compose_queue()
3162           compose_draft_cb(): use procmsg_add_flags().
3163         * src/folder.[ch]: added "opened" flag and "mark_queue" list to
3164           FolderItem.
3165         * src/main.c: send_queue(): send from all queue folders.
3166         * src/mainwindow.c: send_queue_cb(): send from all queue folders.
3167         * src/procmsg.[ch]:
3168           procmsg_flush_mark_queue(): new. Write all queued flags into file.
3169           procmsg_add_flags(): new. Add specified flags to the folder.
3170           procmsg_send_queue(): added an argument to specify queue folder.
3171           procmsg_save_to_outbox(): use procmsg_add_flags().
3172         * src/summaryview.c:
3173           summary_show(): up the opened flag of FolderItem.
3174           summary_clear_list(): down the opened flag of FolderItem.
3175           summary_write_cache(): call procmsg_flush_mark_queue().
3176
3177 2002-04-01
3178
3179         * src/summaryview.[ch]: trim the tail of folder name and selected
3180           number on the status label if the space is not enough.
3181
3182 2002-04-01
3183
3184         * src/imap.c: imap_create_special_folder(): fixed a bug that didn't
3185           set SpecialFolderItemType when creating special folders under
3186           INBOX.
3187         * ac/gpgme.m4: removed.
3188         * ac/README: added.
3189         * ac/missing/gdk-pixbuf.m4
3190           ac/missing/gettext.m4
3191           ac/missing/gpgme.m4
3192           ac/missing/imlib.m4: added for convenience.
3193
3194 2002-03-29
3195
3196         * src/esmtp.c: esmtp_auth(): fixed a bug that some garbages are
3197           shown after the decoded challenge string. Fixed a memory leak.
3198           Removed strtok().
3199         * src/compose.c: compose_draft_cb(): mark draft messages as read.
3200         * src/folderview.c: folderview_update_node(): disable emphasis
3201           for Outbox and Draft folders.
3202
3203 2002-03-28
3204
3205         * src/messageview.c: messageview_show(): fixed a memory leak.
3206         * src/summaryview.c: summary_save_as(): show error dialog if copy
3207           failed.
3208         * src/about.c: about_show(): make the window active if it is already
3209           open.
3210
3211 2002-03-27
3212
3213         * src/compose.c: show confirmation dialog before sending if Subject
3214           is empty.
3215           compose_check_entries(): new.
3216           compose_send()
3217           compose_send_later_cb(): use compose_check_entries().
3218         * src/imap.c: imap_parse_atom(): more fix for parsing responses.
3219
3220 2002-03-26
3221
3222         * src/imap.c: imap_parse_atom(): fixed a bug that didn't parse the
3223           responses with continuous line correctly, and fixed a memory leak.
3224
3225 2002-03-26
3226
3227         * src/undo.c: undo_insert_text_cb(): fixed a crash bug if the text
3228           length is large.
3229         * src/gtkstext.c: gtk_stext_button_press(): cancel current selection
3230           after pasting with middle button to prevent the selection growth.
3231
3232 2002-03-25
3233
3234         * src/folderview.c:
3235           folderview_rename_folder_cb()
3236           folderview_delete_folder_cb(): modify filter rules only if the
3237           target folder is in the default mailbox.
3238         * src/utils.c: get_abbrev_newsgroup_name(): removed a redundant
3239           line.
3240
3241 2002-03-23
3242
3243         * src/compose.c
3244           src/mainwindow.c
3245           src/prefs_common.c: changed 'Tool' menu to 'Tools'.
3246           Moved 'Delete duplicated messages' under 'Tools'.
3247
3248 2002-03-23
3249
3250         * src/folderview.c: SET_SPECIAL_FOLDER(): keep the same parent
3251           when moving.
3252         * src/imap.c: imap_create_special_folder(): fixed a crash bug
3253           when folder creation failed, and re-try to create folders under
3254           INBOX.
3255           imap_scan_tree_recursive(): don't automatically add namespace
3256           prefix if it's INBOX. Search also under the INBOX for special
3257           folders.
3258         * src/foldersel.c: SET_SPECIAL_FOLDER(): keep the same parent
3259           when moving.
3260
3261 2002-03-23
3262
3263         * src/utils.[ch]: get_abbrev_newsgroup_name(): new. It returns the
3264           abbreviated newsgroup name.
3265         * src/folderview.c: folderview_update_node(): display newsgroups
3266           with abbreviated name if name and path is the same.
3267         * src/summaryview.c: summary_status_show(): show the newsgroup with
3268           abbreviated name.
3269
3270 2002-03-23
3271
3272         * src/foldersel.c
3273           src/folderview.c: changed the label 'Draft' to 'Drafts'.
3274         * src/imap.c: changed the directory name 'Draft' to 'Drafts'.
3275           imap_create_missing_folders(): fixed the wrong assignment of
3276           Queue folder to draft.
3277
3278 2002-03-22
3279
3280         * enabled Sent / Draft / Queue folders on IMAP server.
3281         * src/compose.c: compose_queue(), compose_draft_cb(): use account's
3282           queue and draft folder if they exist.
3283           src/imap.[ch]:
3284           imap_create_trash(): removed.
3285           imap_create_special_folder(): new. Generalized imap_create_trash().
3286           imap_create_missing_folders(): automatically create missing folders.
3287           imap_is_msg_changed(): added the dummy method.
3288           imap_scan_tree_recursive(): search also Sent, Draft and Queue
3289           folders. Minor code cleanups.
3290           imap_parse_envelope(): check for null strings.
3291           src/procmsg.c: procmsg_read_cache(): add F_QUEUE or F_DRAFT flag
3292           for messages on IMAP folder.
3293
3294 2002-03-20
3295
3296         * src/compose.c: compose_send(): use account's outbox folder
3297           if it exists.
3298         * src/procmsg.[ch]: procmsg_save_to_outbox(): changed the API so
3299           that the outbox can be specified.
3300
3301 2002-03-20
3302
3303         * src/compose.c: don't save to outbox when messages are queued.
3304           compose_save_to_outbox(): moved to procmsg.c.
3305         * src/procmsg.[ch]: procmsg_send_queue(): save to outbox when
3306           sending succeeded.
3307           procmsg_save_to_outbox(): new. Removes the queueing headers if
3308           needed, and adds the given file to the outbox.
3309
3310 2002-03-20
3311
3312         * src/compose.c: compose_wrap_line(): treat '|' also as quote char.
3313           get_indent_length(): treat ':' and '#' also as quote char, and
3314           cleaned up using strchr().
3315
3316 2002-03-19
3317
3318         * src/mainwindow.c: modified some menu items.
3319
3320 2002-03-19
3321
3322         * src/defs.h: changed OUTBOX_DIR from "outbox" to "sent"
3323           (current "outbox" will be kept until rescan).
3324         * src/folder.c: folder_set_missing_folders(): create the missing
3325           folders.
3326         * src/foldersel.c
3327           src/folderview.c: changed 'Outbox' to 'Sent'.
3328         * src/main.c: call folder_set_missing_folders().
3329         * src/mh.c: mh_scan_tree(): create missing folders.
3330         * src/summaryview.c: summary_set_menu_sensitive(): fixed a bug that
3331           didn't set the menu sensitivity correctly.
3332
3333 2002-03-18
3334
3335         * src/folderview.c
3336           src/imap.[ch]: implemented folder renaming on IMAP (thanks to Mio).
3337           folderview_rename_folder_cb(): reopen the current folder when
3338           the ancestor is renamed.
3339           imap_rename_folder(): new method implementation.
3340           imap_cmd_rename()
3341           imap_rename_folder_func(): new.
3342           imap_remove_folder(): remove also the cache directory.
3343
3344 2002-03-17
3345
3346         * src/imap.c: implemented locale encoding <-> modified utf-7
3347           conversion, and supported i18n of folder name (thanks to Suzuki
3348           Mio).
3349           imap_path_separator_subst(): handle the escape characters of
3350           modified utf-7.
3351           imap_modified_utf7_to_locale()
3352           imap_locale_to_modified_utf7(): new.
3353           imap_create_trash(): modified so that it create the Trash folder
3354           to the correct location when imap directory is specified.
3355           imap_get_real_path(): removed debug print.
3356
3357 2002-03-14
3358
3359         * src/socket.c: implemented timeout for DNS lookup and connect().
3360           sock_connect_by_hostname(): timeout support and code cleanup.
3361           sock_connect_with_timeout(): new.
3362           sock_peek(): implemented SSL peek.
3363
3364 2002-03-13
3365
3366         * src/messageview.c: messageview_show(): display single-part
3367           text/html messages with the normal text view.
3368         * src/account.c
3369           src/addrbook.c
3370           src/addrindex.c
3371           src/compose.c
3372           src/imap.c
3373           src/inc.c
3374           src/jpilot.c
3375           src/ldif.c
3376           src/mbox.c
3377           src/mimeview.c
3378           src/news.c
3379           src/prefs.c
3380           src/prefs_common.c
3381           src/prefs_customheader.c
3382           src/prefs_display_header.c
3383           src/prefs_filter.c
3384           src/procheader.c
3385           src/procmime.c
3386           src/procmsg.c
3387           src/recv.c
3388           src/rfc2015.c
3389           src/send.c
3390           src/sourcewindow.c
3391           src/summaryview.c
3392           src/template.c
3393           src/textview.c
3394           src/unmime.c
3395           src/utils.c
3396           src/vcard.c
3397           src/xml.c: added 'b' to the option of all fopen().
3398
3399 2002-03-09
3400
3401         * version 0.7.4
3402
3403 2002-03-09
3404
3405         * src/ssl.[ch]: match its coding style.
3406         * src/compose.c: compose_send_later_cb(): fixed a bug that failed
3407           to save file.
3408         * faq/Makefile.am
3409           faq/en/Makefile.am
3410           faq/en/sylpheed-faq*.html
3411           faq/es/Makefile.am
3412           faq/es/sylpheed-faq*.html
3413           faq/fr/Makefile.am
3414           faq/fr/sylpheed-faq*.html
3415           configure.in
3416           Makefile.am
3417           src/Makefile.am
3418           src/defs.h
3419           src/mainwindow.c
3420           src/manual.[ch]: added FAQs in English, Spanish and French.
3421
3422 2002-03-07
3423
3424         * manual/en/sylpheed*.html: updated to the latest version.
3425         * libkcc/jis.c
3426           src/addrcache.c
3427           src/addritem.c
3428           src/ldif.c
3429           src/mgutils.c: include string.h to remove warning about strlen()
3430           etc.
3431         * src/folder.c
3432           src/folderview.c
3433           src/inc.c
3434           src/logwindow.c
3435           src/mainwindow.c
3436           src/mimeview.c
3437           src/prefs.c
3438           src/prefs_common.c
3439           src/procheader.c
3440           src/send.c
3441           src/session.c
3442           src/sigstatus.c
3443           src/summaryview.c: added break to the last label of switch to
3444           prevent the 'deprecated use of label at end of compound statement'
3445           warning at gcc-3.0.
3446         * src/rfc2015.c: passphrase_cb(): fixed the type of r_hd.
3447
3448 2002-03-06
3449
3450         * src/inc.[ch]: preserve the pointer to IncProgressDialog to the
3451           static list.
3452           inc_cancel_all(): new. It cancels the all current incorporation.
3453         * src/mainwindow.c: added 'Cancel receiving' menu.
3454         * src/textview.c: a minor fix for single-part MIME messages, and
3455           a bit of cleanup for textview_write_body().
3456
3457 2002-03-05
3458
3459         * src/inc.c: inc_write_uidl_list(): fixed a bug that lost UIDL
3460           information if any errors occured before issuing UIDL command.
3461           src/inc.h: added uidl_is_valid to Pop3State.
3462           src/pop.c: set uidl_is_valid to TRUE if UIDL becomes valid.
3463
3464 2002-03-03
3465
3466         * version 0.7.3
3467
3468 2002-03-03
3469
3470         * src/mimeview.c: mimeview_create(): set the initial notebook page
3471           to 0.
3472         * src/folderview.c: folderview_selected(): scroll the view if the
3473           selected row is hidden.
3474         * src/prefs_filter.c: prefs_filter_register_cb(): scroll the view
3475           and select the added row.
3476         * src/summaryview.c: fix threading for null message ids.
3477
3478 2002-03-02
3479
3480         * src/textview.c: textview_show_message(): follow message/rfc822
3481           parts.
3482           textview_add_part(): add a caption before the attached text files.
3483           textview_show_header(): don't add the newline.
3484         * src/messageview.c: enabled message search also in MIME mode.
3485
3486 2002-03-01
3487
3488         * src/messageview.c: messageview_show(): set header state of
3489           MimeView's TextView, too.
3490         * src/mimeview.c: mimeview_show_message(): call
3491           textview_show_message() to display message.
3492         * src/textview.c: textview_add_part(): new. It adds the content
3493           of message part without clearing the view.
3494           textview_show_message(): display all parts with appropriate
3495           style.
3496           textview_write_body(): separated from textview_show_part().
3497
3498 2002-02-28
3499
3500         * src/mainwindow.c
3501           src/prefs_common.c: added ISO-8859-15 to the codesets for
3502           displaying and sending.
3503         * src/codeconv.c: conv_codeset_strdup(): return NULL if code
3504           conversion failed, and made caller deal with it.
3505         * src/compose.c: compose_write_to_file(): show error dialog when
3506           code conversion failed, and let user select whether to send it
3507           as is or not.
3508         * src/textview.c: textview_write_line(): show the original string
3509           if code conversion failed.
3510
3511 2002-02-27
3512
3513         * src/inc.c: get_spool(): fixed a bug that failed to unlock mbox
3514           if copy_mbox() failed (thanks to Alexander Kabaev).
3515         * src/prefs_account.[ch]: added separate user ID / password setting
3516           for SMTP AUTH.
3517         * src/send.c: send_message_smtp(): use separate user ID / password
3518           for SMTP AUTH if it is specified.
3519
3520 2002-02-26
3521
3522         * src/inc.[ch]
3523           src/pop.[ch]: refactored the UIDL management.
3524           store the information of messages into the array of Pop3MsgInfo
3525           structure, and do full scanning of not retrieved messages.
3526
3527 2002-02-26
3528
3529         * src/filesel.c
3530           src/foldersel.c
3531           src/mainwindow.c: set WMCLASS for window/dialog.
3532         * src/codeconv.c: conv_codeset_strdup(): return source string
3533           when jconv_alloc_conv() failed.
3534
3535 2002-02-25
3536
3537         * src/mh.c: mh_scan_tree_recursive(): changed the hardcoded directory
3538           name to the macros.
3539
3540 2002-02-24
3541
3542         * src/messageview.c
3543           src/mimeview.[ch]
3544           src/summaryview.c: implemented the new notebook tab interface for
3545           MIME message.
3546         * src/textview.[ch]: fixed line space related glitches.
3547
3548 2002-02-23
3549
3550         * src/prefs_filter.c:
3551           prefs_filter_rename_path()
3552           prefs_filter_delete_path(): fixed a crash when flt->dest was NULL.
3553
3554 2002-02-23
3555
3556         * src/recv.[ch]: cancel data receiving if RecvUIFunc returns FALSE.
3557         * src/pop.c: pop3_retr_recv(): fixed false 'No space' when cancelled
3558           while getting data.
3559         * src/inc.c: inc_pop3_recv_func(): abort data receiving when
3560           cancelled, and fixed potential crash bug.
3561         * src/grouplistdialog.c: enabled cancelling of data receiving.
3562         * src/news.c: news_get_group_list(): destroy current session if
3563           retrieving failed.
3564
3565 2002-02-22
3566
3567         * src/manage_window.[ch]: fixed a bug that caused crash when
3568           the main window was hidden.
3569           MANAGE_WINDOW_SIGNALS_CONNECT(): new macro.
3570           Monitor "unmap_event", "destroy" events.
3571         * src/account.c;
3572           src/addressbook.c
3573           src/compose.c
3574           src/export.c
3575           src/filesel.c
3576           src/foldersel.c
3577           src/grouplistdialog.c
3578           src/import.c
3579           src/inputdialog.c
3580           src/mainwindow.c
3581           src/message_search.c
3582           src/passphrase.c
3583           src/prefs_account.c
3584           src/prefs_common.c
3585           src/prefs_customheader.c
3586           src/prefs_display_header.c
3587           src/prefs_filter.c
3588           src/prefs_template.c
3589           src/summary_search.c
3590           src/summaryview.c: use MANAGE_WINDOW_SIGNALS_CONNECT() macro to
3591           connect signals for window management.
3592
3593 2002-02-21
3594
3595         * src/prefs_account.[ch]: added receive size limit option.
3596         * src/pop.c: skip messages larger than the limit size.
3597           LOOKUP_NEXT_MSG(): new macro.
3598         * src/compose.c: compose_attach_append(): check whether the file
3599           is readable.
3600
3601 2002-02-21
3602
3603         * src/rfc2015.c: commented out dump_mimeinfo() and dump_part().
3604           changed g_message()'s to debug_print() and g_warning().
3605           rfc2015_decrypt_message(): fixed a bug that duplicated message
3606           parts when decryption was failed/cancelled. And made some code
3607           cleanup.
3608         * src/passphrase.c: made the dialog transient.
3609         * src/prefs.c: prefs_config_parse_one_line(): removed debug_print().
3610
3611 2002-02-20
3612
3613         * src/messageview.c
3614           src/procmsg.[ch]: fixed a bug that failed to parse multipart
3615           messages if GPGME was enabled.
3616         * src/rfc2015.c: commented out copy_gpgmedata_to_temp() which
3617           is not used.
3618         * src/prefs_account.c: prefs_account_privacy_create(): modified
3619           the vertical spacing.
3620
3621 2002-02-19
3622
3623         * src/menu.[ch]: menu_set_sensitive_all(): new.
3624           menu_set_insensitive_all(): made it a wrapper for
3625           menu_set_sensitive_all().
3626         * src/prefs_account.c:
3627           prefs_account_open()
3628           prefs_account_protocol_set_optmenu(): made the protocol type
3629           unchangeable after creating an account.
3630         * src/compose.c: compose_attach_parts(): traverse MIME tree to
3631           extract all attathed files from nested multipart MIME message.
3632
3633 2002-02-19
3634
3635         * src/procmsg.[ch]: procmsg_get_mark_sum(): added arguments to
3636           obtain minimum/maximum number, and to specify first number
3637           limit.
3638         * src/folderview.c
3639           src/inc.c: enabled new message checking on news folder.
3640         * src/news.c: news_scan_group(): implemented. Guess new/unread
3641           message number from the response of GROUP command and the mark
3642           data.
3643           news_select_group(): return the total/first/last number.
3644         * src/prefs_account.c: prefs_account_receive_create(): modified
3645           the text of the 'Get all' check button.
3646
3647 2002-02-18
3648
3649         * src/account.c: made 'Get all' checkbox available for IMAP4 and
3650           NNTP accounts.
3651         * src/inc.c: corrected the argument of folderview_check_new().
3652         * src/prefs_account.c: modification for the "`Get all' checks for
3653           new mail on this account" checkbox.
3654
3655 2002-02-18
3656
3657         * src/folderview.[ch]:
3658           folderview_rescan_tree(), folderview_rescan_all(): renamed from
3659           folderview_update_tree() and folderview_update_all().
3660           folderview_update_all_node(): removed.
3661           folderview_check_new(): new. If the argument is NULL, it checks
3662           all local folders. If the arguments is specified, it checks
3663           the (local and remote) folder.
3664         * src/inc.c:
3665           inc_account_mail()
3666           inc_all_account_mail(): check also IMAP4 account.
3667
3668 2002-02-18
3669
3670         * src/folderview.c:
3671           folderview_rename_folder_cb()
3672           folderview_delete_folder_cb(): modify the filter rules when folder
3673           is renamed/deleted.
3674         * src/prefs_filter.[ch]:
3675           prefs_filter_rename_path(): new. It renames the destination paths
3676           in the filter list.
3677           prefs_filter_delete_path(): new. It deletes the filter rules if
3678           the destination paths matched.
3679         * thanks to Neill Miller for above.
3680
3681 2002-02-17
3682
3683         * src/compose.c: inherit attached files when forwarding or reediting
3684           (rewrote the code in claws branch).
3685           compose_attach_parts(): new. It extracts and attaches the files
3686           in the given message.
3687           compose_attach_append(): chnaged the types of arguments.
3688         * src/messageview.c: messageview_show(): moved the GPG decryption
3689           code to procmsg.c.
3690         * src/procmsg.[ch]: procmsg_open_message_decrypted(): new.
3691
3692 2002-02-16
3693
3694         * version 0.7.2
3695
3696 2002-02-16
3697
3698         * src/summary_search(): summary_search_execute(): scroll the view
3699           when message view is hidden.
3700
3701 2002-02-15
3702
3703         * src/foldersel.c: foldersel_set_tree(): made different type of
3704           folders selectable in moving mode.
3705         * src/folderview.[ch]: folderview_update_msg_num(): compare the
3706           numbers with the CTree's labels, and don't update folder_item here.
3707         * src/imap.c: imap_move_msg(), imap_move_msgs_with_dest():
3708           implemented moving between different type of folders.
3709         * src/mh.c: SET_DEST_MSG_FLAGS(): new macro.
3710           mh_do_move(), mh_do_move_msgs_with_dest(): new (renamed previous
3711           mh_move_msg() and mh_move_msgs_with_dest()).
3712           mh_move_msg(), mh_move_msgs_with_dest(): implemented message
3713           moving between different type of folders.
3714           mh_copy_msg(), mh_copy_msgs_with_dest(): some code cleanups.
3715         * src/summaryview.c: summary_status_show(): update folder_item
3716           here.
3717         * po/POTFILES.in: removed reference to headerwindow.c.
3718         * src/summaryview.c: summary_step(): fixed the behavior on the
3719           head and tail of the list.
3720
3721 2002-02-15
3722
3723         * src/mainwindow.c: main_window_set_menu_sensitive(): set 'Show
3724           all header' toggle state from the property of the TextView.
3725         * src/summaryview.[ch]: made 'All header' toggle switch.
3726           Prohibited unnecessary menu update.
3727           summary_select_node(): added the argument 'do_refresh'.
3728           Some code cleanups.
3729
3730 2002-02-14
3731
3732         * src/utils.c: strsplit_with_quote(): remove quotation characters
3733           in the function (fix composer's external editor problem) (thanks
3734           to Stefaan A Eeckels).
3735         * src/mainwindow.[ch]: made 'Show all header' toggle switch.
3736           main_window_menu_callback_block()
3737           main_window_menu_callback_unblock(): new.
3738           main_window_set_menu_sensitive(): set the toggle status of
3739           menu items.
3740           show_all_header_cb(): read the status of toggle menu item.
3741         * src/mainwindow.[ch]: made 'Thread view' toggle switch.
3742         * src/prefs_common.c: prefs_keybind_apply_clicked(): removed
3743           'Unthread view'.
3744
3745 2002-02-13
3746
3747         * src/imap.c: imap_add_msg(): fixed a bug that didn't replace
3748           the path separator (thanks to Sergey Vlasov).
3749         * src/gtkutils.c: gtkut_editable_get_selection(): return NULL
3750           if the length of selection is zero.
3751           Fixed the assertion.
3752         * src/utils.c: str_open_as_stream(): return immediately if
3753           the length of str is zero.
3754         * src/headerwindow.[ch]: removed.
3755         * src/socket.[ch]
3756           src/inc.c: removed stale thread support codes.
3757
3758 2002-02-12
3759
3760         * src/procmsg.c: procmsg_open_message(): modified so that it
3761           returns the stream of decrypted message file if it exists
3762           (this fixes the failure of gpg decryption in messageview.c).
3763
3764 2002-02-11
3765
3766         * version 0.7.1
3767
3768 2002-02-11
3769
3770         * src/compose.[ch]
3771           src/gtkutils.[ch]
3772           src/prefs_template.c
3773           src/quote_fmt.h
3774           src/quote_fmt_parse.y
3775           src/summaryview.c
3776           src/utils.[ch]: if the part of the message text is selected, use
3777           it for quoted text instead of the entire message body (thanks to
3778           Darko Koruga).
3779           src/utils.[ch]: str_open_as_stream(): new. It returns an
3780           temporary stream for the given string.
3781         * src/main.c: added "--send" command line option.
3782         * src/compose.c: compose_reply_set_entry(): add From address to
3783           Cc if Reply-To and to_all are both specified.
3784         * Makefile.am: correct the Source: line in the RPM spec file in
3785           .tar.bz2 package.
3786
3787 2002-02-07
3788
3789         * src/procmsg.c: procmsg_open_message(): fetch message if the cache
3790           doesn't exist.
3791         * src/foldersel.[ch]: foldersel_folder_sel(): added an argument
3792           that specifies the folder selection type.
3793         * src/addressbook.c
3794           src/compose.c
3795           src/editaddress.c
3796           src/editgroup.c
3797           src/folderview.c
3798           src/importldif.c
3799           src/mainwindow.c
3800           src/md5.c
3801           src/mimeview.c
3802           src/prefs_common.c
3803           src/prefs_customheader.c
3804           src/prefs_filter.c
3805           src/summaryview.c: made it compile with C compilers other than gcc
3806           (thanks to Shawn Houston).
3807
3808 2002-02-06
3809
3810         * src/imap.c: imap_copy_msgs_with_dest(): fixed a bug on traversing
3811           list.
3812         * src/prefs_common.c: made the key binding setting separate dialog.
3813         * src/addressbook.c: addressbook_format_address(): add "" around
3814           the display name if it contains comma (thanks to Satoshi Watanabe).
3815         * src/addr_compl.c: get_complete_address(): add "" around the
3816           display name if it contains comma.
3817           get_address_from_edit(): handle the quotation character correctly.
3818         * src/addr_compl.c: get_complete_address()
3819           src/addressbook.c: addressbook_format_address(): fixed a bug that
3820           caused wrong text processing if the display name is empty.
3821         * updated NEWS.
3822
3823 2002-02-05
3824
3825         * src/compose.c: compose_exec_ext_editor_real(): replaced
3826           g_strsplit() with strsplit_with_quote().
3827         * src/foldersel.c
3828           src/folderview.c: folderview_drag_motion_cb(): minor code cleanups.
3829         * src/folderview.c:
3830           folderview_drag_motion_cb()
3831           folderview_drag_received_cb(): allow dropping into IMAP4 folder.
3832         * src/utils.c: get_file_size_as_crlf(): use fgets() instead of
3833           fread().
3834         * src/imap.c
3835           imap_copy_msg()
3836           imap_copy_msgs_with_dest(): use imap_add_msg() if the source
3837           of the message is different from the current mailbox.
3838           Return the correct value.
3839           imap_cmd_append(): properly implemented the APPEND command.
3840
3841 2002-02-04
3842
3843         * src/mainwindow.c
3844           src/messageview.[ch]
3845           src/summaryview.[ch]
3846           src/textview.[ch]: show all headers in the message view, and don't
3847           use the header window anymore.
3848         * src/mainwindow.c
3849           src/prefs_common.c: changed the default shortcut of 'compose new
3850           message'.
3851         * src/mainwindow.c
3852           src/summaryview.[ch]: summary_display_msg_selected(): new.
3853           Show the selected message if 'Show all header' is selected.
3854         * src/mh.c
3855           src/sourcewindow.c: changed some procmsg_get_message_file_path()
3856           to procmsg_get_message_file() to be sure the message is
3857           retrieved.
3858         * src/folderview.c: folderview_drag_motion_cb(): allow DnD from
3859           any folder to MH folder.
3860           folderview_drag_received_cb(): copy messages instead of moving
3861           if the source folder is news or IMAP.
3862         * src/mainwindow.c
3863           src/summaryview.c: allow copy from news folder.
3864
3865 2002-02-03
3866
3867         * src/prefs_common.c: prefs_other_create(): modified the design
3868           of the external command settings.
3869           prefs_keybind_apply_clicked(): made the Mew / Wanderlust keybind
3870           preset closer to the original.
3871           Added Mutt keybind preset.
3872           Also change the compose keybinds.
3873         * src/compose.c: modified some menu shortcuts.
3874         * src/codeconv.c: modified the locale_table for Thai encoding.
3875
3876 2002-02-01
3877
3878         * src/Makefile.am: added $(GPGME_CFLAGS) to INCLUDES.
3879         * src/prefs_common.c: prefs_interface_create(): modified the
3880           description for menu shortcut.
3881
3882 2002-01-31
3883
3884         * src/gtkutils.[ch]: added gtk_stext_clear().
3885         * src/compose.[ch]
3886           src/mainwindow.c
3887           src/summaryview.[ch]: enabled multiple forwarding.
3888         * src/summaryview.c:
3889           summary_set_marks_selected(): set marks for all selected row.
3890           summary_reply(): moved from summary_reply_cb().
3891         * compose.[ch]: compose_forward(): modified so that it receives
3892           the message list.
3893         * src/mainwindow.c: cleanup for reply processing.
3894         * src/summaryview.c: summary_reply(): fixed a memory leak.
3895           summary_key_pressed(): removed hardcoded mark / mark as unread
3896           shortcuts.
3897         * src/mainwindow.c
3898           src/prefs_common.c: added mark / mark as unread shortcuts to
3899           the menu.
3900
3901 2002-01-30
3902
3903         * src/compose.c: compose_wrap_line_all(): wrap quoted part even
3904           if prefs_common.linewrap_quote is not set (it is only for
3905           auto-wrapping on reply).
3906         * src/prefs_account.c: prefs_account_open(): initialize tmp_ac_prefs
3907           when creating a new account.
3908         * src/mh.c: mh_get_msg_list(): use also st_ctime to detect
3909           directory change.
3910         * src/prefs_common.c: prefs_interface_create(): modified the
3911           description of key binds selector.
3912
3913 2002-01-29
3914
3915         * src/mimeview.c: fixed multiple dialog / moving by correcting
3916           button / key event processing.
3917         * src/mimeview.[ch]
3918           src/textview.c: pass some key press events to MimeView in MIME
3919           mode.
3920         * src/prefs_filter.c: fixed a bug that didn't set the order of
3921           rules correctly.
3922         * src/prefs_common.c: prefs_keybind_apply_clicked(): fixed
3923           empty_menurc string.
3924
3925 2002-01-28
3926
3927         * src/mainwindow.c
3928           src/prefs_common.c: reorganized the menu shortcuts.
3929           Added 'View - Toggle summary view'.
3930         * src/summaryview.[ch]: summary_toggle_view(): made it public
3931           function.
3932         * src/prefs_common.[ch]: swapped the position of 'Shortcut key'
3933           and 'On exit'.
3934         * src/importldif.c: imp_ldif_delete_event(): fixed segfault when
3935           closing the dialog with window manager (in more appropriate way).
3936         * src/imageview.[ch]
3937           src/messageview.c
3938           src/mimeview.c: fixed wrong scrolling position when switching
3939           between text and image parts. Also free the unrequired image
3940           (thanks to Sergey Vlasov).
3941         * src/prefs_common.c: disabled 'Go to inbox after receiving new mail'
3942           by default.
3943
3944 2002-01-28
3945
3946         * src/prefs_common.c: implemented shortcut quick changer.
3947         * src/folderview.c: folderview_key_pressed()
3948           src/summaryview.c: summary_key_pressed(): removed some hardcoded
3949           key binds.
3950
3951 2002-01-25
3952
3953         * src/procmime.c:
3954           procmime_get_mime_type()
3955           procmime_get_mime_type_table(): made the MIME type search case
3956           insensitive.
3957         * src/gtkstext.c:
3958           gtk_stext_delete_line(): delete newline on empty line.
3959           gtk_stext_delete_to_line_end(): delete newline if cursor is on
3960           the last of line.
3961           (thanks to Yasuzaki Masayoshi.)
3962
3963 2002-01-23
3964
3965         * src/compose.c
3966           src/gtkstext.[ch]: removed the hardcoded shortcuts in GtkSText,
3967           and made them customizable.
3968         * src/utils.[ch]: added get_file_size_as_crlf() which returns
3969           the file size when converting LF to CR+LF.
3970
3971 2002-01-22
3972
3973         * src/compose.c: enabled 'Ctrl-Enter' or
3974           'Ctrl-(other modifier keys)-Enter' shortcut that didn't work
3975           before.
3976         * src/gtkstext.c: disabled some Emacs key bindings.
3977           gtk_stext_key_press(): don't extend selection when Shift-Enter
3978           is pressed to prevent the disapperance of cursor.
3979         * src/summaryview.c: summary_select_next_unread(): added the button
3980           to search unread message again from the beginning to the dialog.
3981         * src/folderview.c: folderview_key_pressed(): go to next unread
3982           folder if space key is pressed on the empty folder.
3983           Move CTree focus before selecting row.
3984
3985 2002-01-21
3986
3987         * src/defs.h: modified the XLFD of default fonts.
3988         * src/textview.c: textview_create(): fixed a bug that caused
3989           segfault if font couldn't be loaded.
3990         * src/folderview.c
3991           src/grouplistdialog.c: compare subscribed groups with path.
3992         * src/prefs_filter.c: changed 'Operator' to 'Condition'.
3993
3994 2002-01-20
3995
3996         * src/compose.c: compose_wrap_line_all(): fixed wrapping crash
3997           when URL is wider than wrapping margin.
3998         * src/mainwindow.c
3999           src/prefs_filter.[ch]
4000           src/summaryview.[ch]: added "Create filter rule" function based
4001           on the patch from Luca Rosellini.
4002         * src/summaryview.c: summary_filter_open(): added X-List and
4003           X-Mailing-list to the automatically detected headers.
4004
4005 2002-01-18
4006
4007         * configure.in: support Mac OS X (Darwin).
4008
4009 2002-01-16
4010
4011         * src/prefs_filter.c: use inc_(un)lock() instead of
4012           inc_autocheck_timer_{remove|set}().
4013         * src/summaryview.c: summary_sort(): use gtk_ctree_sort_recursive()
4014           instead of gtk_ctree_sort_node() so that messages within threads
4015           are also sorted.
4016         * src/procmsg.c: procmsg_read_mark_file(): fixed a bug that the
4017           target of sizeof was wrong and caused crash on Alpha architecture
4018           (thanks to Motonobu Ichimura).
4019
4020 2002-01-15
4021
4022         * src/foldersel.c:
4023           foldersel_gnode_func(): made the names of special folders
4024           translated strings.
4025           foldersel_set_tree(): move the special folder to the top.
4026         * src/inputdialog.[ch]: input_dialog_query_password(): new.
4027         * src/imap.c
4028           src/inc.c
4029           src/news.c
4030           src/send.c: use input_dialog_query_password() instead of their
4031           own query functions.
4032
4033 2002-01-14
4034
4035         * src/defs.h: modified the default font.
4036         * src/folder.[ch]
4037           src/mh.[ch]
4038           src/imap.[ch]
4039           src/news.[ch]: moved the class definition and some methods to
4040           the proper location.
4041
4042 2002-01-11
4043
4044         * src/mimeview.c: mimeview_save_as()
4045           src/summaryview.c: summary_save_as(): put the default filename
4046           based on the subject.
4047         * src/utils.[ch]: added subst_chars() and subst_for_filename()
4048           which substitute some special characters with underscore.
4049         * src/filesel.c: filesel_select_file(): select the default filename.
4050
4051 2002-01-10
4052
4053         * INSTALL
4054           INSTALL.jp: added the description and the URL for libjconv.
4055         * src/mainwindow.c: menu entries cleanup.
4056
4057 2002-01-09
4058
4059         * README
4060           README.jp
4061           src/about.c: modified the copyright year.
4062         * src/gtkstext.h: added the notice for modification by the Sylpheed
4063           Team.
4064
4065 2002-01-08
4066
4067         * INSTALL
4068           INSTALL.jp: added the URL for compface.
4069
4070 2002-01-07
4071
4072         * version 0.7.0
4073
4074 2002-01-07
4075
4076         * src/headerwindow.c
4077           src/logwindow.c
4078           src/messageview.c
4079           src/sourcewindow.c: set wmclass when creating windows.
4080
4081 2002-01-04
4082
4083         * src/compose.c: compose_wrap_line_all(): fixed the bug that
4084           caused infinite loop when wrapping certain patterns of quoted text.
4085
4086 2002-01-02
4087
4088         * src/imap.c: imap_parse_envelope(): put the assertion after
4089           imap_parse_address() to prevent segmentation fault.
4090
4091 2001-12-31
4092
4093         * src/folderview.c
4094           src/mainwindow.c: modified some labels of menu items.
4095         * src/ldif.c: put the return value of fgetc() in a gint.
4096         * src/importldif.c: don't brace null strings with _().
4097         * src/compose.c: moved the position of Subject entry to the last.
4098           Reorganized the menu.
4099           compose_draft_cb(): added 'keep editing after saving to draft'
4100           feature.
4101
4102 2001-12-30
4103
4104         * src/mainwindow.c: reorganization of main menu. Removed 'Summary'
4105           menu. Moved 'Help' menu to just the right of 'Configuration'.
4106           Removed 'File - Close' menu item.
4107
4108 2001-12-25
4109
4110         * src/mainwindow.c: some menu reorganization.
4111         * AUTHORS: updated. Added more contributors.
4112         * src/account.c: account_row_moved(): new. Moves displayed row to
4113           the appropriate position when up / down button are pressed.
4114           account_clist_set(): move displayed row to the appropriate position.
4115         * src/compose.c
4116           src/mainwindow.c: set title and wmclass when creating windows.
4117
4118 2001-12-24
4119
4120         * src/gtkstext.c: fixed a bug that didn't show block cursor
4121           correctly. Removed unnecessary GdkGC copy. Fixed cursor
4122           coordinate.
4123         * src/compose.c
4124           src/gtkutils.[ch]
4125           src/textview.[ch]
4126           src/undo.c: modified to use GtkSText.
4127         * src/menu.h: added #include <gtk/gtkmenu.h>.
4128
4129 2001-12-23
4130
4131         * acconfig.h
4132           configure.in: added XIM checking for GTK+.
4133         * src/gtkstext.[ch]: new. Copied GtkText in GTK+ and renamed.
4134
4135 2001-12-22
4136
4137         * src/filter.c: added #include <sys/types.h>.
4138
4139 2001-12-21
4140
4141         * src/template.c: template_write_config(): fixed a typo.
4142         * src/compose.c: toolbar_linewrap_cb(): call compose_wrap_line_all().
4143         * src/filter.[ch]
4144           src/prefs_filter.c: supported regular expression (thanks to
4145           Yukihiro Nakai).
4146         * src/undo.c: undo_paste_clipboard_cb(): fixed a bug that broke
4147           undo state when pasted clipboard was empty.
4148           undo_check_size(): use g_list_last().
4149           undo_undo()
4150           undo_redo(): fixed NULL checking and made a bit of optimization.
4151           Some code cleanups.
4152         * src/prefs_common.c: changed the default value of linewrap length
4153           to 72.
4154
4155 2001-12-20
4156
4157         * reorganization of pixmap management.
4158         * src/stock_pixmap.[ch]: new. This module manages all static pixmaps.
4159         * modified every files which directly use pixmaps data to use
4160           stock_pixmap_*().
4161         * src/undo.[ch]: renamed undo_set_undo_change_funct() to
4162           undo_set_change_state_func(), and changed its argument from
4163           GtkWidget* to gpointer.
4164           undo_merge(): code cleanup.
4165         * src/compose.c: renamed compose_set_undo() to
4166           compose_undo_state_changed().
4167
4168 2001-12-19
4169
4170         * src/account.c: account_find_from_address(): made it case
4171           insensitive.
4172         * src/addressbook.c: addressbook_create(): set wmclass.
4173         * src/compose.c: compose_insert_file(): supported DOS/Win/Mac line
4174           break.
4175         * src/importldif.c
4176           src/ldif.[ch]: merged from the claws branch.
4177         * src/importldif.c: removed some warnings.
4178           imp_ldif_field_list_toggle(): fixed button checking.
4179           imp_ldif_dialog_create(): minor layout fix.
4180         * src/ldif.c: removed some warnings.
4181         * INSTALL
4182           INSTALL.jp: updated confirmation list.
4183         * src/vcard.c:
4184           vcard_read_file()
4185           vcard_test_read_file(): fixed a memory leak of tagtemp.
4186           Some code cleanups (decreasing the indent level).
4187         * src/addrindex.c
4188           src/jpilot.[ch]
4189           src/syldap.[ch]: disabled runtime library checking because JPilot
4190           and LDAP libraries are linked on the build time, and the program
4191           doesn't execute without them anyway.
4192         * src/addressbook.c
4193           src/addrindex.c: changed "J-Pilot" to "JPilot".
4194           Removed warning for atoi().
4195
4196 2001-12-18
4197
4198         * src/procmsg.c: procmsg_empty_trash()
4199           src/mainwindow.c: main_window_empty_trash(): empty trash only if
4200           it contains some messages.
4201         * src/imap.c: search_array_str(): new.
4202           imap_status(): fixed a bug that didn't parse the command response
4203           correctly.
4204
4205 2001-12-18
4206
4207         * merged undo function (by Jens Oberender).
4208         * src/undo.[ch]: new.
4209           undo_insert_text_cb(): fix for multibyte characters (obtain the
4210           number of letters instead of bytes).
4211         * src/compose.[ch]: added the code for undo.
4212         * src/prefs_common.[ch]: added the interface for setting undo level.
4213
4214 2001-12-16
4215
4216         * src/compose.c: compose_template_apply()
4217           src/prefs_template.c: prefs_template_clist_set_row()
4218           src/template.c: template_write_config(): don't replace To: and
4219           Subject: entry in composition window if they are empty.
4220
4221 2001-12-16
4222
4223         * version 0.6.6
4224
4225 2001-12-15
4226
4227         * src/folderview.c: folderview_drag_motion_cb(): fixed a DnD bug.
4228         * src/ldif.c: ldif_get_line(): ignore CR.
4229         * src/mimeview.c: mimeview_show_message(): search also text/html
4230           for first text part.
4231
4232 2001-12-14
4233
4234         * src/prefs_account.c: prefs_account_save_config_all(): fixed a bug
4235           that didn't update accountrc if account_list == NULL (thanks to
4236           Watanabe).
4237
4238 2001-12-14
4239
4240         * src/utils.h: added the macro Xstrcat_a() that concatenates
4241           two strings and return alloca'd string.
4242         * src/imap.c: imap_scan_tree_recursive(): fixed a bug that didn't
4243           handle folder name which includes some spaces correctly
4244           (based on the patch from Willem van Engen (thanks!)).
4245         * src/compose.c: compose_wrap_line_all(): fixed the crash when
4246           wrapping long lines if linewrap quotation is disabled and
4247           a word spanning more than one line.
4248
4249 2001-12-14
4250
4251         * applied the Tobias' patch with modification (thanks!).
4252         * src/imap.[ch]:
4253           imap_msg_set_perm_flags()
4254           imap_msg_unset_perm_flags(): new. They set permanent flags to
4255           a IMAP message.
4256         * src/compose.c
4257           src/summaryview.c: set flags on IMAP server when flags are changed.
4258
4259 2001-12-11
4260
4261         * src/gtkutils.[ch]: gtkut_container_remove(): new. It's a wrapper
4262           of gtk_container_remove() for workaround of a bug in
4263           Gtk{Text,Entry} (thanks to Sergey Vlasov).
4264         * src/compose.c
4265           src/mainwindow.c
4266           src/messageview.c
4267           src/mimeview.c
4268           src/summaryview.c
4269           src/textview.c: replaced gtk_container_remove() with
4270           gtkut_container_remove(), and removed previous partial fix.
4271
4272 2001-12-09
4273
4274         * src/prefs_account.c: prefs_account_apply(): fixed a bug that
4275           checked user ID on "local", but didn't on IMAP4.
4276         * src/imap.c: imap_session_get(): fixed a crash bug when
4277           rfolder->session == NULL.
4278         * Makefile.am: changed the arguments of tar from 'chojf' to
4279           '--bzip2 -chof'.
4280         * src/summaryview.c: summary_toggle_view(): disclaim the selection
4281           of textview before removing vpaned.
4282
4283 2001-12-08
4284
4285         * src/messageview.c: messageview_change_view_type(): disclaim the
4286           selection before removing textview. This solves the mysterious
4287           copy-paste disability (thanks to Melvin Hadasht).
4288         * src/textview.c: textview_set_font(): use
4289           gtk_editable_claim_selection() instead of
4290           gtk_editable_select_region().
4291
4292 2001-12-06
4293
4294         * src/prefs_template.c: prefs_template_window_create(): supported
4295           address completion on the To: entry.
4296
4297 2001-12-04
4298
4299         * src/folder.c:
4300           folder_count_total_msgs()
4301           folder_count_total_msgs_func(): use g_node_traverse() to traverse
4302           GNode.
4303
4304 2001-12-03
4305
4306         * src/compose.c: fixed a bug that empty body was refused.
4307         * src/prefs_template.c: fixed a bug that didn't set To: entry
4308           correctly. Display error dialog if format is illegal.
4309         * src/prefs_common.c
4310           src/quote_fmt_lex.l
4311           src/quote_fmt_parse.y: changed parenthesis "( )" to curly braces
4312           "{ }" to prevent confusion on using parenthesis.
4313         * src/html.c: html_get_parenthesis(): ignore CSS / script stuff.
4314
4315 2001-11-29
4316
4317         * src/prefs_template.c: added colon to the header labels.
4318
4319 2001-11-28
4320
4321         * src/compose.c
4322           src/prefs_template.c
4323           src/template.[ch]: added To field to the template.
4324
4325 2001-11-27
4326
4327         * src/textview.c: textview_show_part(): use first found
4328           message/rfc822 header.
4329         * src/folderview.c: added "Search messages..." to the context menu.
4330         * src/prefs_common.c: prefs_quote_description_create(): added
4331           description for characters which need to be escaped.
4332
4333 2001-11-26
4334
4335         * src/compose.c: compose_wrap_line_all(): more merging from claws.
4336           GET_CHAR(): renamed GET_TEXT() and made it more generic.
4337           Modified compose_wrap_line() and compose_wrap_line_all() to use
4338           GET_CHAR().
4339         * src/textview.c: textview_show_part(): show the header of nested
4340           RFC822 attachment correctly.
4341
4342 2001-11-25
4343
4344         * src/folder.[ch]
4345           src/main.c: added --status option to get new, unread and total
4346           message count from a running Sylpheed (merged from claws).
4347           prohibit_duplicate_launch(): output '\n' only once.
4348
4349 2001-11-23
4350
4351         * src/compose.c
4352           src/gtkutils.[ch]: merged the new wrapping function.
4353           gtkut_text_str_compare_n()
4354           gtkut_text_str_compare()
4355           gtkut_text_is_uri_string(): backport from the GtkSText in the
4356           claws branch, and made modification.
4357         * src/prefs_template.c
4358           src/template.[ch]: added Subject to the template.
4359
4360 2001-11-22
4361
4362         * src/compose.c: compose_write_headers(): added missing parenthesis
4363           that generated invalid custom header (thanks to Masaaki Noro).
4364           Allow Sender: custom header.
4365
4366 2001-11-20
4367
4368         * src/procheader.c: procheader_date_parse(): workaround for
4369           RFC-incompliant Date header.
4370
4371 2001-11-20
4372
4373         * src/addrbook.c: removed redundant functions, and fixed generation
4374           of spurious address book file names.
4375         * src/addrindex.c: V-Card -> vCard.
4376
4377 2001-11-19
4378
4379         * src/textview.c: get_email_part(): replaced isalnum() with
4380           the macro IS_ASCII_ALNUM() which restricts the range of
4381           characters to 7bit ASCII (thanks to Shimamoto).
4382         * src/utils.c: remote_tzoffset_sec(): workaround for malformed
4383           timezone offset.
4384
4385 2001-11-18
4386
4387         * src/textview.c: textview_show_part(): show headers on nested
4388           muitipart text.
4389
4390 2001-11-17
4391
4392         * src/imap.c: imap_session_get()
4393           src/news.c: news_session_get(): fixed segfault when reconnection
4394           failed.
4395         * src/grouplistdialog.c: removed redundant code, and expand nodes
4396           that doesn't match the pattern.
4397
4398 2001-11-16
4399
4400         * src/compose.c: modified so that it sends message when any of
4401           To:, Cc:, Bcc:, or Newsgroups: fields have valid recipient.
4402           compose_check_for_valid_recipient(): new.
4403         * src/grouplistdialog.c: improved the UI.
4404           Added appropriate description and search button.
4405           Search doesn't get group list again.
4406
4407 2001-11-15
4408
4409         * src/news.[ch]: news_session_get(): update the last access time
4410           correctly.
4411           news_group_list_free(): new.
4412         * src/grouplistdialog.c: free resources correctly.
4413
4414 2001-11-15
4415
4416         * src/folderview.c
4417           src/grouplistdialog.[ch]: more merging of new newsgroup
4418           subscription dialog.
4419         * src/news.[ch]: renamed news_remove_group_list() to
4420           news_remove_group_list_cache().
4421
4422 2001-11-14
4423
4424         * src/defs.h: added MAX_ENTRY_LENGTH definition.
4425         * src/compose.c: compose_add_entry_field(): create new entry with
4426           max length.
4427
4428 2001-11-13
4429
4430         * src/grouplistdialog.c: made non-leaf node selectable.
4431           Give the complete newsgroup name for each nodes.
4432
4433 2001-11-13
4434
4435         * src/grouplistdialog.c
4436           src/news.[ch]: merging of new newsgroup subscription dialog
4437           (still in progress. Don't use it yet!).
4438
4439 2001-11-12
4440
4441         * src/utils.[ch]: decode_uri(): new. It decodes URL-encoded strings.
4442         * src/compose.[ch]: compose_new_with_recipient(): accept mailto
4443           URL.
4444           compose_entries_set(): new. It parses mailto URL and put each
4445           values into the entries.
4446
4447 2001-11-12
4448
4449         * src/compose.c: compose_forward(): fixed a bug that forward
4450           quote mark wasn't used (thanks to Hironori IWANE).
4451         * src/codeconv.[ch]
4452           src/mainwindow.c
4453           src/prefs_common.c: added Thai encodings (thanks to Manrat
4454           Chobchuen).
4455
4456 2001-11-08
4457
4458         * src/socket.c: sock_connect_by_hostname(): removed h_errno.
4459         * src/session.h
4460           src/defs.h
4461           src/imap.[ch]
4462           src/news.c: added last_access_time to Session.
4463           imap_session_get(): check connection only when access interval
4464           has been exceeded.
4465
4466 2001-11-07
4467
4468         * version 0.6.5
4469
4470 2001-11-07
4471
4472         * src/socket.c: ssl_gets(): use SSL_peek.
4473         * updated NEWS and AUTHORS.
4474         * Makefile.am: fixed release target.
4475
4476 2001-11-06
4477
4478         * src/template.c: changed the format of template file to
4479           RFC2822-like.
4480         * src/compose.c: compose_template_apply(): freeze the text widget
4481           while inserting strings.
4482
4483 2001-11-05
4484
4485         * po/POTFILES.in: removed src/template_select.c.
4486         * src/summaryview.c: summary_set_header()
4487           src/address.c: address_parse_str()
4488           src/filter.c: filter_read_str()
4489           src/news.c: news_parse_xover()
4490           src/procheader.c: procheader_get_fromname()
4491           src/utils.c: subject_compare():
4492           replaced Xalloca() + strcpy() with Xstrdup_a().
4493         * src/inputdialog.[ch]: added combo mode.
4494           input_dialog_combo(): new.
4495         * src/prefs_common.[ch]: added MIME open command setting.
4496           prefs_common_{read, save}_config(): read / write command history.
4497         * src/mimeview.c: mimeview_open_with(): use combo input dialog.
4498         * src/utils.[ch]: add_history(): history list management function.
4499
4500 2001-11-04
4501
4502         * src/compose.c: select templates from the menu.
4503           compose_set_template_menu(): new.
4504           compose_reflect_prefs_all(): new.
4505           compose_template_apply(): new. Use dummy MsgInfo for parsing.
4506         * src/template.[ch]: store template list to the static heap.
4507           template_get_config(): new.
4508           template_set_config(): new.
4509         * src/prefs_template.c: don't store template list to the global area.
4510         * src/template_select.[ch]: removed.
4511         * src/quote_fmt_parse.y: check folderitem when quoting messages.
4512         * src/mh.c: mh_add_msg(): try to copy file whenever link() failed
4513           (thanks to OSHIRO Naoki).
4514
4515 2001-11-03
4516
4517         * src/utils.[ch]: get_template_dir(): new.
4518         * src/template.c: use get_template_dir().
4519
4520 2001-11-02
4521
4522         * src/prefs_template.c: modified the dialog layout.
4523           Added symbol description button.
4524         * src/summaryview.c: show an arrow mark to the column of the sort
4525           target.
4526           summary_set_column_titles(): new.
4527         * INSTALL
4528           INSTALL.jp
4529           README
4530           README.jp
4531           TODO
4532           TODO.jp: updated the documents.
4533
4534 2001-11-02
4535
4536         * src/Makefile.am: add missing checkbox_{on, off}.xpm.
4537         * src/textview.c: textview_key_pressed()
4538           src/mimeview.c: mimeview_key_pressed()
4539           src/summaryview.c: summary_key_pressed(): delete messages with
4540           Delete key.
4541
4542 2001-11-01
4543
4544         * src/socket.c: ssl_gets(): fixed a bug that caused infinite loop
4545           when SSL_read() returned 0.
4546         * src/utils.[ch]: strcrchomp(): new. It removes CR from the tail
4547           of strings.
4548         * src/quote_fmt_parse.y: convert CRLF to LF when inserting messages.
4549           Add prototype of yylex() to suppress the warning.
4550         * merged the template function.
4551         * src/prefs_template.[ch]
4552           src/template.[ch]
4553           src/template_select.[ch]: new.
4554           Renamed prefs_templates_* -> prefs_template_*.
4555         * src/compose.c: added template menu. Added replyinfo to Compose.
4556         * src/mainwindow.c: added template setting menu.
4557         * src/quote_fmt_lex.l: output literal tab and return as is.
4558         * src/prefs_common.c: changed the pref. name of quote format to
4559           'reply_quote_{mark, format}' and 'fw_quote_{mark, format}'.
4560
4561 2001-10-31
4562
4563         * src/prefs_common.[ch]: added Quote tab, and moved the quote
4564           setting from Compose tab.
4565         * merged the new quote format parser.
4566         * src/quote_fmt_lex.h
4567           src/quote_fmt.h
4568           src/quote_fmt_lex.l
4569           src/quote_fmt_parse.y: new files for quote format parser.
4570         * configure.in: added checks for lex and yacc.
4571         * src/compose.c: compose_quote_file(), compose_quote_parse_fmt():
4572           removed.
4573           compose_quote_fmt(): new.
4574         * src/prefs_common.[ch]: added forward format setting to the
4575           Quote tab. Updated the quote description dialog.
4576         * src/quote_fmt_parse.y: fixed bugs that tried to read file even
4577           if they couldn't get text part.
4578
4579 2001-10-31
4580
4581         * src/pixmaps/checkbox_off.xpm
4582           src/pixmaps/checkbox_on.xpm: new.
4583         * src/account.c: display `get all' status with the checkbox pixmaps.
4584
4585 2001-10-30
4586
4587         * src/send.c: code cleanup. Pass account prefs structure instead
4588           of many arguments.
4589           Query password for SMTP AUTH if not specified (thanks to Mio).
4590
4591 2001-10-30
4592
4593         * src/procheader.c: procheader_parse(): fixed a bug that didn't
4594           parse multiple message-id in In-Reply-To: header correctly
4595           (thanks to KAJIWARA).
4596
4597 2001-10-29
4598
4599         * src/account.c: enabled 'Get all' setting by clicking the 'G'
4600           column of account list, and added some description.
4601         * src/prefs_common.c: prefs_send_create(): added a description
4602           for outgoing codeset.
4603
4604 2001-10-28
4605
4606         * src/prefs_account.[ch]: moved inbox entry to the receive tab,
4607           and added select button and short description.
4608         * src/Makefile.am: added SYSCONFDIR to CPPFLAGS.
4609         * src/procmime.c:
4610           procmime_get_mime_type_table()
4611           procmime_get_mime_type_list(): modified so that
4612           $(SYSCONFDIR)/mime.types (or /etc/mime.types if not found) and
4613           $(HOME)/.sylpheed/mime.types are read.
4614
4615 2001-10-27
4616
4617         * src/prefs_account.c: moved the address auto-setting to the compose
4618           tab.
4619           prefs_account_create(): removed gtk_widget_show_all() for proper
4620           window size.
4621         * src/prefs_common.c: changed "Program path" to "Command".
4622
4623 2001-10-26
4624
4625         * src/textview.c: textview_set_font(): support Russian charset
4626           on EUC-JP locale.
4627         * src/summaryview.c: summary_delete(): (hopefully) fixed the crash
4628           bug on deleting.
4629         * prefs_account.c
4630           prefs_common.c
4631           prefs_summary_column.c: minor improvements to the English.
4632         * src/main.c: get_queued_message_num(): don't output the warning
4633           when queueing folder is not found.
4634
4635 2001-10-21
4636
4637         * version 0.6.4
4638
4639 2001-10-21
4640
4641         * src/prefs_summary_column.[ch]:
4642           made prefs_summary_column_get_config() public.
4643         * src/summaryview.c: summary_ctree_create(): some code cleanup.
4644         * configure.in: moved the position of SSL checking after LDAP
4645           for linking problem.
4646
4647 2001-10-21
4648
4649         * src/mainwindow.c
4650           src/summaryview.c: allowed reedit in the outbox.
4651         * src/prefs_summary_column.[ch]: new. UI for setting summary
4652           columns.
4653         * src/mainwindow.[ch]: main_window_set_summary_column(): new.
4654           It calls summary_set_column_order().
4655         * src/summaryview.[ch]:
4656           summary_ctree_create(): new. separated from summary_create().
4657           summary_set_column_order(): new. It destroys the current
4658           CTree and replaces it with the new one.
4659
4660 2001-10-19
4661
4662         * src/smtp.[ch]: smtp_from(): abort if auth failed.
4663         * changed C++-style comments into C-style in some files, and
4664           removed unnecessary commented out codes.
4665         * src/addrcache.[ch]
4666           src/addressbook.c
4667           src/addrindex.[ch]
4668           src/jpilot.[ch]
4669           src/syldap.[ch]: updated the addressbook code, and fixed the
4670           thread bug of LDAP.
4671         * src/ldif.[ch]
4672           src/importldif.[ch]: new.
4673
4674 2001-10-18
4675
4676         * src/about.c: added some items to compiled-in features.
4677         * src/addr_compl.c: changed LOG_MESSAGE to debug_print.
4678         * src/addressbook.c: changed "V-Card" to "vCard".
4679           addressbook_edit_address_cb(): added
4680           invalidate_address_completion() to the point address is changed.
4681         * src/codeconv.c: changed C++-style comments into C-style.
4682
4683 2001-10-17
4684
4685         * src/compose.c: changed "Send" shortcut to Ctrl+Enter.
4686
4687 2001-10-16
4688
4689         * src/inc.c: fixed a bug that crashed sylpheed if Cancel button
4690           was clicked twice.
4691
4692 2001-10-16
4693
4694         * src/procmsg.c: procmsg_get_thread_tree(): complete the unfinished
4695           threads.
4696         * src/summaryview.c:
4697           summary_thread_init(): separated from summary_thread_build(). 
4698           summary_thread_build(): removed the codes for initialization.
4699           summary_set_ctree_from_list(): call summary_thread_init() instead
4700           of summary_thread_build().
4701           summary_filter(): fixed a bug that didn't moved messages despite
4702           of immediate execution setting.
4703
4704 2001-10-14
4705
4706         * src/procmsg.c: procmsg_get_thread_tree(): new. It generates the
4707           reversed thread tree from message list.
4708         * src/summaryview.c: summary_set_ctree_from_list(): prepend the
4709           node to the head instead of appending to the tail. This prevents
4710           the traverse of node list inside of the GtkCTree, and considerably
4711           speeds up the summary display (the order is O(n^2) -> O(n)).
4712
4713 2001-10-12
4714
4715         * src/prefs_common.c
4716           src/summaryview.[ch]: initial modification for reorderable columns.
4717
4718 2001-10-12
4719
4720         * src/procmsg.c: procmsg_get_mark_sum(), mark_sum_func(): fixed a
4721           memory leak.
4722         * src/folderview.c: folderview_button_pressed(): code cleanup, and
4723           turn sensitivity off if main window is locked.
4724         * src/syldap.c: syldap_read_data(): removed unnecessary and
4725           unportable sched_yield().
4726
4727 2001-10-11
4728
4729         * src/folderview.c: renamed "Update folder tree" context menu to
4730           "Rescan folder tree", and made "Update folder tree" only updates
4731           folder status.
4732           folderview_update_all_node(): don't show message dialog.
4733         * src/gtkutils.c: gtkut_widget_get_uposition()
4734           src/mainwindow.c: main_window_popup(): clip the coordinate to
4735           nonnegative value.
4736
4737 2001-10-10
4738
4739         * src/utils.c: to_human_readable(): made a bit of optimization.
4740         * src/summaryview.c: summary_delete(): fixed a focus problem.
4741           summary_find_{prev,next}_msg(): new. They find previous/next
4742           message that is not deleted.
4743         * src/prefs_filter.c: scroll CList automatically if moved row
4744           becomes not fully visible.
4745
4746 2001-10-09
4747
4748         * updated some autotool scripts.
4749         * src/codeconv.c: conv_encode_header(): fixed a bug that caused
4750           infinite loop when failed to convert encoding.
4751         * src/codeconv.[ch]: a fix for older version of libjconv
4752           (jconv_info_get_current_codeset() returned "EUCJP" instead of
4753           "EUC-JP").
4754
4755 2001-10-08
4756
4757         * version 0.6.3
4758
4759 2001-10-08
4760
4761         * src/compose.c: compose_write_to_file()
4762           src/codeconv.c: conv_codeset_strdup(): more workaround for
4763           libjconv problem on C locale.
4764         * src/editldap_basedn.c: fixed segfault when opening dialog.
4765         * src/utils.c: is_next_mbs()
4766           src/compose.c: compose_wrap_line(), compose_wrap_line_all():
4767           changed MB_CUR_MAX to MB_LEN_MAX for compliance to ANSI C.
4768         * configure.in: increased the reqired version of GPGME to 0.2.3.
4769         * src/pop.c: pop3_getauth_user_recv(): fixed a bug that closed
4770           the receive dialog when POP3 server refused normal authentication.
4771
4772 2001-10-07
4773
4774         * src/prefs_common.c: prefs_receive_create(): correction to English.
4775         * src/compose.c: compose_set_ext_editor_sensitive(): fixed a bug
4776           that didn't set the menu sensitivity correctly (thanks to
4777           Melvin Hadasht).
4778         * src/summaryview.c: delete messages permanently if the current
4779           folder is trash and 'delete' operation is executed.
4780           Fixed the bug that didn't select the last row correctly (thanks
4781           to Alfons Hoogervorst).
4782         * src/folder.[ch]: folder_item_remove_msgs(): new. It removes
4783           all messages given in the list.
4784
4785 2001-10-05
4786
4787         * src/summaryview.c: summary_show(): fixed a bug that didn't show
4788           message even if the 'open unread message on entering folder'
4789           option was turned on.
4790
4791 2001-10-03
4792
4793         * src/procmime.c: procmime_get_text_content(): supported HTML.
4794
4795 2001-10-02
4796
4797         * src/summaryview.[ch]: implemented new locking mechanism, and
4798           replaced every static locks with summary_lock(), summary_unlock(),
4799           and added locks to some extra functions.
4800           This fixes a bug that caused segfault when 'd' (delete) key
4801           was kept pressing.
4802
4803 2001-10-01
4804
4805         * src/addressbook.c: addressbook_folder_load_person(): fixed a bug
4806           that caused segfault (thanks to Stefaan A Eeckels).
4807
4808 2001-09-30
4809
4810         * src/textview.[ch]: added textview_set_position().
4811         * src/messageview.[ch]: added messageview_set_position().
4812         * src/addrbook.c
4813           src/addrcache.c
4814           src/addressadd.c
4815           src/addressbook.c
4816           src/addrindex.c
4817           src/addritem.c
4818           src/editaddress.c
4819           src/editbook.c
4820           src/editgroup.c
4821           src/editjpilot.c
4822           src/editldap.c
4823           src/editldap_basedn.c
4824           src/editvcard.c
4825           src/jpilot.c
4826           src/mgutils.c
4827           src/syldap.c
4828           src/vcard.c: converted C++-style comments into C-style one.
4829         * src/imap.c: QUOTE_IF_REQUIRED(): new macro. Copy string into
4830           new buffer and quote with double quotes if required.
4831           imap_status(), imap_cmd_login(), imap_cmd_list(),
4832           imap_cmd_do_select(), imap_cmd_create(), imap_cmd_delete(),
4833           imap_cmd_copy(): use QUOTE_IF_REQUIRED().
4834         * compose.c: compose_write_to_file(): workaround for the problem
4835           when using libjconv and 8bit codes cannot be converted on C
4836           locale.
4837         * codeconv.[ch]: added "ANSI_X3.4-1968" to encoding strings.
4838           conv_codeset_strdup(): don't convert if source and destination
4839           codeset are identical.
4840
4841 2001-09-30
4842
4843         * src/textview.[ch]: textview_search_string_backward(): new.
4844           Add the new member cur_pos to TextView.
4845           Connect button_press_event with gtk_signal_connect_after() to
4846           obtain the correct editable position.
4847
4848 2001-09-27
4849
4850         * src/folder.c: folder_write_list_recursive(): preserve unthreaded
4851           state.
4852
4853 2001-09-26
4854
4855         * src/summaryview.c: modified the layout of popup menu.
4856
4857 2001-09-25
4858
4859         * src/folder.c
4860           src/folder.h
4861           src/mainwindow.c
4862           src/summaryview.c: applied the patch from Alfons that allows
4863           threading setting for each folders (tnanks!).
4864
4865 2001-09-23
4866
4867         * src/message_search.[ch]: new. A Dialog for searching in current
4868           message.
4869         * src/gtkutils.[ch]: gtkut_text_match_string(): new. Compare the
4870           text in current position of GtkText and given wide-character
4871           string.
4872         * src/messageview.[ch]: messageview_search_string()
4873           src/textview.[ch]: textview_search_string(): return TRUE if
4874           found.
4875         * src/textview.[ch]: remember the beginning of body.
4876
4877 2001-09-21
4878
4879         * src/procmime.c: procmime_get_first_text_content(): modified so
4880           that it search entire MIME structure.
4881         * src/summary_search.c: summary_search_execute(): use
4882           strdup_mbstowcs() instead of macro. Display matched message.
4883
4884 2001-09-20
4885
4886         * src/inc.c: fix for background POP3 hangs and crashes (thanks to
4887           Sergey Vlasov).
4888         * src/summary_search.c: added body searching function.
4889         * src/procmime.[ch]: procmime_find_string(): changed arguments
4890           and return value. Added case sensitivity option.
4891
4892 2001-09-20
4893
4894         * src/procmime.[ch]:
4895           procmime_find_string()
4896           procmime_find_string_part(): new. It searchs the string from
4897           messages.
4898           Renamed procmime_get_text_part() to
4899           procmime_get_first_text_content().
4900           procmime_get_text_content(): new. It returns the text contents
4901           of the specified MIME part.
4902           procmime_mimeinfo_next(): new. It returns the next node of
4903           MimeInfo tree.
4904
4905 2001-09-19
4906
4907         * src/procmime.c: procmime_get_text_part(): modified so that it
4908           finds a text part in nested multipart message correctly.
4909         * src/procmime.h: added an example of MimeInfo structure.
4910         * src/mimeview.c: mimeview_show_message(): search the first text
4911           part.
4912
4913 2001-09-17
4914
4915         * src/mainwindow.c: ac_menu_popup_closed(): fixed the bug that
4916           caused segfault. Changed 'Preferences per account...' menu item.
4917
4918 2001-09-17
4919
4920         * version 0.6.2
4921
4922 2001-09-16
4923
4924         * src/addrindex.c: translate the "Common address" and "Personal
4925           address" from old addressbook.
4926
4927 2001-09-12
4928
4929         * src/utils.c: get_quote_level(): some optimization and bugfixes.
4930         * src/codeconv.[ch]: conv_get_current_locale(): new.
4931         * src/editaddress.c: edit_person_page_basic(): reverse the order
4932           of first and last name on some locales.
4933
4934 2001-09-11
4935
4936         * src/compose.c: applied the patch from Yasumatsu that reformats
4937           the current paragraph (thanks!). Modified so that it doesn't
4938           reformat quoted paragraphs.
4939           compose_create(): don't fill the entry automatically on reedit
4940           mode.
4941         * src/mainwindow.c
4942           src/summaryview.[ch]: added the "Mark all read" option.
4943           summary_mark_all_read(): new.
4944
4945 2001-09-10
4946
4947         * src/vcard.c
4948           src/mgutils.c
4949           src/syldap.c
4950           src/editldap.c
4951           src/editldap_basedn.c
4952           src/jpilot.c
4953           src/editjpilot.c: removed all warnings.
4954         * configure.in
4955           src/jpilot.[ch]: fixed the problem that failed to detect JPilot
4956           header files on the Debian system.
4957         * src/mainwindow.c
4958           src/summaryview.[ch]: enabled sorting by mark, unread, attachment,
4959           and color label. Enabled moving to next/prev flagged messages.
4960
4961 2001-09-09
4962
4963         * src/pixmaps/dir-close.xpm
4964           src/pixmaps/dir-open.xpm
4965           src/pixmaps/new.xpm
4966           src/pixmaps/unread.xpm: modified the color balance.
4967         * src/utils.[ch]: execute_sync(): new.
4968           execute_command_line(): added the arg for async mode.
4969         * src/inc.c: inc_mail(): use execute_command_line().
4970
4971 2001-09-08
4972
4973         * src/prefs.[ch]
4974           src/prefs_common.[ch]
4975           src/prefs_account.c: modified the layout. Added the option to
4976           launch the external editor automatically.
4977         * src/compose.c: launch the external editor automatically if the
4978           option is set.
4979
4980 2001-09-06
4981
4982         * src/Makefile.am: added extra xpm's.
4983
4984 2001-09-05
4985
4986         * src/addressbook.c: fixed a compilation problem when enabling
4987           LDAP.
4988           addressbook_open(): fixed a missing 'else'.
4989
4990 2001-09-04
4991
4992         * src/pixmaps/dir-close.xpm
4993           src/pixmaps/dir-open.xpm
4994           src/pixmaps/trash.xpm: replaced with the new blue icons.
4995         * merged Match Grun's new addressbook code.
4996         * src/pixmaps/address.xpm
4997           src/pixmaps/book.xpm
4998           src/pixmaps/category.xpm
4999           src/pixmaps/interface.xpm
5000           src/pixmaps/jpilot.xpm
5001           src/pixmaps/ldap.xpm
5002           src/pixmaps/vcard.xpm: new icons.
5003         * src/addrbook.[ch]
5004           src/addrcache.[ch]
5005           src/addressadd.[ch]
5006           src/addressitem.[ch]
5007           src/addrindex.[ch]
5008           src/addritem.[ch]
5009           src/editaddress.[ch]
5010           src/editbook.[ch]
5011           src/editgroup.[ch]
5012           src/editjpilot.[ch]
5013           src/editldap.[ch]
5014           src/editldap_basedn.[ch]
5015           src/editvcard.[ch]
5016           src/jpilot.[ch]
5017           src/mgutils.[ch]
5018           src/syldap.[ch]
5019           src/vcard.[ch]: new. Many fixes to remove the huge amount of
5020           warnings.
5021           addrbook_build_avail_email_vis(): fixed a memory leak.
5022
5023 2001-09-04
5024
5025         * NEWS: brought in the all of the changes previously put on the web.
5026
5027 2001-09-03
5028
5029         * src/mainwindow.c
5030           src/summaryview.c: modified the layout of menus.
5031         * src/mainwindow.c: ac_menu_popup_closed(): fixed a bug that didn't
5032           return a focus to the main window after selecting the account menu.
5033
5034 2001-09-03
5035
5036         * version 0.6.1
5037
5038 2001-09-03
5039
5040         * src/send.c: send_message_data(): fixed a bug that didn't process
5041           body part correctly.
5042
5043 2001-09-02
5044
5045         * src/inc.[ch]: changed inc_autocheck_(un)lock() to inc_(un)lock().
5046           inc_mail(), inc_all_account_mail(): return immediately if locked.
5047         * src/account.c
5048           src/prefs_common.c
5049           src/prefs_account.c: use inc_lock() and inc_unlock() instead of
5050           inc_autocheck_timer_{remove,set}().
5051         * src/summaryview.c: summary_set_colorlabel_color(): get the average
5052           of label color and selected fg color for visibility.
5053
5054 2001-09-01
5055
5056         * src/inc.[ch]: inc_autocheck_lock(), inc_autocheck_unlock(): new.
5057           They increase/decrease the lock count.
5058           inc_autocheck_func(): if locked, delay the autochecking 1 second.
5059           inc_autocheck_timer_set_interval(): set interval by its argument.
5060         * src/summaryview.c: summary_show(): lock the autochecking while
5061           processing.
5062         * src/main.c: app_will_exit(): remove autocheck timer.
5063         * acconfig.h
5064           src/defs.h: removed the definitions of PACKAGE and VERSION to
5065           prevent unnecessary compilation.
5066         * configure.in: changed AC_DEFINE_UNQUOTED of PACKAGE and VERSION
5067           to AC_SUBST, and added src/version.h to AC_OUTPUT.
5068         * src/version.h.in: new.
5069         * src/intl.h: changed dgettext() to gettext().
5070
5071 2001-08-31
5072
5073         * po/ja.po: fixed a typo that crashed Sylpheed with older version
5074           of GTK+.
5075         * configure.in: fixed a bug that didn't show results correctly.
5076           Fixed a bug that --enable-compface and --enable-jconv disabled
5077           the options.
5078         * src/procmsg.c: procmsg_send_queue(): don't abort when sending
5079           message failed.
5080         * src/compose.c: compose_write_headers(): add Bcc: header to the
5081           output file.
5082         * src/send.c: send_message_data(): new. Separated from
5083           send_message_smtp(). Remove Bcc: header before sending.
5084
5085 2001-08-30
5086
5087         * version 0.6.0
5088
5089 2001-08-30
5090
5091         * src/send.c: implemented sending with local sendmail command.
5092           send_message_local(): new. It executes command with popen()
5093           and send the contents of RFC822 message to the command.
5094         * src/prefs_common.[ch]: enabled the external sending command option.
5095         * src/defs.h: #define DEFAULT_SENDMAIL_CMD /usr/sbin/sendmail -t
5096         * src/account.c: account_edit_create(): widened the protocol column.
5097         * src/summaryview.c: summary_set_colorlabel_color(): cleanup of
5098           the code.
5099
5100 2001-08-30
5101
5102         * src/folder.c: folder_item_remove_msg(): scan the folder again
5103           if the last message is removed.
5104         * src/compose.c: compose_queue(), compose_draft_cb(): remove the
5105           old reedited message after adding the new message.
5106
5107 2001-08-29
5108
5109         * src/compose.c: compose_queue(): added AID: to the queueing header.
5110         * src/send.c: send_message_queue(): look for AID: header, and use
5111           the server specified in the account instead of SSV: header.
5112         * src/summaryview.c
5113           src/compose.[ch]: queued messages can be reedited now.
5114           compose_remove_reedit_target(): new. It removes the old reedited
5115           message.
5116           compose_send(), compose_queue(), compose_draft_cb(): if reedit
5117           mode, remove the old message.
5118         * src/procmsg.c: procmsg_msg_exist(): fixed a bug that output
5119           warning.
5120
5121 2001-08-28
5122
5123         * applied the XML string table patch from Alfons Hoogervorst that
5124           stores strings in a hash table and minimizes memory allocations
5125           (thanks!).
5126         * src/stringtable.[ch]: new.
5127           removed all G and g_ prefix from type and function names since
5128           they're not official GLib symbol names.
5129           string_table_insert_string(): fixed a bug that might refer to an
5130           invalid pointer on lookup, and also made a bit of optimization.
5131
5132 2001-08-27
5133
5134         * merged the color label feature from the claws branch (thanks to
5135           Satoshi Nagayasu and Alfons Hoogervoost).
5136         * src/colorlabel.[ch]: new. Renamed from labelcolors.[ch].
5137           Renamed labelcolors_*() to colorlabel_*().
5138         * src/summaryview.[ch]: added color label support.
5139         * src/procmsg.h: added color label flags to the permanent flags.
5140         * updated to gettext 0.10.39.
5141         * src/summaryview.[ch]: put the color label menu item to ItemFactory.
5142         * sylpheed.desktop: added for GNOME.
5143         * configure.in: added AC_MSG_CHECKING() for some options.
5144           Output the configuration results when configure is finished.
5145
5146 2001-08-27
5147
5148         * src/account.c: account_clist_set_row(): fixed a bug that failed
5149           to compile if SSL was not enabled.
5150
5151 2001-08-26
5152
5153         * merged the SSL support from the claws branch (thanks to Christoph
5154           Hohmann).
5155         * src/ssl.[ch]: new.
5156         * src/socket.[ch]: added ssl_read(), ssl_write(), ssl_gets(), and
5157           ssl_getline().
5158           sock_close(): call ssl_done_socket() if SSL is active.
5159         * src/md5.[ch]: removed MD5_CTX typedef and use MD5_CONTEXT to
5160           prevent type confliction.
5161         * src/prefs_account.[ch]: added SSL tab, and modified the expression.
5162         * src/esmtp.[ch]: added esmtp_ehlo(), and esmtp_starttls().
5163           Removed SSL initialization and HELO from esmtp_starttls().
5164           esmtp_auth(): removed use_smtp_auth from its arguments.
5165         * src/send.c: send_smtp_open(): added SSL support.
5166         * src/smtp.c: smtp_helo(): call esmtp_ehlo() if esmtp is true.
5167
5168 2001-08-25
5169
5170         * src/mimeview.c: mimeview_open_with(): braced '%s' with single
5171           quote.
5172
5173 2001-08-24
5174
5175         * src/main.c: open new account dialog if no account is set.
5176         * src/utils.[ch]: log_verbosity_set(): new. It increase/decrease
5177           the verbosity count.
5178           log_print(): put to statusbar only if log_verbosity_count > 0.
5179           log_message(): put to statusbar.
5180         * src/inc.c: inc_pop3_session_do(): set log verbosity.
5181         * src/mainwindow.c: main_window_set_menu_sensitive(): added the
5182           "Compose new message" item.
5183           main_window_show_cur_account(): removed "Current account: " string.
5184         * src/summaryview.c: summary_show(): ignore the current marks if
5185           main window is locked.
5186         * src/compose.c: compose_attach_property(): fixed a bug that caused
5187           segmentation fault.
5188
5189 2001-08-23
5190
5191         * src/mainwindow.c: main_window_get_current_state(): new. It returns
5192           the current state for the sensitivity of UI.
5193           main_window_set_toolbar_sensitive(): use table like
5194           main_window_set_menu_sensitive().
5195
5196 2001-08-23
5197
5198         * src/mainwindow.[ch]: added progressbar and status label to the
5199           statusbar.
5200           main_window_close_cb(): don't exit if locked.
5201         * src/inc.c: update the progressbar of main window, too.
5202
5203 2001-08-22
5204
5205         * src/mainwindow.[ch]: main_window_set_toolbar_sensitive(): removed
5206           the second argument, and determine the sensitivity with the
5207           state of summary view.
5208
5209 2001-08-21
5210
5211         * src/pop.c: pop3_getsize_list_recv(), pop3_retr_recv(),
5212           pop3_delete_recv(): don't try to receive messages which are not
5213           exist.
5214
5215 2001-08-21
5216
5217         * src/mainwindow.c: main_window_lock(), main_window_unlock():
5218           removed the whole menubar locking.
5219           main_window_set_menu_sensitive(): process the sensitivity change
5220           with a table, and deal with locking.
5221
5222 2001-08-20
5223
5224         * src/summaryview.[ch]: summary_get_selection_type(): new.
5225           It returns the current selection state of summary view.
5226           summary_key_pressed(): abort on some commands if main window
5227           is locked.
5228         * src/mainwindow.[ch]: main_window_lock(), main_window_unlock():
5229           increase/decrease the lock count.
5230
5231 2001-08-19
5232
5233         * src/prefs_filter.c: prefs_filter_create(): added List-Id to the
5234           default header list.
5235         * src/prefs_common.[ch]: added the option for receive dialog mode
5236           to the Interface tab.
5237         * src/inc.[ch]: inc_progress_dialog_create(): don't make the dialog
5238           transient, and show dialog only if the setting is
5239           RECV_DIALOG_ALWAYS, or RECV_DIALOG_ACTIVE and a window is active.
5240         * src/mainwindow.[ch]: main_window_lock(), main_window_unlock():
5241           new. Lock / unlock the user-interface.
5242         * src/progressdialog.c: progress_dialog_create(): don't make the
5243           dialog modal.
5244
5245 2001-08-18
5246
5247         * src/folderview.c: folderview_update_node(): suppressed unnecessary
5248           recursive call.
5249         * src/menu.[ch]: menu_button_position(): new. It calculates the
5250           position of popup menu.
5251         * src/mainwindow.c: toolbar_account_button_pressed(),
5252           ac_label_button_pressed(): put the popup menu to the correct
5253           position. Change the style of the button while opening the menu.
5254           ac_menu_popup_closed(): new function called on selection_done
5255           event.
5256         * src/gtkutils.c: gtkut_ctree_node_next(): fixed a crash bug when
5257           node == NULL.
5258         * src/summaryview.c: applied the summary fix patch from Sergey Vlasov
5259           (thanks!).
5260           Fixed the bug that didn't select previous message in refresh mode
5261           if threads were not expanded.
5262           summary_select_node(): new.
5263         * src/inc.c: applied the summary view update optimization patch from
5264           Sergey Vlasov (thanks!).
5265           If no new messages are received, don't perform summary refreshing.
5266           In addition to the Vlasov's patch, POP3 receive information is
5267           also used.
5268         * src/inc.h: added a new member cur_total_num to Pop3State.
5269         * src/pop.c: pop3_retr_recv(): increase state->cur_total_num.
5270
5271 2001-08-14
5272
5273         * version 0.5.3
5274
5275 2001-08-14
5276
5277         * src/summaryview.c: summary_set_row_marks(): got the color of
5278           unread row set properly.
5279         * src/folderview.c: foldreview_update_node(): don't use
5280           gtk_style_copy(), and reuse previously allocated styles.
5281         * README, README.jp: modified.
5282
5283 2001-08-14
5284
5285         * src/pop.c: pop3_getsize_list_recv(): fixed a remotly exploitable
5286           memory corruption bug (thanks to David Looney).
5287         * src/inc.c: inc_all_account_mail(): call inc_finished() even if
5288           there are no enabled accounts, or local spool only.
5289         * src/summaryview.c: applied the summary update improvement patch
5290           from Sergey Vlasov (thanks!). It keeps the position of the
5291           message displayed. Selected and displayed message are also kept.
5292           summary_get_msgnum(): new.
5293           summary_get_current_msgnum(): removed.
5294           summary_select_by_msgnum(): don't display the message.
5295         * src/account.c: added "Get all" column.
5296           account_clist_set_row(): show default and get-all flags with the
5297           mark icon.
5298         * src/utils.c: to_human_readable(): increased the number of decimals
5299           of MB and GB to 2.
5300
5301 2001-08-13
5302
5303         * implemented the long-awaited :) "Add sender to address book" feature.
5304         * src/address.[ch]: added the argument for remarks to
5305           address_item_new().
5306           address_get_folder_list(): new. It traverses the address tree and
5307           returns the folder list.
5308           address_delete_object(): modified so that it removes the node
5309           from the tree.
5310         * src/addressbook.[ch]: addressbook_add_submenu(): new. It creates
5311           a address folder menu and attaches it to the menu item.
5312           addressbook_refresh(): reload the address book folder tree.
5313         * src/summaryview.c: summary_set_add_sender_menu(): new. It attaches
5314           the menu to add sender to address book.
5315           summary_button_pressed(): call summary_set_add_sender_menu()
5316           before popup the menu.
5317
5318 2001-08-12
5319
5320         * src/summaryview.c: summary_thread_build(): fixed a bug that locked
5321           up the process. Optimized the initial thread build.
5322
5323 2001-08-12
5324
5325         * src/summaryview.c: made many code cleanups.
5326           summary_show(): block/unblock the signal handlers instead of
5327           disconnect/connect them.
5328           summary_set_row_marks(): made the font of collapsed node bold if
5329           it has cnildren marked as unread.
5330           summary_thread_build(): block tree_expand signals while processing.
5331           Use loop instead of the recursive function. Mark collapsed nodes
5332           correctly.
5333           summary_unthread(): block tree_collapse signals while processing.
5334           Use loop instead of the recursive function.
5335           summary_thread_func(), summary_unthread_func(): removed.
5336           summary_tree_expanded(), summary_tree_collapsed(): new callback
5337           functions.
5338         * src/inc.[ch]: inc_pop3_session_do(): don't show alert panel when
5339           failed to connect. Show more detailed status on the dialog.
5340
5341 2001-08-10
5342
5343         * src/folderview.c: folderview_update_all_node(): new. It updates
5344           all local folders.
5345         * src/inc.c: update all local folders after incorporation if
5346           scan_all_after_inc option is set.
5347         * src/prefs_common.[ch]: added scan_all_after_inc option.
5348         * src/folder.h: FOLDER_IS_LOCAL(): new macro.
5349
5350 2001-08-09
5351
5352         * src/defs.h
5353           src/headerview.c
5354           src/headerwindow.c
5355           src/textview.c
5356           src/prefs_common.c
5357           src/prefs_common.h: made bold and small font configurable.
5358           src/summaryview.c: display unread messages with bold font.
5359         * src/prefs_common.c
5360           src/prefs_common.h
5361           src/summaryview.c: added an option to enable/disable the
5362           emphasis of unread messages.
5363
5364 2001-08-08
5365
5366         * src/pixmaps/mark.xpm: modified.
5367         * src/gtkutils.[ch]: gtkut_ctree_expand_parent_all(): new.
5368         * src/summaryview.c: summary_set_ctree_from_list(): don't expand
5369           the root messages of threads for performance improvement.
5370           summary_show()
5371           summary_select_next_unread()
5372           summary_step(): expand threads when opening messages.
5373           summary_thread_build(): expand threads if the option is turned on.
5374         * src/prefs_common.[ch]: added "Expand threads" option.
5375
5376 2001-08-08
5377
5378         * src/prefs_common.c: removed "Emulate the behavior of mouse
5379           operation of Emacs-based mailer".
5380         * src/prefs_common.c
5381           src/prefs_account.c: changed the value of VSPACING_NARROW to 3.
5382         * src/pixmaps/new.xpm
5383           src/pixmaps/unread.xpm: reverted.
5384
5385 2001-08-07
5386
5387         * src/address.[ch]:
5388           address_folder_new()
5389           address_group_new()
5390           address_item_new(): changed the return value to AddressObject.
5391           address_build_tree(): don't put assertion for file.
5392         * src/pixmaps/new.xpm
5393           src/pixmaps/unread.xpm: modified a bit.
5394
5395 2001-08-06
5396
5397         * src/addressbook.c: fixed some bugs.
5398
5399 2001-08-06
5400
5401         * separated the logic part of addressbook into another module
5402           (still in progress).
5403         * src/address.[ch]: new. It contains the logic part of addressbook.
5404         * src/addressbook.[ch]: removed the logic part.
5405
5406 2001-08-04
5407
5408         * src/textview.c: textview_show_header(): fixed a bug that a garbage
5409           character was shown after header names.
5410
5411 2001-08-02
5412
5413         * src/inc.c: inc_start(): don't abort with non-fatal error.
5414
5415 2001-08-01
5416
5417         * version 0.5.2
5418
5419 2001-08-01
5420
5421         * src/mimeview.c: mimeview_view_file(): added -x option to the
5422           metamail to prevent the suspention of the main process.
5423           mimeview_button_pressed(): deactivate `Open' menu item if
5424           content-type is application/octet-stream.
5425
5426 2001-07-31
5427
5428         * src/imap.c: imap_parse_atom(): parse escaped characters properly.
5429           get_quoted(): new. It handles the escape character '\'.
5430         * src/folder.c: folder_read_list(): don't output warning if
5431           folderlist.xml doesn't exist.
5432         * src/main.c: main(): write folder list after setup.
5433         * src/textview.c: textview_create()
5434           src/compose.c: compose_create(): set default tab width to 8.
5435
5436 2001-07-29
5437
5438         * src/prefs_common.c: date_format_select_row(): fixed a bug that
5439           caused segfault when selecting the list with key.
5440
5441 2001-07-28
5442
5443         * src/mainwindow.c: main_window_popup(): deiconize the window
5444           when popup (thanks to Henrik Carlqvist).
5445         * src/procmime.c: procmime_scan_mime_type(): new.
5446           procmime_scan_content_type(): use procmime_scan_mime_type().
5447           procmime_scan_mime_header(): scan the extension of attached files
5448           and add the correct MIME type if the Content-Type is
5449           "application/octet-stream" (thanks to Don Quijote).
5450         * src/compose.c: compose_toolbar_create(): added a new "Send later"
5451           icon (thanks to Leandro Pereira).
5452
5453 2001-07-27
5454
5455         * src/prefs_common.c: date_format_create(): modified the layout of
5456           the dialog.
5457
5458 2001-07-26
5459
5460         * src/account.c: account_find_from_address(): fixed a minor bug.
5461         * src/prefs_common.c: incorporated the user-interface for setting
5462           date format from the claws branch, and made some modification to
5463           that.
5464
5465 2001-07-25
5466
5467         * src/account.[ch]: account_edit_create(): modified the text of
5468           default button.
5469           account_find_from_address(): new.
5470         * src/procmime.c:
5471           procmime_scan_content_type(), procmime_scan_content_disposition():
5472           fixed ESC code detection.
5473         * src/compose.c: compose_reply(): automatically select account
5474           according to the message header.
5475         * src/prefs_common.[ch]: added member "reply_account_autosel".
5476
5477 2001-07-25
5478
5479         * src/progressdialog.c: made the CList scrollable.
5480         * src/inc.c: inc_start(): don't abort with non-fatal error.
5481
5482 2001-07-24
5483
5484         * added English Sylpheed User's Manual by Paul Kater
5485           (paul@nlpagan.net) (thanks!).
5486         * configure.in
5487           manual/Makefile.am
5488           src/mainwindow.c: added support for English manual.
5489         * manual/en/sylpheed*.html: added English documentation.
5490         * AUTHORS: updated.
5491
5492 2001-07-23
5493
5494         * src/nntp.c: nntp_ok(): fixed the bug that didn't handle a response
5495           that didn't have any trailing messages.
5496         * src/smtp.c: smtp_ok(): ditto.
5497         * src/compose.c: compose_account_option_menu_create(): modified
5498           the style of the account option menu.
5499
5500 2001-07-22
5501
5502         * src/prefs_customheader.c: prefs_custom_header_clist_set_row():
5503           remove return code from strings automatically.
5504           prefs_custom_header_create(): added "X-Face" to the default
5505           option.
5506         * src/news.c: news_fetch_msg(), news_get_group_list()
5507           src/imap.c: imap_fetch_msg(): create the cache directory before
5508           writing.
5509         * src/procmime.c:
5510           procmime_scan_content_type()
5511           procmime_scan_content_disposition(): convert JIS into EUC-JP
5512           before parsing.
5513         * src/codeconv.c: conv_unmime_header(): cleaned up a bit.
5514         * src/compose.c: don't append attachment headers if the attach
5515           pane is visible but the list is empty.
5516         * src/recv.c: recv_bytes_write(): use g_malloc() instead of alloca().
5517
5518 2001-07-18
5519
5520         * version 0.5.1
5521
5522 2001-07-18
5523
5524         * src/compose.c: compose_quote_parse_fmt()
5525           src/prefs_common.c: prefs_quote_description_create(): added the
5526           symbol `%c' that allows to include Cc in reply format (thanks
5527           to Cyril Bellot).
5528         * src/base64.[ch]
5529           src/procmime.c: procmime_decode_content(): applied the patch
5530           from Sergey Vlasov that allows to decode base64 data with
5531           unusual line length (not a multiple of 4) (thanks!).
5532
5533 2001-07-17
5534
5535         * src/procmsg.[ch]: separated the permanent flags and temporary
5536           flags into two variables, and made MsgFlags a structure that
5537           includes them.
5538           MSG_SET_PERM_FLAGS()
5539           MSG_SET_TMP_FLAGS()
5540           MSG_UNSET_PERM_FLAGS()
5541           MSG_UNSET_TMP_FLAGS(): new macros.
5542         * src/compose.c
5543           src/imap.c
5544           src/inc.c
5545           src/messageview.c
5546           src/mh.c
5547           src/news.c
5548           src/procheader.c
5549           src/summaryview.c: modified for the new MsgFlags.
5550         * src/utils.[ch]: hash_free_value_mem(): new. It frees the values
5551           of hash table.
5552
5553 2001-07-16
5554
5555         * src/inc.c: inc_pop3_recv_func(), inc_progress_update():
5556           display current size with human-readable format.
5557         * src/grouplistdialog.c: grouplist_recv_func(): ditto.
5558         * TODO
5559           TODO.jp: updated.
5560
5561 2001-07-16
5562
5563         * src/codeconv.c:
5564           conv_unmime_header(), conv_unmime_header_overwrite(): workaround
5565           for raw-JIS code in header fields.
5566         * src/folder.c:
5567           folder_get_default_folder()
5568           folder_get_default_inbox()
5569           folder_get_default_outbox()
5570           folder_get_default_draft()
5571           folder_get_default_queue()
5572           folder_get_default_trash(): fixed a bug that caused segfault
5573           if folder_list is NULL.
5574
5575 2001-07-15
5576
5577         * README
5578           README.jp
5579           INSTALL
5580           INSTALL.jp
5581           TODO
5582           TODO.jp: updated.
5583         * src/grouplistdialog.c: grouplist_dialog_set_list(): update UI
5584           while retrieving newsgroup list.
5585           grouplist_dialog_create(): added entry widget and status label.
5586           grouplist_recv_func(): new.
5587           refresh_clicked(): added exclusive lock variable.
5588           clist_selected(): set text entry when the CList is selected.
5589           renamed from group_clist_select().
5590           entry_activated(): new.
5591           grouplist_clear(): renamed from grouplist_free(). Also clears
5592           list and entry widget.
5593         * src/news.c: news_get_group_list(): sped up the list appending
5594           (g_slist_append() becomes very slow if list size is large).
5595         * src/defs.h: added UI_REFRESH_INTERVAL definition.
5596           Changed the definition of NEWSGROUP_LIST.
5597         * src/recv.c: recv_write()
5598           src/send.c: send_message_smtp(): changed the UI refresh interval
5599           to UI_REFRESH_INTERVAL (50msec).
5600         * src/account.c: account_add(): fixed a bug that didn't update
5601           folder tree when a news account was added.
5602         * src/grouplistdialog.c: made exclusive lock variable global, and
5603           lock at grouplist_dialog_set_list().
5604         * src/textview.c: fixed a bug that disabled clickable URI if
5605           message color was disabled.
5606
5607 2001-07-15
5608
5609         * src/grouplistdialog.c: ok_clicked(), cancel_clicked(): don't
5610           quit main loop if gtk_main_level() is 1.
5611           grouplist_dialog_set_list(): freeze CList while appending the list.
5612           grouplist_dialog(): show dialog before updating the list.
5613
5614 2001-07-14
5615
5616         * src/folder.c: folder_write_list_recursive(): add the attribute
5617           `collapsed' if a node have some children.
5618         * src/grouplistdialog.[ch]: new. Newsgroups can be selected from
5619           the list.
5620         * src/news.[ch]:
5621           news_get_group_list(): new. It returns newsgroup list.
5622           news_remove_group_list(): new. It removes newsgroup list cache.
5623         * src/folderview.c: folderview_new_news_group_cb(): call
5624           grouplist_dialog() instead of input_dialog().
5625
5626 2001-07-12
5627
5628         * autogen.sh: modified.
5629         * src/folder.[ch]
5630           src/folderview.c: made expand/collapse state of folders persistent
5631           (thanks to Alfons).
5632
5633 2001-07-06
5634
5635         * version 0.5.0
5636
5637 2001-07-06
5638
5639         * src/imap.c: imap_remove_folder(): select INBOX with EXAMINE before
5640           DELETE.
5641           imap_cmd_do_select(): new. It toggles between SELECT and EXAMINE
5642           according to the argument.
5643           imap_cmd_select(): use imap_cmd_do_select().
5644           imap_cmd_examine(): new.
5645         * src/folderview.c: folderview_rm_imap_folder_cb(): select current
5646           folder again when removing failed.
5647
5648 2001-07-05
5649
5650         * version 0.5.0pre4
5651
5652         * manual/ja/sylpheed.sgml
5653           manual/ja/*.html: updated the Japanese manual (thanks to Imai).
5654         * src/summaryview.c: summary_set_row_marks(): fixed a bug that
5655           didn't set foreground correctly.
5656         * src/folderview.h
5657           src/summaryview.h: removed the member color_normal from FolderView
5658           and SummaryView.
5659         * src/mainwindow.c: main_window_create(): removed color_normal.
5660
5661 2001-07-04
5662
5663         * src/prefs_account.[ch]: the port numbers of IMAP4 and NNTP
5664           became specifiable.
5665         * src/imap.c: imap_session_get()
5666           src/news.c: news_session_new_for_folder(), news_session_get():
5667           use user-defined port number if specified.
5668
5669 2001-07-03
5670
5671         * src/imap.c: imap_scan_tree_recursive(): get mailbox status when
5672           scanning.
5673           imap_scan_folder(): implemented. It updates the numbers of new,
5674           unread and total messages.
5675           imap_status(): new. It parses the response of STATUS command.
5676           imap_status_uidnext(): removed.
5677           imap_cmd_status(): removed.
5678         * src/textview.c: textview_show_part(): fixed potential memory leaks.
5679
5680 2001-07-03
5681
5682         * src/alertpanel.c: alertpanel_create(): fixed truncated message.
5683         * src/rfc2015.c: rfc2015_decrypt_message(): fixed the case problem
5684           of content-type (thanks to René Rebe for the patch).
5685         * src/codeconv.c: code_get_code_conv_func(): fixed the ISO-8859-1
5686           detection.
5687         * src/prefs_common.c: prefs_send_create(): made some more character
5688           sets specifiable when not using libjconv.
5689         * configure.in: disabled --enable-threads option temporarily.
5690         * INSTALL
5691           INSTALL.jp: deleted the description about --enable-threads option.
5692
5693 2001-07-02
5694
5695         * updated gettext to 0.10.38.
5696
5697 2001-07-01
5698
5699         * version 0.5.0pre3
5700
5701         * src/folderview.[ch]: folderview_set_all(): new.
5702         * src/account.c: account_add(): call folderview_set_all() after
5703           creating IMAP4 tree.
5704           account_edit_create(): account preferences dialog can be opened
5705           with double clicking of the list.
5706           account_selected(): new.
5707           account_clist_set(): made the CList focus set correctly.
5708
5709 2001-06-30
5710
5711         * src/imap.c: imap_scan_tree(): call imap_create_trash() if trash
5712           is not found.
5713           imap_scan_tree_recursive(): search the sub folders of INBOX.
5714           recognize Trash folder.
5715           imap_create_tree(): separated the part of creating trash.
5716           imap_create_trash(): new.
5717         * src/folder.c: folder_build_tree(), folder_write_list_recursive():
5718           preserve no_sub and no_select.
5719         * src/summaryview.c: summary_show(): don't proceed if item->no_select
5720           is TRUE.
5721
5722 2001-06-29
5723
5724         * src/imap.c: imap_scan_tree(): fixed a bug that didn't set the
5725           root folder correctly.
5726
5727 2001-06-28
5728
5729         * src/folderview.[ch]:
5730           folderview_update_tree(): new. It updates one folder tree.
5731           folderview_update_tree_cb(): new.
5732           Added "Update folder tree" to the popup menu, and modified some
5733           expressions.
5734
5735 2001-06-27
5736
5737         * src/imap.c: implemented the autoscan of IMAP4 folder list.
5738           imap_scan_tree(): new. It scans the whole IMAP4 folder.
5739           imap_scan_tree_recursive(): new. It traverses the IMAP4 folder tree.
5740           imap_parse_list(): new. It parses the LIST response.
5741           imap_get_real_path(): new. It converts local path into IMAP4 path.
5742         * src/folder.h: added no_sub and no_select to FolderItem.
5743         * src/folder.c: folder_tree_destroy(): reset some variables.
5744         * src/folderview.c: folderview_scan_tree_func(): supported IMAP4.
5745
5746 2001-06-26
5747
5748         * src/imap.c: imap_parse_envelope(): fixed a bug that didn't
5749           parse the FETCH response that continues to the next line.
5750           imap_parse_fetch_element(): removed.
5751           imap_parse_atom(), imap_parse_one_address(), imap_parse_address(),
5752           imap_parse_envelope(), imap_get_uncached_messages(): use GString
5753           and sock_getline() to parse the FETCH response.
5754           imap_remove_all_msg(): fixed a bug that didn't delete messages
5755           correctly.
5756           imap_parse_address(): fixed a bug that didn't concaternate
5757           addresses correctly, using GString.
5758         * src/socket.[ch]: sock_getline(), fd_getline(): new. They read
5759           the whole line and return the newly allocated string.
5760         * src/prefs_account.[ch]: added `IMAP server directory' entry.
5761
5762 2001-06-25
5763
5764         * version 0.5.0pre2
5765
5766         * src/imap.c: imap_create_tree(): pass the path that is separated
5767           by the local filesystem separator to imap_create_folder().
5768           imap_create_folder(): examine the existence of folders using
5769           LIST command instead of STATUS.
5770           imap_cmd_list(): new.
5771           imap_query_password(): new.
5772           imap_session_new(): query password if it is not set.
5773
5774 2001-06-24
5775
5776         * src/imap.c: imap_parse_envelope(): FETCH results can be parsed
5777           with arbitrary order.
5778           imap_parse_fetch_element(): new. it parses one pair of name and
5779           value of FETCH results.
5780           imap_parse_flags(): modified for more flexibility.
5781         * src/utils.[ch]: set_log_file(): new. it opens a new file for
5782           logging.
5783           close_log_file(): new. it closes the opened log file.
5784           log_print(), log_message(), log_warning(), log_error(): also
5785           output to log file.
5786
5787 2001-06-22
5788
5789         * src/imap.c: imap_cmd_status(): check the pointer to "value"
5790           before the assignment (thanks to NISHIJIMA).
5791
5792 2001-06-21
5793
5794         * src/folderview.c: folderview_drag_motion_cb(): don't allow DnD
5795           across MH and IMAP4 folder (for now) (thanks to Hiramatu).
5796         * src/foldersel.[ch]: don't show folders which can't be targets
5797           for current folder.
5798
5799 2001-06-20
5800
5801         * version 0.5.0pre1
5802
5803         * src/imap.c:
5804           imap_get_msg_list()
5805           imap_cmd_envelope()
5806           imap_cmd_fetch()
5807           imap_cmd_copy()
5808           imap_cmd_store(): use UID instead of sequential number.
5809           Renamed imap_set_article_flags() to imap_set_message_flags().
5810         * src/summaryview.c: summary_execute(): don't update summary
5811           even if current folder is IMAP4.
5812         * src/utils.[ch]: remove_numbered_files(): changed the type of
5813           arguments from gint to guint.
5814
5815 2001-06-19
5816
5817         * src/imap.c: imap_cmd_login(), imap_cmd_select(), imap_cmd_status(),
5818           imap_cmd_create(), imap_cmd_delete(), imap_cmd_copy(): don't
5819           enclose with double quotation if string doesn't have space
5820           (workaround for old Cyrus IMAP4 server).
5821           imap_create_folder(): fixed a bug of separator substitution.
5822           renamed imap_session_connect_if_not() to imap_session_get().
5823           imap_get_msg_list(): delete all cached messages if use_cache
5824           is off.
5825           imap_delete_cached_messages(): remove cached files in between
5826           the specified range by reading directory entry.
5827           imap_parse_one_address(): set fromname same as the from address
5828           if it is empty.
5829         * src/utils.[ch]: remove_numbered_files(): new. The range is
5830           specifiable.
5831         * src/summaryview.c: summary_execute(): update summary if current
5832           folder is IMAP4.
5833           KEY_PRESS_EVENT_STOP(): new macro.
5834           summary_key_pressed(): stop signal emission when calling
5835           summary_execute().
5836           summary_select_by_msgnum(): show message only if
5837           msg_is_toggled_on is TRUE. Move current page to the selected
5838           node.
5839         * src/news.c; news_delete_old_articles(): remove cached files in
5840           between the specified range by reading directory entry.
5841         * src/folderview.c:
5842           folderview_selected(), folderview_button_released(): fixed a bug
5843           that didn't select folder correctly.
5844
5845 2001-06-18
5846
5847         * src/mainwindow.c
5848           src/summaryview.c
5849           src/prefs_common.c: improvements to the English (thanks to Paul
5850           Mangan).
5851         * src/mainwindow.c: compose_cb()
5852           src/summaryview.c: summary_key_pressed()
5853           src/compose.c: compose_new_with_recipient(): newsgroups entry
5854           is automatically filled when composing a new article.
5855
5856 2001-06-17
5857
5858         * src/procmsg.c: procmsg_msg_list_free(): fixed a bug that didn't
5859           free list correctly.
5860
5861 2001-06-16
5862
5863         * version 0.4.99
5864
5865         * src/imap.c: imap_find_namespace(): replace namespace path
5866           separator with slash before comparison.
5867           imap_remove_folder(): use namespace.
5868           imap_create_tree(): use namespece when creating Trash.
5869           imap_get_msg_list(): fixed a bug that returned old list and caused
5870           memory leak if exists == 0.
5871           imap_select(): new. It's a wrapper for imap_cmd_select().
5872         * src/foldersel.c: foldersel_set_tree(): show IMAP4 folder too.
5873
5874 2001-06-15
5875
5876         * src/folderview.c:
5877           folderview_new_folder_cb()
5878           folderview_new_imap_folder_cb(): show error dialog when creation
5879           or deletion of folder failed.
5880           Made it allow users to create a folder which contains subfolders.
5881           folderview_button_pressed(): disabled delete menu on the special
5882           IMAP4 folder.
5883         * AUTHORS: incorporated from claws branch. It now contains all
5884           contributors.
5885         * src/send.c: enabled cancellation.
5886           EXIT_IF_CANCELLED(): new macro.
5887           Added cancelled flag to SendProgressDialog.
5888         * src/utils.[ch]: strtailchomp(): new. It removes the trailing
5889           specified character.
5890         * src/imap.c: imap_cmd_fetch(): a fix for MS Exchange 2000 server.
5891
5892 2001-06-15
5893
5894         * src/imap.c: imap_create_tree(): new. It creates required
5895           folders such as INBOX and Trash.
5896           imap_do_copy(), imap_do_copy_msgs_with_dest(): don't expunge
5897           if COPY failed.
5898           imap_remove_all_msg(): return immediately if exists == 0.
5899         * src/account.c: account_add(), account_set_missing_folder():
5900           made them use folder->create_tree().
5901
5902 2001-06-14
5903
5904         * src/imap.c: more namespace implementation.
5905           imap_find_namespace(), imap_path_separator_subst(): new.
5906
5907 2001-06-13
5908
5909         * src/imap.c: imap_parse_namespace(), imap_cmd_namespace(): new.
5910
5911 2001-06-11
5912
5913         * src/summaryview.c: summary_show(): fixed a glitch in folder view.
5914
5915 2001-06-08
5916
5917         * src/imap.[ch]: added imap_add_msg(), and imap_append_message(),
5918           which appends file into IMAP4 folder.
5919           imap_status(): new.
5920           imap_create_folder(): check the existence of a folder before
5921           create it.
5922           renamed the prefix of low-level IMAP4rev1 functions to imap_cmd.
5923         * src/account.c: account_add(), account_set_missing_folder():
5924           create INBOX automatically when creating IMAP4 account.
5925
5926 2001-06-07
5927
5928         * src/utils.[ch]: added itos_buf() that takes the buffer for its
5929           argument.
5930         * src/imap.[ch]: imap_copy_msg(), imap_copy_msgs_with_dest(): new.
5931         * src/folder.c: added copy_msg and copy_msgs_with_dest methods
5932           to the IMAP class.
5933
5934 2001-06-06
5935
5936         * src/utils.[ch]: move_file(): new.
5937         * src/mh.c: mh_move_msg(), mh_move_msgs_with_dest(): modified to
5938           use move_file(), and fixed a bug that didn't close file when
5939           error occured.
5940
5941 2001-06-06
5942
5943         * src/imap.c: renamed imap_delete_messages() and
5944           imap_delete_all_messages() to imap_delete_cached_messages() and
5945           imap_delete_all_cached_messages(). Some code cleanups.
5946         * src/utils.[ch]: added a function remove_all_numbered_files().
5947         * src/mh.c: mh_remove_all_msg()
5948           src/imap.c: imap_delete_all_cached_messages():
5949           use remove_all_numbered_files().
5950         * src/mainwindow.c
5951           src/summaryview.c
5952           src/compose.[ch]: added `Reply to sender'.
5953           compose_reply()
5954           compose_reply_set_entry(): added an argument `ignore_replyto'.
5955
5956 2001-06-05
5957
5958         * src/folderview.c: folderview_selected()
5959           src/summaryview.c: summary_show(): fixed a bug that updated wrong
5960           folder when remaining marks were processed.
5961
5962 2001-06-04
5963
5964         * src/headerwindow.c: headerwindow_show_cb(): always try to show
5965           msginfo, and use the selected message, not the displayed one.
5966         * src/smtp.c: smtp_ok(): fixed sock_gets() error handling.
5967
5968 2001-06-02
5969
5970         * src/folderview.c: folderview_selected()
5971           src/mimeview.c: mimeview_selected(): ungrab the mouse event.
5972         * src/summaryview.c: summary_show(): process the left marks if any.
5973
5974 2001-05-27
5975
5976         * src/passphrase.c: enclosed with #if USE_GPGME.
5977         * src/prefs_account.c: added NNTP AUTH check button.
5978         * src/alertpanel.[ch]: alertpanel_create(): added new argument
5979           `can_disable', all existing callers changed to pass FALSE;
5980           created a check button to disable the message.
5981           alertpanel_message_with_disable(): new.
5982           alertpanel_show(): mask value with G_ALERT_VALUE_MASK.
5983           alertpanel_button_toggled(): new.
5984           alertpanel_button_clicked(), alertpanel_close(): set value using
5985           G_ALERT_VALUE_MASK.
5986         * src/prefs_common.[ch]: added option to toggle GnuPG signature
5987           check popup window, and GnuPG warning.
5988         * src/rfc2015.c: check_signature(): show signature check dialog
5989           only if it is enabled.
5990         * src/main.c: modified GnuPG checking.
5991         * src/main.c
5992           src/prefs_common.c: fixed some compilation bugs when enabled
5993           GPGME.
5994
5995 2001-05-26
5996
5997         * src/codeconv.c: conv_get_code_conv_func(): fix for ISO-8859-*
5998           encodings with libjconv.
5999           conv_encode_header(): fixed an endless loop bug when encountering
6000           an invalid wide character (thanks to Alte).
6001         * src/headerview.c: SET_FONT_STYLE(): fixed segfault with invalid
6002           bold font.
6003         * src/imap.c: imap_create_folder(): don't create folder if the
6004           name is INBOX.
6005         * src/mainwindow.c: main_window_reflect_prefs_all(): hide the
6006           execute button when immediate execution is enabled.
6007
6008 2001-05-22
6009
6010         * README
6011           README.jp: added the "How to run" section.
6012
6013 2001-05-19
6014
6015         * merged NNTP AUTH from the claws branch.
6016         * src/news.[ch]: supported NNTP AUTH.
6017         * src/nntp.[ch]: wrapped SockInfo with NNTPSockInfo for NNTP AUTH.
6018         * INSTALL
6019           INSTALL.jp: modified the confirmation list and the warning about
6020           threads.
6021
6022 2001-05-18
6023
6024         * src/gtkutils.[ch]: moved folderview_find_collapsed_parent() to
6025           gtkut_ctree_find_collapsed_parent().
6026         * src/folderview.c: folderview_select_node(): automatically expand
6027           the parent folders when selected.
6028         * configure.in: made the version number to 0.4.99 (0.5pre)
6029         * src/main.c: main(): moved parse_cmd_opt() before gtk_init()
6030           so that X is not necessary for --help and --version.
6031           parse_cmd_opt(): changed g_get_prgname() to g_basename(argv[0]).
6032         * src/folderview.c: folderview_update_node(): a fix for collapsed
6033           nodes.
6034
6035 2001-05-17
6036
6037         * src/main.c: lock_socket_input_cb(): changed fd_read() to fd_gets().
6038           It caused garbages in --compose option.
6039         * src/socket.[ch]: made fd_gets() public.
6040
6041 2001-05-16
6042
6043         * src/gtkutils.[ch]: gtkut_ctree_node_next(): new.
6044         * src/folderview.c: folderview_find_next_unread(): new.
6045           folderview_select_next_unread(): modified so that it can find
6046           the hidden folder.
6047
6048 2001-05-15
6049
6050         * src/compose.c: compose_write_headers(): excluded also From, To,
6051           Sender because they could be used for SPAM.
6052         * src/folderview.c: add '+' mark to the collapsed folder that have
6053           some unread folders.
6054           folderview_search_new_recursive(),
6055           folderview_have_new_children(),
6056           folderview_search_unread_recursive(),
6057           folderview_have_unread_children(),
6058           folderview_find_collapsed_parent(): new.
6059           folderview_update_node(): display the number of queued messages.
6060
6061 2001-05-14
6062
6063         * src/folder.[ch]
6064           src/mh.[ch]: modified *_add_msg() to use link(). Added the
6065           argument to switch whether to remove the source file or not.
6066         * src/compose.c
6067           src/inc.c
6068           src/mbox.c: modified the argument of folder_item_add_msg() and
6069           removed some unlink()'s.
6070
6071 2001-05-13
6072
6073         * src/prefs_customheader.[ch]: renamed prefs_headers_* to
6074           prefs_custom_header_*. Removed `(New)' row and `Substitute'
6075           button. Supported empty value.
6076           prefs_custom_header_row_moved(): new. Connected "row_move" signal
6077           to the function, and made it set header list.
6078         * src/customheader.c: custom_header_get_str()
6079           src/compose.c: compose_write_headers(): supported empty value.
6080         * src/prefs_display_header.c: prefs_display_header_row_moved(): new.
6081           Connected "row_move" signal to the function, and made it set
6082           header list.
6083         * src/compose.c: compose_write_headers(): modified the order of
6084           headers, and made it encode the custom headers.
6085         * src/prefs_customheader.c: prefs_custom_header_delete_cb()
6086           src/prefs_filter.c: prefs_filter_delete_cb(): treat closing the
6087           alert panel by ESC as "No".
6088
6089 2001-05-13
6090
6091         * merged the custom header stuff from claws branch:
6092         * src/customheader.[ch]
6093           src/prefs_customheader.[ch]: new.
6094         * src/customheader.c: custom_header_read_str(): use strtol() instead
6095           of atoi() and check errors.
6096           custom_header_find(): new function.
6097         * src/compose.c: IS_IN_CUSTOM_HEADER(): new macro.
6098           compose_write_headers(): made it replace headers with user-defined
6099           headers except for some automatically generated headers.
6100
6101 2001-05-11
6102
6103         * src/inc.c: connection_check_cb(): fixed a bug that caused
6104           segmentation fault if connection was not established.
6105         * src/compose.c: compose_create(): even if set_autobcc or set
6106           autoreplyto is checked and the entries are empty, show them.
6107
6108 2001-05-10
6109
6110         * src/textview.c: textview_show_mime_part(): modified the messages.
6111           TEXT_INSERT(): new macro.
6112         * po/ja.po: fixed.
6113         * src/prefs_display_header.c: prefs_display_header_create():
6114           modified the text of checkbutton.
6115
6116 2001-05-09
6117
6118         * src/mimeview.c: added "Open with..." to the context menu.
6119         * src/summaryview.c: summary_print()
6120           src/inputdialog.c: input_dialog(): fixed memory leaks.
6121         * src/textview.c: textview_show_mime_part(): updated the description.
6122         * src/send.c: implemented sending progress dialog.
6123           (TODO: automaton should be used.)
6124           send_progress_dialog_create(), send_progress_dialog_destroy(),
6125           send_cancel(): new.
6126           send_message_smtp(): made it update the dialog for each stage.
6127         * src/utils.[ch]: get_left_file_size(): new. Get the left bytes
6128           of opened file.
6129         * src/summaryview.c: summary_show(): when open_inbox_on_inc is set,
6130           go to first unread message even if folder is same as previous.
6131         * src/prefs_common.c: made color selection dialog transient, and
6132           made escape key close the dialogs.
6133
6134 2001-05-08
6135
6136         * version 0.4.66
6137
6138         * src/select-keys.c: delete_event_cb(): removed `;' from its end.
6139         * src/recv.c: recv_write(): changed the interval to 10msec.
6140         * src/prefs_display_header.c: modified the layout of the dialog,
6141           and made the hidden headers list insensitive when `Show other
6142           headers' is not checked.
6143         * src/textview.c: changed strcasecmp() and strncasecmp() to
6144           the corresponding glib functions.
6145         * src/inc.c: get_spool(): make a temporary file in the home
6146           directory.
6147
6148 2001-05-07
6149
6150         * src/prefs_common.c
6151           src/prefs_account.c
6152           src/prefs_filter.c
6153           src/account.c
6154           src/alertpanel.c
6155           src/filesel.c
6156           src/foldersel.c
6157           src/export.c
6158           src/import.c
6159           src/inputdialog.c
6160           src/passphrase.c
6161           src/select-keys.c
6162           src/sigstatus.c: fixed a bug that accidentally destroyed dialogs
6163           when closed them with delete_event (thanks to DINH).
6164           Added *_deleted() and *delete_event() which handle delete_event
6165           signal correctly.
6166
6167 2001-05-06
6168
6169         * src/prefs_display_header.c: merged some changes from claws branch:
6170           prefs_display_header_create(): allow reordering of headers by
6171           dragging.
6172           prefs_display_header_find_header(): new function.
6173           prefs_display_header_clist_set_row(): don't allow duplicates.
6174         * src/prefs_account.c: prefs_account_receive_create(): changed
6175           the label of the check button.
6176
6177 2001-05-05
6178
6179         * src/pop.c: pop3_getsize_list_recv(): if sscanf() failed, break
6180           immediately.
6181         * src/inc.h: removed cur_msg_bytes from Pop3State.
6182         * src/inc.c: pop3_recv_func()
6183           src/recv.[ch]: made the second arguments of RecvUIFunc current
6184           total read bytes.
6185           recv_write(): made it call UI func if elapsed time is greater
6186           than 0.1 sec.
6187         * src/recv.c: recv_write(): changed the interval to 300 usec.
6188         * src/textview.c: textview_show_header(): if header is Subject,
6189           unfold it.
6190         * src/utils.[ch]: unfold_line(): new.
6191         * src/procheader.[ch]: procheader_get_header_array(): new.
6192         * src/prefs_display_header.c: updated defaults.
6193
6194 2001-05-05
6195
6196         * some merge from the sylpheed-claws branch.
6197           It allows user to specify displayed headers in message view.
6198           (symbol names were also changed.)
6199         * src/prefs_display_header.[ch]
6200           src/displayheader.[ch]: new.
6201         * src/prefs_display_header.c:
6202           removed prefs_display_headers_other_headers_toggled().
6203           removed "(New)" row from the list.
6204         * src/defs.h: added DISPLAY_HEADER_RC.
6205         * src/prefs_common.c: prefs_message_create(): added a button for
6206           opening the display header setting dialog.
6207         * src/prefs_common.h: added show_other_header and disphdr_list
6208           to PrefsCommon.
6209         * src/procheader.[ch]: procheader_get_header_list_from_file(),
6210           procheader_get_header_array_asis(): new.
6211           procheader_get_header_list(): modified so that it takes FILE
6212           pointer for its argument.
6213           procheader_header_array_destroy(), procheader_header_free(): new.
6214         * src/main.c: main(): made it call prefs_display_header_*_config().
6215         * src/textview.c: textview_scan_header(): modified so that it
6216           sorts headers according to user setting.
6217           src/textview_show_header(): made it call
6218           textview_make_clickable_parts().
6219           textview_make_clickable_parts(): added GdkFont to its arguments,
6220           and removed GtkText from them.
6221
6222 2001-05-04
6223
6224         * implemented auto-checking of new mail based on the patch from
6225           Pierric Descamps (thanks!).
6226         * src/inc.c: added inc_autocheck_timer_init(),
6227           inc_autocheck_timer_set(), inc_autocheck_timer_remove(),
6228           inc_autocheck_func() for auto-checking of new mail.
6229         * src/main.c: main(): call inc_autocheck_timer_init().
6230         * src/prefs_common.c: prefs_receive_create(): activated the
6231           auto-checking UI. Added prefs_common_cancel(), and connected
6232           some signals to that.
6233         * src/prefs_common.c
6234           src/prefs_account.c
6235           src/prefs_filter.c
6236           src/account.c: Disabled auto-checking while opening the dialog.
6237         * src/headerview.c: headerview_show_xface(): fixed a bug that
6238           showed a warning when header pane was hidden.
6239
6240 2001-05-03
6241
6242         * src/inc.c
6243           src/pop.c
6244           src/recv.c: removed non-blocking socket mode support since it
6245           does nothing.
6246         * src/pop.c
6247           src/inc.c: modified the messages of incorporation dialog.
6248
6249 2001-05-02
6250
6251         * src/utils.h: made u32 the typedef of guint32.
6252           added BIG_ENDIAN_HOST macro that is used by md5.c.
6253         * src/md5.c: renamed md5c.c. Fixed the indentation. Fixed a bug
6254           that didn't calculate MD5 correctly on big endian machines.
6255
6256 2001-05-01
6257
6258         * version 0.4.65
6259
6260         * src/folder.c: folder_init(): added the method imap_remove_folder.
6261         * src/folderview.c: folderview_rm_imap_folder_cb(): made it
6262           actually remove folder from IMAP4 server.
6263         * src/imap.[ch]: imap_create_folder(): made it actually create
6264           folder on IMAP4 server.
6265           imap_remove_folder(): added.
6266           imap_create(), imap_delete(): added.
6267         * src/summaryview.c: summary_execute_delete(): don't check trash
6268           if folder type is not F_MH.
6269         * thanks to Ishihara for the above changes.
6270         * configure.in
6271           ac/check-type.m4: better wint_t typedef detection (renamed
6272           sv_CHECK_TYPE to SYLPHEED_CHECK_TYPE).
6273
6274 2001-04-30
6275
6276         * src/recv.c: recv_bytes_write(): fixed another bug that caused
6277           infinite loop and buffer overrun.
6278
6279 2001-04-30
6280
6281         * src/socket.[ch]: renamed sock_read() and fd_read() to
6282           sock_gets() and fd_gets() for preventing confusion.
6283           Added sock_read() and fd_read() which is the wrapper of read().
6284         * src/recv.c: recv_bytes_write(): fixed a bug that caused infinite
6285           loop. Use sock_read() instead of fd_read().
6286         * src/esmtp.c
6287           src/imap.c
6288           src/news.c
6289           src/nntp.c
6290           src/pop.c
6291           src/recv.c
6292           src/smtp.c: use sock_gets() instead of sock_read().
6293         * src/imap.c: imap_session_new(): fixed the error detection
6294           of imap_open().
6295
6296 2001-04-28
6297
6298         * src/inc.c: made it displays current read bytes to the dialog.
6299         * src/pop.c: recv_write(): call UI function before editing
6300           strings.
6301
6302 2001-04-27
6303
6304         * src/progressdialog.c: progress_dialog_create(): modified the
6305           size of dialog and made it stretchable.
6306         * src/smtp.c
6307           src/esmtp.c: smtp_ok(), esmtp_ok(): fixed a bug that didn't
6308           process an error response correctly (thanks to Ohmasa).
6309         * src/pop.[ch]: added pop3_getsize_list_send(),
6310           pop3_getsize_list_recv().
6311         * src/recv.[ch]: added recv_set_ui_func() that makes recv_write()
6312           call the callback function for each sock_read().
6313         * src/inc.h: in Pop3State, renamed bytes to total_bytes, and added
6314           cur_msg_bytes, cur_total_bytes, and sizes.
6315         * src/inc.c: added inc_pop3_recv_func() that updates the progress
6316           bar for each sock_read().
6317
6318 2001-04-26
6319
6320         * src/mh.c: mh_is_maildir_one(): modified so that it uses
6321           is_dir_exist().
6322
6323 2001-04-25  Werner Koch  <wk@gnupg.org>
6324
6325         * src/mh.c (mh_is_maildir_one, mh_is_maildir): New.
6326         (mh_scan_tree_recursive): Do not include Maildir style directories
6327         in the scan.
6328
6329         Changed the use of integers to describe sockets by an more abstract
6330         data structure.
6331
6332         * src/automaton.h (struct _Automaton): Add help_sock.
6333         * src/automaton.c (automaton_input_cb): Changed source to be
6334         SockInfo and use wrapper for gdk_input_add.
6335
6336         * src/send.c (SEND_EXIT_IF_ERROR): Adjusted tests and removed test
6337         for invalid socket because this is now done in sock_close. Set
6338         sock to NULL.
6339         (SEND_EXIT_IF_NOTOK): Set closed sock to NULL.
6340         (send_smtp_open): Use only SockInfo.
6341
6342         * src/news.c (news_session_new): Use SockInfo here.
6343         (news_session_destroy): Ditto and set sock to NULL.
6344
6345         * src/nntp.c: Use SockInfo instead of integers
6346         * src/smtp.c: Ditto.
6347         * src/pop.c: Ditto.
6348         * src/recv.c: Ditto.
6349
6350         * src/inc.c (inc_pop3_session_do): Removed sock_sockinfo_free. Put
6351         gdk_input_add into a wrapper.
6352
6353         * src/esmtp.c: Changed socket descriptors to use SockInfo.
6354         * src/esmtp.h: Ditto, included socket.h.
6355         * src/session.h (struct _Session): Likewise.
6356         * src/imap.c (imap_open): Return SockInfo ptr and not an integer.
6357         Removed access to internal data of SockInfo.  Changed all callers
6358         and functions to take SockInfo.
6359         (imap_session_new): Use sock_close here.
6360         (imap_session_destroy): Ditto.
6361
6362         * src/compose.c (compose_exec_ext_editor): Replaced sock_write by
6363         fd_write.
6364
6365         * src/main.c (app_will_exit): Close lock socket using fd_close.
6366         (prohibit_duplicate_launch): Use fd_xxx functions instead of sock_xxx.
6367         (lock_socket_input_cb): Ditto.
6368
6369         * src/socket.h, src/socket.c: Prepared SockInfo structure to use
6370         glib channels. Changed all sock_xxx to use SockInfo instead of an
6371         integer.
6372         (sock_connect_unix, sock_open_unix, sock_accept): Renamed to ..
6373         (fd_connect_unix, fd_open_unix, fd_accept): .. this and changed all
6374         callers.
6375         (fd_read, fd_write, fd_close): New.
6376         (sock_sockinfo_free): Removed.
6377         * src/socket.c (sock_connect_nb): Use close instead sock_close here.
6378         (sock_connect): Ditto.
6379
6380 2001-04-26
6381
6382         * config.h.in: removed.
6383         * ac/Makefile.am: added gnupg-check-typedef.m4 to MACROS.
6384         * .cvsignore: added.
6385         * src/inc.c
6386           src/progressdialog.[ch]
6387           src/pixmaps/complete.xpm
6388           src/pixmaps/continue.xpm
6389           src/pixmaps/error.xpm: applied the patch from Leandro Pereira
6390           that displays the state of message incorporation (thanks!).
6391         * src/inc.c: made the progress dialog change the text of status.
6392
6393 2001-04-25
6394
6395         * removed po/*.gmo, configure, stamp-h.in, aclocal.m4, Makefile.in
6396           from the cvs tree.
6397         * COPYING: removed RSA copyright notice.
6398         * removed po/sylpheed.pot, po/stamp-cat-id, po/cat-id-tbl.c.
6399         * configure.in: added the check of sys/utsname.h.
6400
6401 2001-04-24  Werner Koch  <wk@gnupg.org>
6402
6403         Merged most of the changes from the W32 branch in.
6404
6405         * configure.in: Require gpgme >= 0.2.1
6406
6407         * acconfig.h (HAVE_U32_TYPEDEF): New.
6408         * ac/gnupg-check-typedef.m4: New.
6409         * configure.in: Check for u32 type and the size of some types.
6410         * src/utils.h: Define the u32 type and related constants.
6411
6412         * src/about.c (about_create): Removed the note about MD5.  We are
6413         not any longer using the RSA Inc. implementation.
6414         * src/md5ify.c, src/md5ify.h, src/md5global.h:  Removed.
6415         * src/md5c.c, src/md5c.h: Replaced by an FSF implementation and
6416         renamed the function to standard lowercase convention. Changed all
6417         callers. 
6418         (md5_hex_digest): New.
6419         (md5_hmac): Add hmac function by Martin Schaaf with some 
6420         modifications.
6421         (md5_hex_hmac): New.
6422         * src/esmtp.c, src/esmtp.h (md5_hex_hmac): Removed.
6423         (hmac_md5): Removed.
6424         * src/pop.c (pop3_getauth_apop_send): Replaced the md5_digest by
6425         the new md5_hex_digest function.
6426
6427         * src/about.c: Include utsname.h only if available
6428
6429         * src/utils.c, src/utils.h (get_home_dir): New to better cope with
6430         special Windoze requirements.  Changed all calls to
6431         g_get_home_dir() to this function.
6432
6433         * simple-gettext.c: New.
6434
6435         * src/main.c (main): Issue a warning if GnuPG is not properly
6436         installed.
6437
6438         * src/sigstatus.c, src/sigstatus.h: New.
6439         * src/rfc2015.c (check_signature): Use the sigstatus window and
6440         get the status texts from a utility function.
6441
6442         * src/select-keys.c: Removed the global select_keys var and
6443         pass an allocated one along all functions.
6444         (set_row): Display only keys capable of encryption.
6445         (update_progress): Replaced the progressbar by
6446         a windmill and a text showing for which key we are collecting
6447         info.  Removed progressbar everywhere else and updated callers.
6448
6449         * src/prefs_common.c (prefs_privacy_create) [__MINGW32__]: Do not
6450         display the grab button. 
6451
6452 2001-04-24
6453
6454         * src/prefs_common.[ch]
6455           src/procheader.c: applied the patch from Darko Koruga that
6456           allows user to define their own format for displaying date in
6457           summary view using strftime() (thanks!).
6458         * src/prefs_common.c: prefs_quote_colors_dialog()
6459           src/mainwindow.c: main_window_reflect_prefs_all(): made it
6460           update message colors if the colors setting is changed.
6461         * src/main.[ch]: made it remember the startup directory.
6462         * src/export.c: export_mbox(): made it initially chdir to the
6463           startup directory.
6464         * src/filesel.c: filesel_select_file(): made it open the startup
6465           directory at first.
6466
6467 2001-04-23
6468
6469         * added option to warn about queued messages on exit [sergey]:
6470
6471           * src/compose.c: compose_queue(): call folder_item_scan()
6472             and folderview_update_item() after queueing.
6473           * src/folderview.c: folderview_update_node(): draw the queue
6474             folder in bold font if there are queued messages.
6475           * src/mainwindow.c: queued_messages(): new function.
6476             app_exit_cb(): display warning if there are queued messages
6477             if warn_queued_on_exit is set.
6478           * prefs_common.[ch]: add warn_queued_on_exit option.
6479
6480         * src/mainwindow.c: moved queued_messages() to main.c, and renamed
6481           it to get_queued_message_num().
6482         * src/main.c: app_will_exit(): moved warning dialog code from
6483           app_exit_cb(), and added manage_window_focus_in().
6484
6485         * enhanced GnuPG key selection support [sergey]:
6486
6487           * src/select-keys.c: updated to newer version from Win32
6488             branch with support for selecting arbitrary keys.
6489           * src/prefs_account.c: added the Privacy tab to the account
6490             options window.
6491             prefs_account_privacy_create(),
6492             prefs_account_sign_key_set_data_from_radiobtn(),
6493             prefs_account_sign_key_set_radiobtn(): new functions.
6494           * src/prefs_account.h: new preferences sign_key_type, sign_key_id.
6495           * src/rfc2015.c: set_signers(): new function.
6496             pgp_sign(): add the account parameter, call set_signers().
6497             rfc2015_sign(): add the account parameter, pass it to pgp_sign().
6498           * src/rfc2015.h: rfc2015_sign(): updated prototype.
6499           * src/compose.c: pass the current account to rfc2015_sign().
6500
6501 2001-04-22
6502
6503         * src/mbox.c: export_to_mbox(): fixed a memory leak bug.
6504
6505 2001-04-20
6506
6507         * src/mbox.[ch]: renamed export_mbox() to export_to_mbox().
6508           Fixed a memory leak bug.
6509         * src/export.[ch]: added for exporting folder to mbox.
6510         * src/import.[ch]: made import_mbox() take default folder.
6511           Added description to the dialog.
6512         * src/summaryview.c: summary_show(): fixed a bug that kept the
6513           toolbar buttons insensitive after receiving messages.
6514         * src/export.c
6515           src/import.c: fixed a bug that caused quitting of the program
6516           when OK or Cancel button was clicked several time.
6517         * src/prefs_common.[ch]
6518           src/addressbook.c: added "Add address to destination when
6519           double-clicked" option.
6520
6521 2001-04-19
6522
6523         * src/prefs_common.[ch]: reorganized the items of settings,
6524           and added Message tab.
6525         * src/main.c: parse_cmd_opt(): added command line option --version.
6526         * src/mh.c: made it unset MSG_DELETED flag when moved/copied to
6527           special folders.
6528         * src/prefs_common.[ch]
6529           src/headerview.[ch]: the header pane can be toggled now.
6530         * src/prefs_common.[ch]
6531           src/textview.c: page scroll step is now selectable between
6532           one page and half page.
6533         * src/mbox.[ch]: added export_mbox() that reads all messages
6534           in a folder, and store them into one mbox file.
6535
6536 2001-04-18
6537
6538         * src/prefs_filter.[ch]: separated filter setting code from
6539           prefs_common.c, and made it a separate dialog.
6540
6541 2001-04-17
6542
6543         * version 0.4.64
6544
6545         * src/automaton.[ch]
6546           src/inc.c: fixed the bug that made Sylpheed crash when clicking
6547           Cancel button while getting new mail (thanks to Sergey Vlasov).
6548         * src/xml.c: xml_build_tree()
6549           src/addressbook.c: fixed a bug that caused infinite loop if an
6550           illegal XML file was given.
6551
6552 2001-04-16
6553
6554         * src/summaryview.c
6555           src/inc.c: applied the patch from Sergey Vlasov that fixes the
6556           problem when the "Go to inbox after receiving new mail" option
6557           was turned off (thanks!).
6558
6559 2001-04-15
6560
6561         * src/xml.[ch]: modified so that it supports some characters which
6562           must be escaped, and multiple-lined tag.
6563         * src/folder.c
6564           src/addressbook.c: modified so that it escapes some characters
6565           like '<', '>', '&', ''', '"'.
6566
6567 2001-04-10
6568
6569         * version 0.4.63
6570
6571         * src/folder.[ch]
6572           src/mainwindow.c
6573           src/mh.[ch]
6574           src/procmsg.[ch]
6575           src/summaryview.[ch]: applied the patch from Darko Koruga that
6576           adds copy message operation for the MH folders (thanks!).
6577         * src/imap.c: disabled slash to dot conversion.
6578         * src/imageview.c: fixed a bug that displayed an old image when
6579           loading of a image failed (thanks to Darko Koruga).
6580
6581 2001-04-09
6582
6583         * src/procmsg.c: procmsg_read_cache(): added setvbuf() to speed up
6584           cache reading (thanks to Sergey Vlasov).
6585         * src/inc.c
6586           src/summaryview.[ch]
6587           prefs_common.[ch]: applied the patch that keeps the same folder
6588           after receiving new mail (thanks to Sergey Vlasov).
6589         * src/textview.c
6590           src/utils.[ch]: moved get_quote_level() to utils.c.
6591
6592 2001-04-08
6593
6594         * ac/Makefile.am: added.
6595         * Makefile.am
6596           configure.in: added ac directory.
6597
6598 2001-04-07
6599
6600         * src/summaryview.c: summary_filter(): made it move messages
6601           immediately if immediate_exec option is set.
6602         * src/prefs_common.[ch]
6603           src/textview.[ch]
6604           src/gtkutils.[ch]: applied the message coloring patch from
6605           Stephen Anthony with some modification (thanks!).
6606         * src/gtksctree.c
6607           src/mimeview.c: modified the behavior of MimeView (thanks to
6608           HIRAMATSU).
6609
6610 2001-04-06
6611
6612         * src/utils.c: copy_file()
6613           src/mh.c: applied (and modified) the patch from Darko Koruga
6614           that enables to move messages across file systems (thanks!).
6615         * src/procheader.c
6616           src/utils.[ch]: applied the patch from Jorge Van Hemelryck
6617           that converts the date of messages to the local time (thanks!).
6618         * src/utils.c: remote_tzoffset_sec(): fixed a bug that the signs
6619           of one-letter timezone were reversed.
6620         * src/folder.c: folder_item_add_msg(): put the assertion for the
6621           add_msg() method (thanks to TAKANO).
6622
6623 2001-04-05
6624
6625         * src/procmime.c: procmime_decode_content(): fixed a bug that
6626           corrupted quoted-printable encoded messages when they include
6627           `=00' (thanks to Masahiro Tomita).
6628         * src/gtksctree.c
6629           src/mimeview.c
6630           src/summaryview.c: modified the DnD behavior of MIME view
6631           (thanks to HIRAMATSU).
6632
6633 2001-04-04
6634
6635         * src/about.c: applied the patch from Sergey Vlasov that fixes
6636           the appearance of the about dialog (thanks!).
6637         * src/prefs_common.[ch]
6638           src/rfc2015.[ch]
6639           src/mimeview.c
6640           src/procmime.[ch]
6641           src/compose.[ch]
6642           src/passphrase.c
6643           src/textview.[ch]: applied the GnuPG support patch which had
6644           ported from the sylpheed-win32 branch (thanks to Sergey Vlasov).
6645         * INSTALL, INSTALL.jp: updated the description about GnuPG.
6646
6647 2001-04-03
6648
6649         * src/utils.[ch]: added references_list_append() that parses
6650           References header and makes it string list.
6651         * src/compose.c: modified so that too long References header is
6652           truncated, garbage characters are removed, and header is tidied
6653           up (thanks to Matthias Intemann).
6654
6655 2001-04-02
6656
6657         * src/addr_compl.c: applied the address completion bugfix patch
6658           from Alfons Hoogervorst (thanks!).
6659
6660 2001-04-01
6661
6662         * src/gtksctree.c: modified so that the tree_select_row signal
6663           actually pass the column number.
6664         * src/summaryview.c: summary_selected(): made generic mark and
6665           unread mark can be toggled with clicking of the columns.
6666           Added summary_mark_row_as_read() and summary_mark_row_as_unread().
6667         * src/prefs_common.c
6668           src/prefs_account.c: applied the layout fix patches from Sergey
6669           Vlasov, and adjusted some widths of GtkEntry widgets.
6670         * src/prefs.c: prefs_dialog_create(): enable notebook to take focus.
6671         * src/inc.c: inc_start(): modified so that authentication dialogs
6672           show server name too (thanks to Sergey Vlasov).
6673
6674 2001-03-31
6675
6676         * src/mimeview.c: mimeview_key_pressed(): fixed a bug that caused
6677           segmentation fault when a malformed multipart message is shown
6678           (thanks to Sergey Vlasov).
6679         * src/summaryview.c: summary_display_msg(): made it focus to the
6680           summary view if the MIME list is empty.
6681
6682 2001-03-30
6683
6684         * src/pixmaps/deleted.xpm
6685           src/pixmaps/mark.xpm
6686           src/summaryview.c: added deleted and mark icon.
6687         * src/gtkutils.c: gtkut_widget_init(): changed gtk_widget_destroy()
6688           to gtk_widget_unref().
6689         * src/addr_compl.c: start_address_completion(): fixed the bug that
6690           displayed warning when the address book was empty (thanks to
6691           Chideok Hwang).
6692
6693 2001-03-29
6694
6695         * src/summaryview.c: summary_show(): fixed a memory leak bug
6696           (thanks to ChiDeok Hwang).
6697         * src/pixmaps/forwarded.xpm
6698           src/pixmaps/replied.xpm
6699           src/pixmaps/new.xpm
6700           src/pixmaps/unread.xpm
6701           src/compose.c
6702           src/mainwindow.c
6703           src/prefs_common.c
6704           src/procmsg.h
6705           src/summaryview.[ch]: applied the patch from Marc Hoper
6706           that adds replied and forwarded mark to replying or forwarding
6707           messages (thanks!). And new and unread mark were replaced
6708           by the icons David Mehrmann created (thanks!).
6709         * src/summaryview.c: made the width of unread and MIME column
6710           fixed.
6711         * src/prefs.c: prefs_config_parse_one_line(): made it check the
6712           '=' separator (thanks to Sergey Vlasov).
6713
6714 2001-03-26
6715
6716         * src/prefs_common.[ch]: moved smooth scroll option to the
6717           interface tab.
6718         * src/textview.c: made the one-line scroll also perform smooth
6719           scrolling.
6720
6721 2001-03-25
6722
6723         * src/prefs_common.[ch]
6724           src/textview.c: applied the smooth scroll patch from Setoh and
6725           Ninomiya (thanks!).
6726
6727 2001-03-24
6728
6729         * src/summaryview.c: summary_attract_by_subject(): rewritten it
6730           using hash table for speeding up.
6731         * src/prefs_account.c: made filter_on_receive TRUE by default.
6732         * src/mainwindow.c: reordered menu items.
6733
6734 2001-03-23
6735
6736         * src/gtkutils.c: gtkut_clist_bindings_add(): fixed a bug that
6737           caused address completion not to accept space and enter key.
6738
6739 2001-03-22
6740
6741         * src/utils.[ch]
6742           src/codeconv.c: fixed a bug that didn't encode non-ASCII headers
6743           correctly.
6744         * src/compose.c: fixed a bug that didn't decode some headers
6745           correctly when replying or reediting drafts (thanks to Sergey
6746           Vlasov).
6747
6748 2001-03-21
6749
6750         * src/gtkutils.[ch]: added gtkut_widget_init() that modifies the
6751           behaviors of some classes.
6752         * src/main.c: main(): made it call gtkut_widget_init() first.
6753         * src/summaryview.c: summary_create(): removed the key binding code.
6754
6755 2001-03-19
6756
6757         * src/procmsg.[ch]: modified for the sake of readability.
6758
6759 2001-03-18
6760
6761         * src/mainwindow.c: changed "Clean trash" to "Empty trash".
6762           Added new menu items for folder manipulation.
6763           allsel_cb(): made it change the target between summary view and
6764           message view according to the input focus.
6765           Removed "Select all" from Summary submenu.
6766         * src/folderview.[ch]: added functions for creating/renaming/deleting
6767           folder.
6768         * src/procmsg.[ch]: made "marked" and "deleted" flag permanent, and
6769           removed "important" flag.
6770         * src/summaryview.c: added summary_set_row_marks() that sets style
6771           of a row according to the flags, and made some functions use it.
6772         * src/mainwindow.c: allsel_cb(): modified so that it selects
6773           summary view correctly if message view is toggled off.
6774
6775 2001-03-17
6776
6777         * src/socket.c: sock_connect_by_getaddrinfo(): fixed a resource
6778           leak bug of socket, and rewrote the routine.
6779         * src/inc.c: inc_mail(), inc_all_account_mail(): fixed a bug that
6780           displayed the wrong unread number in the folder tree if a
6781           folder was open and new messages arrived at the folder.
6782         * src/socket.c: sock_connect_by_getaddrinfo(): fixed a bug
6783           again.
6784
6785 2001-03-15
6786
6787         * src/mh.c: mh_move_msg(), mh_move_msgs_with_dest(): made it
6788           check the existence of the destination file.
6789         * src/procmsg.c: procmsg_set_flags(): made it count the last
6790           number of the message list (and fixed a bug that didn't open
6791           newly arrived message).
6792
6793 2001-03-13
6794
6795         * src/prefs_common.c: prefs_send_create(): removed EUC-JP and
6796           Shift_JIS from the outgoing codeset.
6797
6798 2001-03-12
6799
6800         * version 0.4.62
6801
6802 2001-03-11
6803
6804         * src/send.c: send_message_queue(): modified so that it finds
6805           the account from the `From' and the server name of the queued
6806           message.
6807         * src/account.[ch]: added account_find_from_smtp_server() that
6808           finds an account from the specified address and SMTP server.
6809         * src/Makefile.am
6810           src/mainwindow.c
6811           src/summaryview.[ch]
6812           src/sourcewindow.[ch]: integrated the viewing source patch from
6813           DINH V. Hoßþ(thanks!).
6814
6815 2001-03-10
6816
6817         * src/addr_compl.[ch]
6818           src/addressbook.c
6819           src/compose.c: applied the enhanced address completion patch
6820           from Alfons Hoogervorst (thanks!).
6821         * src/addr_compl.c: replaced g_assert() with g_return(_val)_if_fail().
6822         * src/folder.c: folder_init()
6823           src/folderview.c: folderview_drag_motion_cb()
6824           src/procmsg.c: procmsg_clean_trash()
6825           src/summaryview.c: summary_start_drag()
6826           src/imap.[ch]: integrated the IMAP4 move/remove function patch
6827           from Suzuki Mio (thanks!).
6828
6829 2001-03-08
6830
6831         * src/main.c: parse_cmd_opt(): made the --compose option realize
6832           mailto: URI.
6833         * src/utils.[ch]: execute_async(): supported quoted arguments
6834           correctly.
6835           strstr_with_skip_quote(), strsplit_with_quote(): quote-supported
6836           version of g_strsplit().
6837         * src/mimeview.c: mimeview_view_file()
6838           src/prefs_common.c: added single quotation mark around the file
6839           name.
6840
6841 2001-03-07
6842
6843         * configure.in
6844           src/compose.c
6845           src/prefs.c
6846           src/procmime.c
6847           src/summaryview.c
6848           src/mbox.c
6849           src/recv.c
6850           src/utils.[ch]: applied the security fix patch from Dmitry V.
6851           Levin with some modification (thanks!). Added my_tmpfile() to
6852           utils.[ch].
6853         * src/main.c: added --receive-all command-line option.
6854
6855 2001-03-06
6856
6857         * src/socket.c: sock_connect_thread(): fixed a bug that didn't
6858           compile if both multithread and IPv6 are enabled (thanks to
6859           Ishihara).
6860         * src/utils.[ch]
6861           src/compose.c: applied a patch from Jason McCarver that allows
6862           FIFO for signature file (thanks!).
6863         * src/textview.c: made some more refactoring.
6864         * src/socket.c: sock_accept(): changed socklen_t to gint.
6865
6866 2001-03-05
6867
6868         * src/main.c
6869           src/textview.c: some code cleanups.
6870
6871 2001-03-04
6872
6873         * src/compose.[ch]
6874           src/main.c
6875           src/textview.c: integrated the patch from Alfons Hoogervorst that
6876           fixes some glitches in clickable URI and enables mail addresses
6877           clickable, and enables the --compose command line option to
6878           specify address (thanks!).
6879
6880 2001-03-03
6881
6882         * src/esmtp.[ch]
6883           src/smtp.[ch]
6884           src/send.c
6885           src/prefs_account.[ch]
6886           src/Makefile.am: applied the SMTP AUTH patch from Martin Schaaf
6887           and fixed its a few bugs (thanks!).
6888         * src/textview.c: textview_key_pressed(): made it don't move focus
6889           to summary view.
6890         * src/main.c: parse_cmd_opt(): modified the help message.
6891         * src/html.[ch]: added empty_line to HTMLParser and modified
6892           the parser routines a bit.
6893
6894 2001-03-01
6895
6896         * src/html.c: added eucjp_symbol_list, and added some characters
6897           to ascii_symbol_list.
6898
6899 2001-02-19
6900
6901         * src/codeconv.[ch]: added a member `charset' and `charset_str'
6902           to CodeConverter.
6903         * src/html.[ch]: added the symbol list for ISO-8859-1 codeset.
6904           html_parser_new(): made it change the symbol hash table
6905           according to the character set of the document.
6906           html_parse_special(): made it recognize character code number.
6907
6908 2001-02-17
6909
6910         * src/textview.c: added textview_show_html() that parses HTML and
6911           display as a text.
6912           textview_show_part(): made it call textview_show_html() if
6913           the part is text/html.
6914         * src/html.[ch]: implemented HTML parser.
6915
6916 2001-02-15
6917
6918         * src/codeconv.[ch]: added CodeConverter, and its methods
6919           (conv_code_converter_new(), conv_code_converter_destroy(), and
6920            conv_convert()).
6921         * src/textview.c: removed the branches by HAVE_LIBJCONV and
6922           rewrote them using CodeConverter.
6923
6924 2001-02-12
6925
6926         * src/mbox.c: proc_mbox(): workaround for duplicated From_ line.
6927
6928 2001-02-11
6929
6930         * src/codeconv.c: some code cleanups.
6931
6932 2001-02-05
6933
6934         * src/mainwindow.c: main_window_popup(): fixed a bug that didn't
6935           popup the main window correctly.
6936         * src/codeconv.h: fixed a bug that the definition of CS_EUC_CN and
6937           CS_EUC_TW was reversed (thanks to Sakamoto).
6938
6939 2001-02-04
6940
6941         * src/gtkutils.[ch]
6942           src/main.c
6943           src/mainwindow.[ch]
6944           src/socket.[ch]: applied the patch from Hiramatu that enables
6945           prohibition of multiple execution and remote control with
6946           command line option (thanks!).
6947
6948 2001-02-03
6949
6950         * src/summaryview.c: summary_button_pressed(), summary_selected():
6951           made it toggle the view if middle button is clicked while message
6952           view is hidden.
6953           summary_drag_data_get(): fixed a memory leaking.
6954         * src/Makefile.am
6955           src/compose.c: compose_write_headers(): modified so that it uses
6956           host_alias for X-Mailer or X-Newsreader field.
6957
6958 2001-02-03
6959
6960         * version 0.4.61
6961
6962         * src/folderview.c: fixed a bug that prevented a folder from being
6963           created if there were already folders that have the same name
6964           somewhere at another place.
6965
6966 2001-02-02
6967
6968         * src/folderview.c: folderview_update_all(): fixed a bug that
6969           caused segmentation fault when a folder was selected after
6970           updating the folder tree.
6971         * src/compose.c: compose_send(): fixed a locking bug.
6972           compose_write_headers(): fixed a bug that referred to cur_account.
6973           compose_convert_header(): made it check the arguments.
6974
6975 2001-02-01
6976
6977         * src/main.c: some cleanups and added --help option.
6978
6979 2001-01-31
6980
6981         * src/send.c: re-enabled user-defined domain name setting.
6982         * src/utils.c: is_next_mbs(): changed the size of temporary
6983           multibyte array to MB_CUR_MAX.
6984           strdup_mbstowcs(): added error check to mbstowcs().
6985           strdup_wcstombs(): added error check to wcstombs().
6986         * src/addr_compl.c: get_address_from_edit(): made it check the
6987           return value of strdup_mbstowcs().
6988         * src/codeconv.c: conv_encode_header(): added error checking
6989           to strdup_mbstowcs().
6990
6991 2001-01-30
6992
6993         * src/utils.c: log_error(): changed g_error() to g_warning() so
6994           that it doesn't abort.
6995           Added iswalnum().
6996         * src/addr_compl.c: add_address(): fixed a bug that aborted the
6997           program if the name or the address is empty.
6998           get_address_from_edit(): supported multibyte characters.
6999         * configure.in: fixed a typo.
7000         * src/send.c: re-enabled user-defined SMTP port setting.
7001
7002 2001-01-30
7003
7004         * version 0.4.60
7005
7006         * configure.in: added --enable-gpgme option, and disabled GPGME
7007           by default.
7008         * made GPGME related members in MimeInfo not used if disabled.
7009         * src/rfc2015.c: some cleanups for warning.
7010         * README
7011           README.jp
7012           INSTALL
7013           INSTALL.jp: updated.
7014         * Makefile.am: modified bzip2 option.
7015
7016 2001-01-29
7017
7018         * src/procmime.[ch]: added MIME_APPLICATION_OCTET_STREAM to
7019           MIME type.
7020         * src/mimeview.c: mimeview_view_file(): made it do nothing if
7021           the MIME type is application/octet-stream.
7022         * src/folderview.c: folderview_update_all(): made it show modal
7023           dialog while updating folders.
7024         * src/folderview.c: folderview_update_all(): fixed a bug that
7025           didn't remove the dialog.
7026
7027 2001-01-28
7028
7029         * src/mimeinfo.c: merged the patch from John E.P. Hynes that
7030           launches the attached file using metamail (thanks!).
7031         * src/procmime.[ch]: added procmime_get_tmp_file_name().
7032         * src/compose.c
7033           src/addr_compl.[ch]: merged the patch from Alfons Hoogervorst
7034           that enables address completion in the address entry on the
7035           composition window (thanks!).
7036         * src/addr_compl.c: get_all_addresses(), read_address_book():
7037           modified so that it uses xml_free_tree() for freeing the address
7038           tree.
7039
7040 2001-01-27
7041
7042         * src/utils.c: remove_dir_recursive(): fixed a bug that failed to
7043           remove the current directory (thanks to Maki).
7044         * src/summary_search.c: added `Select all matched' option to the
7045           search dialog (thanks to Takahashi).
7046         * src/pixmaps/stock_mail_attach.xpm
7047           src/pixmaps/tb_address_book.xpm
7048           src/compose.c: added some toolbar icons contributed from
7049           Leandro Pereira (thanks!).
7050
7051 2001-01-25
7052
7053         * src/rfc2015.c: passphrase_cb(): *finally* fixed a bug that caused
7054           segmentation fault when the passphrase dialog was cancelled.
7055           Hided the passphrase in the debug message.
7056         * src/about.c: about_create(): fixed a bug that failed to compile
7057           when none of the features were used.
7058         * src/foldersel.c: foldersel_set_tree(): made it display all
7059           MH folders.
7060         * src/inc.c: inc_start(): fixed a bug that showed password dialog
7061           continuously if it was cancelled.
7062         * src/summaryview.c: summary_write_cache(): put an assertion after
7063           folder_item_get_cache_file() to prevent the crash.
7064         * thanks to Maki for the above four fixes.
7065         * src/utils.h: added #include <alloca.h>.
7066
7067 2001-01-24
7068
7069         * src/rfc2015.c: changed some g_message() used for error messages
7070           to g_warning().
7071
7072 2001-01-23
7073
7074         * src/procmsg.[ch]: modified READ_CACHE_DATA() macro so that
7075           it can handle a string data of which length >= BUFFSIZE.
7076         * src/rfc2015.c: rfc2015_encrypt(): changed return to `goto failure'.
7077         * src/pixmaps/stock_mail_receive_all.xpm
7078           src/pixmaps/stock_mail_reply_to_all.xpm
7079           src/Makefile.am
7080           src/mainwindow.c: main_window_toolbar_create(): added new toolbar
7081           icons contributed from David Mehrmann (thanks!).
7082         * src/inc.[ch]: overhauled the architecture so that it don't create
7083           and destroy progress dialog for each incorporation in `get all'
7084           mode.
7085
7086 2001-01-22
7087
7088         * src/mh.c: mh_scan_tree_recursive(): fixed a bug that mistook
7089           sub folders named `inbox', etc. as special folders.
7090         * src/rfc2015.c: rfc2015_encrypt(): fixed a bug that didn't quote
7091           boundary correctly.
7092
7093 2001-01-21
7094
7095         * applied the GnuPG patch from Werner Koch (thanks!).
7096         * removed Mixmaster support.
7097         * src/rfc2015.c: changed g_error() to g_warning() and modified some
7098           messages.
7099         * src/about.c: about_create(): modified compiled-in features list.
7100         * README
7101           README.jp
7102           INSTALL
7103           INSTALL.jp: updated.
7104         * src/select-keys.c: create_dialog(): modified the layout.
7105         * src/headerwindow.c
7106           src/addressbook.c
7107           src/logwindow.c: made it raise the window if the window is already
7108           open.
7109         * src/prefs_common.[ch]: added an option for immediate execution.
7110         * src/summaryview.c: made it execute immediately when messages are
7111           moved or deleted if immediate_exec option is turned on.
7112         * src/summaryview.c: summary_delete(), summary_move_selected_to():
7113           moved summary_step() before summary_execute().
7114         * src/folderview.c: folderview_update_all(): made it scan folder
7115           tree correctly.
7116         * src/compose.c: compose_write_headers(): made it don't add
7117           In-Reply-To header if to_list is empty.
7118
7119 2001-01-09  Werner Koch  <wk@gnupg.org>
7120
7121         * configure.in, acconfig.h: Check for GPGME.
7122         * ac/: New directory for local autoconf macros.
7123         * src/Makefile.am: Add support for GPGME
7124
7125         * src/main.c (idle_function_for_gpgme): New.
7126         (main): Register this function.
7127
7128         * src/about.c: Add a note about GPGME.
7129
7130         * src/rfc2015.c, rfc2015.h: New.
7131
7132         * src/mimeview.c (mimeview_show_message): Check signature.
7133         * src/procmime.c (procmime_scan_message): Ditto.
7134
7135         * src/messageview.c (messageview_show): Add decryption stuff.
7136
7137         * src/compose.c (compose_write_to_file): Encrypt the file if requested.
7138         (compose_toggle_encrypt_cb): New
7139         (compose_toggle_mixmaster_cb): New, just to be prepared for
7140         Mixmaster support.
7141         (compose_write_headers): Suppress some headers in mixmaster mode.
7142
7143         * src/prefs_common.c (prefs_common_create): Add Privacy notebook sheet.
7144         (prefs_privacy_create): New.  Also some new structures etc.
7145         * src/compose.c (compose_create): Set encrypt button to prefs default.
7146         * src/compose.h (struct _Compose): Add use_encryption, use_mixmaster.
7147
7148         * src/compose.c (compose_send): Add missing unlock before one return.
7149
7150 2001-01-18
7151
7152         * src/gtksctree.[ch]
7153           src/folderview.c
7154           src/summaryview.[ch]: applied the patch from Hiramatu that enables
7155           DnD from the summary view to the folder view and fixes some other
7156           probrems (thanks!).
7157         * src/mainwindow.c: scan_tree_func(): fixed a bug that caused
7158           segmentation fault.
7159         * src/imap.c: quoted user name in LOGIN and folder name in SELECT.
7160         * src/gtksctree.c: gtk_sctree_button_press(): fixed a bug that
7161           didn't toggle expansion of node.
7162
7163 2001-01-17
7164
7165         * src/imap.c: applied the patch from Nishimura that updates the
7166           message list more precisely and reads the message flags (thanks!).
7167         * src/textview.c: textview_show_header(): made X-Newsreader field
7168           be emphasized too.
7169         * src/summaryview.c: summary_show(): made it flush events when
7170           displaying summary.
7171
7172 2001-01-15
7173
7174         * src/summaryview.c: applied the patch from Alfons that enabled
7175           the horizontal scrollbar of summary view (thanks!).
7176
7177 2001-01-13
7178
7179         * src/compose.c: compose_cb(): fixed a bug that didn't open the
7180           composition window right after launching the program.
7181         * src/setup.c: scan_tree_func(): fixed a bug that caused
7182           segmentation fault.
7183
7184 2001-01-13
7185
7186         * version 0.4.52
7187
7188         * src/textview.c: textview_set_font(): fixed a bug that caused
7189           segmentation fault if the mode of the text widget was changed
7190           between multibyte and singlebyte while the region was selected
7191           (GTK+ bug?).
7192
7193 2001-01-11
7194
7195         * src/mainwindow.c
7196           src/summaryview.c: made it unable to delete or move messages when
7197           in a news folder.
7198         * src/prefs_common.c
7199           src/news.c: added the option for maximum news article number.
7200
7201 2001-01-10
7202
7203         * src/compose.c: compose_send(): changed the location of temporary
7204           file. Made it use the default account if all of tried account
7205           aren't mail one, and made it show alert dialog and abort when even
7206           that failed.
7207         * src/prefs_account.c: prefs_account_get_new_id(): made it preserve
7208           last id number.
7209           prefs_account_open(): made it fill in personal information
7210           according to the default account when creating a new account.
7211         * sylpheed.spec.in: added to autogenerate sylpheed.spec with the
7212           proper version number (thanks to BONAIM).
7213         * configure.in
7214           Makefile.am: added entries for sylpheed.spec.in.
7215
7216 2001-01-09
7217
7218         * src/compose.[ch]: modified so that it can change account
7219           correctly.
7220         * src/send.[ch]: modified so that it doesn't see cur_account.
7221         * src/prefs_account.c: modified so that news setting doesn't
7222           show SMTP server entry.
7223
7224 2001-01-08
7225
7226         * src/folderview.c: fixed a bug that didn't sort special folders
7227           correctly when a new folder is created or renamed.
7228
7229 2001-01-07
7230
7231         * src/compose.[ch]: enabled to select account at composing window.
7232         * src/folderview.c: made it display unread number next to folder
7233           name.
7234         * src/prefs_common.[ch]: added the option for unread number display.
7235
7236 2001-01-06
7237
7238         * src/compose.[ch]: integrated news posting patch from DINH V. Ho`
7239           and made many modifications (thanks!).
7240           compose_write_headers(): made the spaces in newsgroups removed.
7241           Supported Followup-To.
7242           compose_destroy(): got the objects removed properly.
7243         * src/news.c: merged news_post_to_group() and news_post() since
7244           they doesn't have to do multiple posting.
7245         * src/import.c: import_destsel_cb(): fixed a bug that failed to
7246           import into the selected folder.
7247         * src/prefs_account.c: modified the interfaces.
7248
7249 2001-01-05
7250
7251         * src/codeconv.[ch]
7252           prefs_common.c: changed "SHIFT-JIS" to "Shift_JIS" since the
7253           string is registerd to IANA.
7254         * src/nntp.[ch]: added nntp_post().
7255         * src/news.[ch]: added news_post() and news_post_to_group().
7256
7257 2001-01-04
7258
7259         * src/account.c: account_edit_open()
7260           src/mainwindow.c: new_account_cb(): made it unable to edit
7261           accounts if some composing windows are open.
7262
7263 2001-01-03
7264
7265         * src/folder.[ch]: added folder_set_name().
7266         * src/account.c: made a folder name of IMAP4/NNTP become the same
7267           as the name of account.
7268
7269 2001-01-02
7270
7271         * src/summaryview.c: summary_filter_func(): fixed a bug that failed
7272           to filter messages.
7273
7274 2001-01-02
7275
7276         * version 0.4.51
7277
7278         * src/mbox.c: fixed a bug that didn't incorporate spool file
7279           correctly. Modified so that it recognizes From_ line as separator
7280           of messages even if the previous line isn't empty line.
7281         * src/send.c: send_message_queue()
7282           src/procmsg.c: procmsg_send_queue(): Fixed a bug that printed
7283           warning when it tried to delete a sent message.
7284
7285 2001-01-01
7286
7287         * version 0.4.50
7288
7289         * src/folder.[ch]
7290           src/news.[ch]: modified so that it actually gets news articles.
7291         * src/utils.[ch]: added make_dir_hier() that creates directory
7292           hierarchy.
7293         * src/folder.c:
7294           folder_item_get_cache_file(), folder_item_get_mark_file():
7295           made it creates cache directory if it doesn't exist.
7296           folder_add(): made it insert the added folder into the correct
7297           position.
7298         * src/imap.[ch]: modified so that it suits the new folder
7299           architecture. Fixed a bug that caused segmentation fault
7300           if authentication failed at imap_auth().
7301         * src/folderview.c: implemented IMAP4 folder handling routines.
7302
7303 2000-12-31
7304
7305         * src/prefs_account.[ch]: added account ID and nntp_server
7306           to PrefsAccount. And added the interface for NNTP server.
7307         * src/folderview.c: modified news folder handling routines.
7308         * src/folder.[ch]: removed cache_dir from RemoteFolder, and
7309           modified folder_item_get_path().
7310
7311 2000-12-29
7312
7313         * src/folder.[ch]: added create_folder(), rename_folder(),
7314           remove_folder() to Folder class.
7315         * src/mh.[ch]: added mh_create_folder(), mh_rename_folder(), and
7316           mh_remove_folder().
7317           Implemented mh_create_tree() that creates MH directory tree.
7318           mh_rename_folder(): modified so that the paths of sub folders
7319           are set properly.
7320         * src/folderview.c: modified folderview_new_folder_cb(),
7321           folderview_rename_folder_cb(), and folderview_delete_folder_cb()
7322           so that they work properly.
7323           Added folderview_remove_mailbox_cb() and the menu entry that
7324           remove mailbox from folder tree.
7325         * src/setup.[ch]: added for initial setup.
7326         * src/alertpanel.c: modified the appearance of the dialog.
7327         * src/compose.c: fixed compose_save_to_outbox() and
7328           compose_queue() so that it sets flags correctly.
7329
7330 2000-12-28
7331
7332         * src/mainwindow.c: modified the strings of toolbar labels.
7333
7334 2000-12-27
7335
7336         * src/gtkutils.[ch]: added gtkut_ctree_node_move_if_on_the_edge().
7337         * src/summaryview.c: summary_display_msg(): made it scroll the
7338           list if the message of the edge of that is displayed.
7339
7340 2000-12-25
7341
7342         * src/folder.[ch]
7343           src/mh.[ch]: added functions for moving messages.
7344         * src/procmsg.[ch]: moved procmsg_move_messages_with_dest()
7345           to folder.c and mh.c. Added procmsg_to_folder_hash_table().
7346
7347 2000-12-24
7348
7349         * src/utils.[ch]: added get_tmp_file().
7350         * src/pop.c
7351           src/inc.c
7352           src/folder.c: fixed a bug that failed to drop messages.
7353         * src/mh.c: mh_scan_folder(): made it check new, unread, and total
7354           number of the folder.
7355
7356 2000-12-23
7357
7358         * src/folderview.c: added special folder setting routine.
7359         * src/folder.[ch]: added a method is_msg_changed().
7360           Implemented folder_find_item_from_path().
7361         * src/summaryview.c: fixed some bugs that wrongly freed FolderItem's.
7362         * autogen.sh: fixed so that the configure can take arguments.
7363
7364 2000-12-22
7365
7366         * src/main.c
7367           src/mainwindow.[ch]: added main_window_new_mailbox() that asks
7368           the path of mailbox and create the one.
7369         * src/folderview.c: made the folder tree and selected folder
7370           expanded.
7371
7372 2000-12-21
7373
7374         * src/mh.[ch]
7375           src/folder.c: implemented mh_scan_tree() that scans the folder
7376           recursively and create the tree.
7377
7378 2000-12-19
7379
7380         * src/compose.c
7381           src/defs.h
7382           src/filter.[ch]
7383           src/folder.[ch]
7384           src/foldersel.[ch]
7385           src/folderview.[ch]
7386           src/imap.[ch]
7387           src/import.c
7388           src/inc.c
7389           src/main.[ch]
7390           src/mainwindow.c
7391           src/mbox.[ch]
7392           src/mh.[ch]
7393           src/news.[ch]
7394           src/prefs_common.c
7395           src/procmsg.[ch]
7396           src/summaryview.[ch]
7397           src/xml.[ch]
7398           src/Makefile.am: merged the development tree into the cvs tree.
7399           Some functions are not unimplemented yet.
7400
7401 2000-12-18
7402
7403         * version 0.4.9
7404
7405 2000-12-11
7406
7407         * src/xml.[ch]: supported omitted tag (<tag />).
7408         * src/procmsg.c: procmsg_msg_exist(): fixed a memory leak bug.
7409         * src/imap.c: imap_parse_atom(): fixed a bug that caused
7410           segmentation fault if the subject was empty (thanks to Tsutsui).
7411         * src/folder.[ch]: updated.
7412
7413 2000-12-10
7414
7415         * src/xml.[ch]: added xml_parse_file() that parses the whole XML
7416           file specified and returns the tree.
7417
7418 2000-12-09
7419
7420         * po/pt_BR.po: fixed some typos that caused segmentation fault.
7421
7422 2000-12-07
7423
7424         * version 0.4.8
7425
7426         * src/session.h: added.
7427         * src/folder.[ch]: updated.
7428         * src/compose.c: compose_write_to_file()
7429           src/codeconv.c: conv_get_outgoing_charset_str(): fixed a bug
7430           that put a garbage to charset if the outgoing character set was
7431           specified and non-ascii characters were used in subject.
7432
7433 2000-12-04
7434
7435         * src/statusbar.c: statusbar_puts(): fixed a bug that locked the
7436           progress if the status bar was hidden.
7437
7438 2000-12-03
7439
7440         * src/folder.[ch]: added for the more object-oriented folder
7441           management.
7442
7443 2000-12-02
7444
7445         * version 0.4.7
7446
7447         * src/mainwindow.c
7448           src/prefs_common.[ch]: made the state of status bar get preserved.
7449         * src/compose.c: compose_insert_sig(): modified so that it doesn't
7450           put a separator if a signature file doesn't exist.
7451         * src/prefs_account.[ch]
7452           src/inc.c: added the option that toggles whether to receive
7453           messages when getting from all accounts.
7454         * README
7455           README.jp: updated the description and added some usages.
7456
7457 2000-12-01
7458
7459         * src/Makefile.am
7460           src/gtkshruler.[ch]
7461           src/compose.[ch]: applied the patches from Alfons Hoogervorst
7462           that makes the ruler of composition window graphical (thanks!).
7463
7464 2000-11-27
7465
7466         * src/codeconv.c
7467           src/mainwindow.c
7468           src/prefs_common.c: replaced CS_WINDOWS_1251 with CS_CP1251.
7469
7470 2000-11-27
7471
7472         * version 0.4.6
7473
7474         * src/compose.c: turned the color of quoted messages black again.
7475
7476 2000-11-26
7477
7478         * src/about.c: added a clickable URI to the Sylpheed home page,
7479           and a list of compiled-in features.
7480         * src/compose.c: made the color of quoted messages blue.
7481         * src/summaryview.c: added `Show all header' to the context menu.
7482         * src/prefs_common.c: removed the threading option from the dialog.
7483         * src/compose.c: fixed a bug that didn't parse the quotation format
7484           correctly.
7485
7486 2000-11-25
7487
7488         * src/compose.c: compose_set_ext_editor_sensitive(): modified so
7489           that it toggles linewrap menu item and tool button.
7490         * src/prefs_common.c: modified the default of the signature
7491           separator.
7492         * src/compose.[ch]: added ruler to the compose window.
7493         * src/prefs_common.[ch]: added a member for the state of ruler
7494           display.
7495
7496 2000-11-24
7497
7498         * src/headerview.[ch]: added the destroy function.
7499         * src/messageview.c: messageview_destroy(): fixed a memory leak
7500           bug that didn't freed the HeaderView object.
7501         * src/prefs.c: prefs_write_open(): fixed a memory leak bug.
7502         * src/xml.c: xml_close_file(): fixed a memory leak bug (thanks
7503           to Alfons Hoogervorst for the above three memory leak bug fixes).
7504
7505 2000-11-23
7506
7507         * version 0.4.5
7508
7509         * README
7510           README.jp
7511           INSTALL
7512           INSTALL.jp: modified some descriptions.
7513
7514 2000-11-22
7515
7516         * src/compose.c: implemented line-wrapping functions.
7517         * src/prefs_common.[ch]: added the settings for line-wrapping.
7518         * src/codeconv.[ch]: added Windows-1251 to the codesets.
7519           conv_jistoeuc(): fixed a bug that caused segmentation fault
7520           when some half-width kana characters appeared.
7521         * src/summaryview.c: summary_select_all(): made it show message
7522           on the status bar if the number of messages is large.
7523
7524 2000-11-18
7525
7526         * src/compose.c: compose_reply(), compose_quote_parse_fmt():
7527           modified so that it parses the quotation mark too.
7528           Added %I that means the initial of sender to the format.
7529         * src/codeconv.[ch]: added GB2312 and Big5 to the codesets.
7530           Fixed a bug that set the wrong outgoing codeset.
7531         * src/mainwindow.c
7532           src/prefs_common.c: modified the menu item of Chinese codeset.
7533
7534 2000-11-17
7535
7536         * src/codeconv.[ch]
7537           src/prefs_common.[ch]: modified so that outgoing charset is
7538           saved as a string, not a number.
7539
7540 2000-11-16
7541
7542         * src/textview.c: textview_set_font(): changed the scheme of
7543           selecting between font and fontset. And changed the default
7544           font of ISO-8859-1.
7545         * src/headerview.c: headerview_show_xface(): made it ignore
7546           invalid X-Face.
7547         * src/codeconv.c: conv_codeset_strdup(), conv_get_code_conv_func():
7548           modified so that it consider the source codeset as ISO-2022-JP if
7549           it is NULL and the current locale is Japanese.
7550
7551 2000-11-14
7552
7553         * src/textview.c: textview_destroy(): fixed a bug that caused
7554           segmentation fault if textview->msgfont is NULL (thanks to
7555           Hiramatu).
7556         * src/main.c
7557           src/defs.h: applied the patch from Yanase that enables to
7558           save the shortcuts of the menus (thanks!).
7559
7560 2000-11-11
7561
7562         * src/mainwindow.[ch]: added main_window_set_menu_sensitive() that
7563           toggles the sensitivity of menu items.
7564         * src/summaryview.c: renamed summary_set_popup_sensitive() to
7565           summary_set_menu_sensitive(), and made it set the sensitivity of
7566           the main menu.
7567
7568 2000-11-09
7569
7570         * src/textview.c: textview_init(): fixed a bug that didn't disable
7571           the theme engine of GtkText (thanks to Hiramatu).
7572         * src/compose.c: compose_quote_parse_fmt(): added %n and %N that
7573           means the full name of sender and the first name.
7574         * manual/ja/*.??ml: updated to the latest version.
7575
7576 2000-11-07
7577
7578         * version 0.4.4
7579
7580         * src/defs.h: separated the definitions from main.h and applied the
7581           patch from TOGAWA that sets DEFAULT_SPOOL_PATH and MAXPATHLEN
7582           from the system headers (thanks!).
7583         * src/codeconv.c: conv_get_current_charset(): fixes for lt_LT and
7584           UTF-8 locale.
7585         * src/textview.c: textview_set_font(): modified so that it sets
7586           the correct font when the locale is multi-byte.
7587           textview_destroy(): added proper codes for destruction.
7588           textview_show_header(): fixed the coloration of X-Mailer.
7589
7590 2000-11-06
7591
7592         * src/textview.[ch]: made TextView have single-byte and multi-byte
7593           GtkText, and switch between them according to the given codeset.
7594         * src/compose.c: compose_create(): modified the font setting
7595           routine.
7596
7597 2000-11-02
7598
7599         * src/textview.[ch]: moved the message font variable into TextView.
7600           textview_set_font(): modified so that it uses gdk_font_load()
7601           if the given codeset is US-ASCII or ISO-8859-*.
7602
7603 2000-11-01
7604
7605         * src/codeconv.c
7606           src/procmime.c
7607           src/prefs_common.c
7608           src/textview.c
7609           src/compose.c: workaround for the 8bit code issue (used
7610           gdk_font_load() instead of gdk_fontset_load() when the locale is
7611           C, or not set).
7612
7613 2000-11-01
7614
7615         * version 0.4.3
7616
7617         * src/compose.[ch]: added `Draft' tool button.
7618         * src/imap.c: imap_parse_envelope(): fixed a parsing bug.
7619         * README, README.jp: added the explanation of the locale setting.
7620
7621 2000-10-31
7622
7623         * src/compose.c: made it overwrite the previous draft message when
7624           reedited the draft and saved it again.
7625         * src/procmsg.[ch]: added procmsg_msg_exist() that examine whether
7626           the message really exists.
7627         * src/folderview.[ch]: added folderview_scan_folder_a() and
7628           folderview_scan_folder_foreach_a() that scan the specified
7629           folders for each folderviews.
7630         * src/mainwindow.[ch]: removed main_window_scan_folder() and
7631           main_window_scan_folder_all().
7632           Added `Reedit' to the menu.
7633         * src/import.[ch]: removed MainWindow from the argument of
7634           import_mbox().
7635         * src/summaryview.c: removed the unnecessary items from the popup
7636           menu. Changed summary_reedit_cb() to summary_reedit(), and made
7637           it public.
7638
7639 2000-10-30
7640
7641         * src/compose.h: added a member msginfo to Compose.
7642         * src/procmsg.[ch]: added procmsg_msginfo_copy() that duplicates
7643           the MsgInfo object.
7644
7645 2000-10-25
7646
7647         * src/summaryview.c: made the the popup menu change the sensitivity
7648           according to the context. Fixed a bug that showed the `clean trash'
7649           dialog repeatedly if `D' key was pressed when the focus was on the
7650           summary view.
7651         * src/pixmaps/unread.xpm: changed the color of unread mark to blue.
7652
7653 2000-10-22
7654
7655         * src/main.c: fixed g_thread initialization.
7656
7657 2000-10-21
7658
7659         * src/codeconv.c: added pt_BR to locale_table.
7660         * src/prefs_common.c: prefs_send_create(): added `US-ASCII',
7661           `ISO-8859-1', and Japanese codeset to the option menu of outgoing
7662           codeset when not using libjconv.
7663         * src/compose.c: fixed the bug on saving draft again.
7664
7665 2000-10-19
7666
7667         * src/compose.c: compose_write_headers(): fixed a bug that failed
7668           to write headers if To: was empty when saving draft.
7669
7670 2000-10-18
7671
7672         * src/procmime.[ch]
7673           src/compose.c
7674           src/headerwindow.[ch]
7675           src/summaryview.c
7676           src/messageview.[ch]
7677           src/mimeview.c
7678           src/textview.c
7679           src/procmsg.[ch]
7680           src/procheader.[ch]: modified so that they can handle queue folder
7681           properly.
7682         * src/compose.[ch]
7683           src/summaryview.c: implemented draft-reediting function.
7684         * src/mainwindow.c
7685           src/summaryview.c
7686           src/mimeview.c: replaced *(GtkWidget **) with the macro
7687           GTK_WIDGET_PTR().
7688
7689 2000-10-17
7690
7691         * src/procmsg.[ch]: procmsg_msginfo_free(): fixed a memory leak bug.
7692           Added MSG_QUEUED and MSG_DRAFT to MsgFlags, and made it set them
7693           if the folder is QUEUE_DIR or DRAFT_DIR.
7694
7695 2000-10-14
7696
7697         * version 0.4.2
7698
7699         * src/headerview.c
7700           src/messageview.c: modified the border of the headerview.
7701         * src/gtkutils.h: added the macro GTK_WIDGET_PTR() that casts
7702           an Sylpheed object to GtkWidget.
7703         * src/utils.c: remove_return(), remove_space(): fixed a bug that
7704           possibly caused segmentation fault.
7705         * src/compose.[ch]
7706           src/mainwindow.c
7707           src/summaryview.c: implemented `forward as an attachment'.
7708         * src/utils.[ch]: open_uri(): brought on URI opening function from
7709           textview.c and manual.c.
7710
7711 2000-10-13
7712
7713         * src/mainwindow.c
7714           src/summaryview.c
7715           src/compose.[ch]
7716           src/prefs_common.[ch]: removed `Reply with quote', and added
7717           `Reply to all', and added the option that decides whether to
7718           quote message on replying.
7719
7720 2000-10-12
7721
7722         * src/folderview.c: modified so that it uses gtkut_wait_for_draw()
7723           instead of GTK_EVENTS_FLUSH() for statusbar redraw.
7724         * src/codeconv.[ch]
7725           src/mainwindow.c
7726           src/prefs_common.c: added Baltic (ISO-8859-4,13) to the code sets.
7727         * src/compose.c: compose_send(): modified so that it shows error
7728           dialog when failed to send a message.
7729
7730 2000-10-11
7731
7732         * src/account.c: account_edit_close(): fixed a bug that didn't set
7733           current account when creating an account for the first time.
7734         * configure.in: added es to ALL_LINGUAS.
7735
7736 2000-10-10
7737
7738         * src/codeconv.c: conv_codeset_strdup(): made it use libkcc if
7739           possible.
7740           conv_get_code_conv_func(): modified so that it doesn't convert
7741           codeset if it is unknown.
7742         * src/folderview.c: folderview_update_msg_num(): modified style
7743           changing routine.
7744
7745 2000-10-09
7746
7747         * src/codeconv.c: conv_codeset_strdup(): modified so that it sets
7748           codesets automatically if the arguments are NULL.
7749         * src/textview.c: textview_write_line(): made it output warning
7750           message on the text view if conversion failed.
7751
7752 2000-10-06
7753
7754         * README, README.jp: modified the author of the manual.
7755
7756 2000-10-05
7757
7758         * src/headerview.[ch]
7759           src/messageview.[ch]: modified so that it uses GtkLabel widget
7760           instead of GtkText.
7761         * src/codeconv.c: conv_unmime_header(): modified so that it deletes
7762           unreadable codes if the current locale is EUC-JP and libjconv is
7763           used.
7764
7765 2000-10-04
7766
7767         * src/procmime.[ch]
7768           src/messageview.c
7769           src/mimeview.c
7770           src/textview.c: modified so that it parses MIME message more
7771           preferably.
7772         * src/imap.c: imap_parse_address(): fixed a bug.
7773
7774 2000-10-03
7775
7776         * src/procmsg.[ch]: added procmsg_get_message_file_path().
7777         * src/recv.c: recv_bytes_write(): added CR+LF -> LF conversion
7778           routine.
7779         * src/imap.[ch]: changed the name of the member `group' in
7780           IMAPSession to `mbox'.
7781           imap_gen_send(): modified so that it doesn't output the password
7782           to the log.
7783           Modified session destroying routine.
7784         * src/folderview.c: folderview_write_cache(): made it preserve
7785           the IMAP folder list.
7786         * src/procmime.c: procmime_scan_multipart_message(): fixed a bug
7787           that showed boundary at the end of an attached RFC822 part.
7788         * src/prefs_common.c: changed the default of toolbar style to
7789           both icon and text.
7790
7791 2000-10-02
7792
7793         * src/imap.c: imap_get_uncached_messages(): modified so that it
7794           doesn't get the cached envelopes.
7795           imap_session_get_message_info(): made it read only the cache
7796           if the session is not established.
7797         * src/procmsg.c: procmsg_set_flags(): supported IMAP folder.
7798         * src/news.c: news_get_article_info(): made it read only the cache
7799           if the session is not established.
7800
7801 2000-10-01
7802
7803         * src/textview.c: textview_write_line(): fixed a memory leak bug.
7804         * src/folderview.[ch]: made it create IMAP4 folders from the
7805           account information.
7806         * src/imap.[ch]: imap_session_get(): modified so that it creates
7807           IMAP4 session from the account information.
7808
7809 2000-09-30
7810
7811         * src/imap.[ch]: added for IMAP4 support.
7812         * src/summaryview.[ch]
7813           src/procmsg.c
7814           src/recv.[ch]: modified for IMAP4 support.
7815         * src/folderview.c: more IMAP4 implementation.
7816         * src/procmsg.[ch]: added procmsg_get_message_file() that retrieves
7817           the specified message and return the file name.
7818         * src/gtkutils.c: gtkut_widget_wait_for_draw(): fixed a bug that
7819           locked up the process if the given widget was invisible.
7820
7821 2000-09-28
7822
7823         * src/folderview.[ch]: added IMAP4-related code.
7824
7825 2000-09-28
7826
7827         * version 0.4.1
7828
7829         * src/main.h: added IMAP_CACHE_DIR.
7830         * src/utils.[ch]: added get_imap_cache_dir().
7831         * src/procmsg.h: added M_IMAP to MsgType, and MSG_IMAP to MsgFlags.
7832           Added macro MSG_IS_IMAP().
7833         * src/codeconv.c: added `#include <locale.h>' for setlocale().
7834         * sylpheed.spec: fixed %files section.
7835
7836 2000-09-27
7837
7838         * version 0.4.0
7839
7840         * src/codeconv.c: conv_get_current_charset(): made it compare
7841           string with strncasecmp().
7842         * src/compose.c: comopse_reply_parse_header(): workaround for
7843           the malformed References: header generated by OE5 :(
7844
7845 2000-09-26
7846
7847         * src/prefs_common.c
7848           src/prefs_account.c: modified the layout of the widgets.
7849
7850 2000-09-26
7851
7852         * version 0.3.99
7853
7854         * src/*.[ch]: added copyright notice to the top of the source files.
7855         * src/compose.c: compose_write_attach(): modified filename encode
7856           routine.
7857
7858 2000-09-25
7859
7860         * src/mainwindow.c: fixed the menu entry of manual.
7861         * src/compose.c
7862           src/codeconv.[ch]: moved compose_encode_header() into codeconv.c,
7863           and applied the libjconv patch.
7864         * src/utils.c: strdup_mbstowcs(), strdup_wcstombs(): used g_realloc()
7865           to reduce the alloc'd memory to the optimal size.
7866         * src/prefs_common.[ch]: added outgoing codeset option menu.
7867         * src/compose.c: compose_send(): added exclusive lock to prevent
7868           multiple-sending.
7869         * configure.in: made '--enable-ipv6=no' the default.
7870         * src/compose.c: compose_write_attach(): made it encode the name
7871           of the attached file.
7872         * src/procmsg.c: procmsg_get_last_message_number(): fixed a bug that
7873           didn't check the type of file.
7874           procmsg_move_messages_with_dest(): fixed a bug that failed to
7875           move message if a directory that had the same name existed.
7876         * src/utils.c: is_ascii_str(): modified so that '\t', ' ', '\r', '\n'
7877           are included as ASCII characters.
7878
7879 2000-09-24
7880
7881         * src/compose.c
7882           src/procmime.[ch]: modified so that it actually works when using
7883           libjconv :)
7884         * src/codeconv.[ch]: added conv_codeset_strdup() that converts
7885           the codeset of string according to the codeset specified in
7886           arguments.
7887         * src/utils.[ch]: added is_ascii_str() that determines whether the
7888           string is 7bit-ASCII or not.
7889         * src/procmime.[ch]
7890           src/codeconv.[ch]: moved the character set related functions
7891           into codeconv.c.
7892         * merged the patch and the manual written by BONAIM (thanks!).
7893
7894 2000-09-23
7895
7896         * configure.in
7897           src/compose.c
7898           src/gtkutils.c
7899           src/mainwindow.c
7900           src/procmime.[ch]
7901           src/textview.c
7902           src/unmime.[ch]: applied the patch from Higuchi that utilizes
7903           libjconv and enables to handle many locales, including UTF-8
7904           (Unicode) (thanks!).
7905         * src/account.c: modified so that the account isn't changed when
7906           another account is selected on account edit dialog.
7907
7908 2000-09-20
7909
7910         * src/prefs_common.[ch]
7911           src/textview.c: added an option that specifies whether to display
7912           short headers on message view.
7913         * src/codeconv.[ch]: added function conv_unmime_header() that
7914           decodes MIME-encoded header and converts the character set.
7915           And added conv_unreadable_latin(), and modified conv_latintodisp().
7916         * src/messageview.[ch]: made the window get closed when escape key
7917           is pressed.
7918
7919 2000-09-17
7920
7921         * src/imageview.c: fixed a bug that caused segmentation fault if
7922           message view was in new window.
7923         * src/prefs_common.c: added `xemacs %s' to the external editor
7924           command line list.
7925
7926 2000-09-16
7927
7928         * version 0.3.29
7929
7930         * src/summaryview.c: enabled to open a new message window with
7931           double-clicking.
7932         * src/prefs_common.[ch]
7933           src/messageview.c: made it preserve the window size of message
7934           window.
7935         * src/prefs_account.c: added `None (local)' to the option menu of
7936           protocol.
7937
7938 2000-09-15
7939
7940         * Makefile.am: added autogen.sh to EXTRA_DIST.
7941
7942 2000-09-09
7943
7944         * src/prefs_common.c: applied the patch from Paul Rolland that
7945           enables font selection dialog (thanks!).
7946         * src/compose.[ch]
7947           src/utils.[ch]: moved tzoffset() and compose_get_date() of
7948           compose.[ch] into utils.[ch].
7949         * src/main.[ch]: renamed the name of filter file to `filterrc'.
7950
7951 2000-09-06
7952
7953         * src/compose.[ch]
7954           src/utils.[ch]: modified address parsing routine so that it
7955           parses quotes correctly.
7956         * src/textview.c: textview_show_part(): modified so that it shows
7957           the simplified headers if the part is text/plain.
7958
7959 2000-09-03
7960
7961         * src/messageview.[ch]
7962           src/summaryview.[ch]
7963           src/mainwindow.c: enabled to open a message in new window.
7964         * src/messageview.[ch]
7965           src/mimeview.[ch]
7966           src/textview.[ch]
7967           src/imageview.[ch]: added destroy function, and modified the
7968           key handling routines.
7969
7970 2000-09-02
7971
7972         * src/socket.c: sock_connect_by_getaddrinfo(): fixed a bug that
7973           caused segmentation fault (thanks to KUROSAWA).
7974         * src/alertpanel.c: modified so that the focused button is
7975           selectable.
7976         * src/account.c
7977           src/compose.c
7978           src/folderview.c: modified so that the order of the buttons of
7979           alert panel will be `Yes', `No'.
7980
7981 2000-09-01
7982
7983         * src/utils.[ch]: added execute_async() and execute_command_line()
7984           that execute command line using execvp().
7985         * src/textview.c
7986           src/mimeview.c
7987           src/procmsg.c: replaced system() with execute_command_line()
7988           for security.
7989         * src/procmsg.c: turn back to system().
7990         * src/utils.c: modified execute_command_line().
7991
7992 2000-08-31
7993
7994         * src/mainwindow.c: main_window_get_size(): modified so that it
7995           doesn't update the height of SummaryView if MessageView is
7996           toggled off.
7997         * src/compose.[ch]: applied the patch from NAKAGAWA that fixes some
7998           probrems of external editor handling (thanks!).
7999         * src/uuencode.[ch]
8000           src/procmime.[ch]: applied the patch from Hiramatu that make it
8001           supports Content-Transfer-Encoding: x-uuencode (thanks!).
8002
8003 2000-08-30
8004
8005         * src/compose.[ch]
8006           src/prefs_common.[ch]: implemented the external editor faculty.
8007         * src/compose.c: compose_attach_property(): fixed some bugs on
8008           changing the property of attached file.
8009         * src/compose.c: fixed some bugs of external editor functions.
8010
8011 2000-08-29
8012
8013         * version 0.3.28
8014
8015         * src/mainwindow.c
8016           src/prefs_common.[ch]
8017           src/summaryview.c: applied the patch from Paul Rolland that
8018           restores the size of widgets when restarting (thanks!).
8019         * src/folderview.c
8020           src/prefs_common.[ch]
8021           src/summaryview.c: applied the patch from Paul Rolland that saves
8022           the width of CTree columns (thanks!).
8023
8024 2000-08-27
8025
8026         * src/headerview.c: modified the height of HeaderView.
8027         * src/textview.c: textview_show_part(): made it process the message
8028           as normal text if it is single-part RFC822 message.
8029         * src/folderview.c
8030           src/summaryview.c: some changes around the key handling.
8031         * src/prefs_common.[ch]: substituted the word `assort' with `filter'.
8032
8033 2000-08-26
8034
8035         * src/codeconv.[ch]: added conv_latintodisp() for ISO-8859-1 support.
8036         * src/procheader.c: procheader_get_one_field(): fixed a bug that
8037           caused segmentation fault if the first line of the file is space
8038           or tab (thanks to Hiramatu).
8039         * src/mimeview.c: mimeview_drag_data_get(): modified so that the
8040           filename doesn't include G_DIR_SEPARATOR (thanks to Hiramatu).
8041         * src/prefs_account.c
8042           src/prefs_common.c: modified the dialog size.
8043         * src/prefs.c: made the dialog window growable.
8044
8045 2000-08-25
8046
8047         * version 0.3.27
8048
8049         * configure.in: removed unnecessary AC_CHECK_FUNC(gettext) that
8050           caused the failure of the detection of libintl.
8051         * src/filter.[ch]
8052           src/prefs_common.c: implemented `not contain', and modified for
8053           future enhancement.
8054         * src/imageview.c: changed alertpanel_error() to g_warning() so that
8055           it doesn't grab mouse events.
8056         * src/compose.[ch]: added compose_list that holds the list of
8057           Compose objects, and added the function compose_get_compose_list().
8058         * src/main.c
8059           src/mainwindow.c
8060           src/summaryview.c: made it confirm if composing message exists.
8061
8062 2000-08-23
8063
8064         * src/compose.c: compose_reply_set_entry(): fixed a bug that caused
8065           segmentation fault when trying to reply the message in the queue
8066           folder (thanks to Kotobuki).
8067           compose_attach_property(): modified the property dialog routine
8068           so that it can handle input error.
8069         * src/mimeview.c: applied the patch from Hiramatu that enables
8070           the drag 'n drop from MimeView (thanks!).
8071         * src/headerview.[ch]
8072           src/procheader.c
8073           src/procmsg.h: applied the patches for X-Face support from
8074           HIROSHIMA (thanks!).
8075
8076 2000-08-22
8077
8078         * src/compose.c: compose_attach_property(): modified so that the
8079           property dialog can actually change the property of attached file.
8080
8081 2000-08-21
8082
8083         * configure.in
8084           src/Makefile.am: updated for gdk_imlib.
8085         * added AUTHORS and NEWS.
8086         * configure.in
8087           acconfig.h
8088           src/Makefile.am: modified so that configure auto-detects gdk-pixbuf
8089           and gdk_imlib library. And fixed a bug on IPv6 detecting.
8090         * src/imageview.c: supported gdk-pixbuf.
8091         * README
8092           README.jp
8093           INSTALL
8094           INSTALL.jp: added the mention about built-in image view.
8095         * configure.in: modified so that configure can disable gdk-pixbuf
8096           or/and gdk_imlib library.
8097
8098 2000-08-20
8099
8100         * src/imageview.[ch]
8101           src/main.c
8102           src/messageview.[ch]
8103           src/mimeview.[ch]: applied the patches from HIROSHIMA that enables
8104           to display image (thanks!).
8105
8106 2000-08-19
8107
8108         * version 0.3.26
8109
8110         * src/summaryview.c: summary_assort_func(): modified to avoid
8111           `not receive' setting.
8112
8113 2000-08-18
8114
8115         * src/filesel.c: applied the patch from HIROSHIMA that makes it
8116           remember previous directory when opening the dialog (thanks!).
8117         * src/summaryview.[ch]: added a function summary_redisplay_msg().
8118         * src/mainwindow.c: set_charset_cb(): made it redisplay the message
8119           that is currently shown when the character set is changed.
8120         * src/inc.c
8121           src/pop.c
8122           src/prefs_common.c
8123           src/filter.h: applied the patch from Tanaka that enables not to
8124           receive specified messages according to the sorting rule (thanks!).
8125
8126 2000-08-15
8127
8128         * src/procmsg.[ch]: added MSG_MIME to the type MsgFlags. And modified
8129           so that it handles MSG_MIME flag, and it scans uncached messages
8130           when cache reading failed even if it is specified not to scan
8131           new messages.
8132         * src/procheader.c: procheader_parse(): added the determination of
8133           multipart MIME message.
8134         * src/main.h: increased CACHE_VERSION.
8135         * src/summaryview.[ch]: added the `MIME' column that shows whether
8136           a message is multipart or not.
8137         * src/prefs_common.[ch]: added the `MIME' column to the setting of
8138           displaying item.
8139         * added src/pixmaps/clip.xpm.
8140         * src/summaryview.c
8141           src/procmsg.[ch]: modified so that it prompts the print command
8142           before printing.
8143
8144 2000-08-14
8145
8146         * src/folderview.c: folderview_create()
8147           src/summaryview.c: summary_create():
8148           src/addressbook.c: addressbook_create(): set the expander style of
8149           CTree to GTK_CTREE_EXPANDER_SQUARE.
8150         * src/compose.c: modified the interface of property dialog.
8151
8152 2000-08-13
8153
8154         * src/compose.c: added property dialog for attached file.
8155
8156 2000-08-11
8157
8158         * src/procmsg.[ch]: added a function procmsg_print_message() that
8159           prints the given message.
8160         * src/summaryview.c: summary_print(): modified so that it prints
8161           all selected messages.
8162         * src/folderview.c: folderview_select_node(): fixed a bug that
8163           didn't focus on folder tree if inbox was empty when incorporating.
8164
8165 2000-08-10
8166
8167         * version 0.3.25
8168
8169         * src/prefs_commmon.[ch]: added `Other' tab and an option for
8170           printing. And moved external browser option to there.
8171         * src/mainwindow.c
8172           src/summayview.[ch]: added print menu and implemented print
8173           functions.
8174
8175 2000-08-09
8176
8177         * src/prefs_account.c: made the default value of smtp_server to
8178           NULL.
8179         * src/folderview.c: folderview_update_msg_num(): modified so that
8180           it doesn't emphasize trash folder even if it has new or unread
8181           messages.
8182
8183 2000-08-08
8184
8185         * src/filesel.c: filesel_select_file(): (perhaps) fixed a bug that
8186           caused segmentation fault when file selection dialog was closed
8187           and other dialog was open immediately.
8188
8189 2000-08-05
8190
8191         * src/compose.c: compose_encode_header(): fixed a bug that caused
8192           infinite loop if wctomb() failed.
8193
8194 2000-08-04
8195
8196         * version 0.3.24
8197
8198         * src/mimeview.c: enabled to open an attached file with double click
8199           and popup menu. And cleaned up the code.
8200         * src/procmime.[ch]: added a function procmime_get_part() that
8201           saves the part of multipart message.
8202
8203 2000-08-03
8204
8205         * src/main.[ch]
8206           src/mimeview.c
8207           src/prefs_common.[ch]
8208           src/procmime.[ch]
8209           src/utils.[ch]: applied a patch that enables to launch attached
8210           image, audio, and HTML file (thanks to Hashimoto).
8211         * src/filter.c: filter_match_condition(): fixed a bug that caused
8212           segmentation fault if the body of specified filter is NULL. And
8213           made the filter considered as being matched on that case.
8214
8215 2000-07-30
8216
8217         * src/summaryview.c:
8218           summary_save_as(): fixed a bug that unabled to save news articles.
8219           summary_display_msg(): added exclusive lock to prevent it from
8220           reading another news article while it is already processing one.
8221         * src/gtkutils.[ch]: added gtkut_widget_wait_for_draw() that waits
8222           the draw signal to be emitted.
8223         * src/mainwindow.c:
8224           main_window_cursor_wait()
8225           main_window_cursor_normal(): added gdk_flush() to change cursor
8226           immediately.
8227         * Makefile.am
8228           libkcc/Makefile.am: added EXTRA_DIST for `make dist'. And added
8229           a target `release' to Makefile.am.
8230
8231 2000-07-28
8232
8233         * src/socket.c: supported IPv6.
8234         * configure.in
8235           acconfig.h: added checking for IPv6.
8236         * prefs_common.c: changed the default of toolbar_style to icon only.
8237
8238 2000-07-27
8239
8240         * initial cvs import.
8241         * updated README and README.jp.
8242
8243 2000-07-24
8244
8245         * version 0.3.23
8246
8247         * src/procmime.[ch]: modified the structure of MimeInfo so that it
8248           can be handled as a node of tree.
8249           Added procmime_mimeinfo_free_all() that frees all of the MimeInfo
8250           recursively.
8251           Added procmime_get_text_part() that scans a message and gets a text
8252           part for quoting.
8253         * src/mimeview.c: divided mimeview_scan_multipart_message() into
8254           procmime_scan_multipart_message() and mimeview_set_multipart_tree().
8255         * src/compose.c: compose_quote(), compose_forward():
8256           made it quote the text part of multipart message properly.
8257           Made it preserve the size of Compose window.
8258         * src/prefs_common.[ch]: added compose_width and compose_height to
8259           the members.
8260         * src/textview.c: textview_show_part(): some code cleanups.
8261         * src/codeconv.[ch]: added a function conv_get_code_conv_func().
8262
8263 2000-07-20
8264
8265         * version 0.3.22
8266
8267         * src/codeconv.[ch]: fixed a bug that showed garbage characters if
8268           the return code of the message was CR+LF. And added
8269           conv_sjistoeuc().
8270         * src/summaryview.c: summary_attract_by_subject(): made it move
8271           the current view point to the selected row when executed.
8272         * src/textview.c: textview_show_part(): modified the character set
8273           determination routine.
8274         * src/folderview.c: folderview_update_msg_num(): fixed a bug that
8275           caused segmentation fault if boldfont was NULL.
8276         * src/compose.c: compose_create(): made it sets itself as the target
8277           of addressbook on window creation.
8278
8279 2000-07-19
8280
8281         * src/compose.c: compose_send(): fixed a bug that didn't save
8282           queued message to outbox when failed to send the message (thanks
8283           to T. Yamamoto).
8284
8285 2000-07-15
8286
8287         * src/inc.[ch]: modified so that it changes error message dialog
8288           depending on the results.
8289
8290 2000-07-14
8291
8292         * src/mainwindow.c: main_window_create(): set usize of account
8293           button on the status bar to 1 so that it doesn't get expanded
8294           more than necessary.
8295         * src/account.[ch]: account_foreach(): made it abort the iteration
8296           if the function returns nonzero.
8297         * src/inc.[ch]
8298           src/pop.c: modified so that it shows error message dialog if the
8299           message processing is failed.
8300
8301 2000-07-04
8302
8303         * version 0.3.21
8304
8305         * src/mainwindow.c: made it popup account selection menu when
8306           account tool button or account status bar is pressed.
8307         * src/folderview.c
8308           src/prefs.c: suppressed the ENOENT perror messages.
8309         * src/pop.c: made it fall back on LAST command if UIDL failed.
8310
8311 2000-07-01
8312
8313         * src/procheader.c: procheader_parse(): fixed a bug that didn't
8314           parse References: header correctly (thanks to YAMAGUCHI).
8315
8316 2000-06-29
8317
8318         * version 0.3.20
8319
8320         * src/compose.c: compose_reply_set_entry(): fixed a bug that didn't
8321           cc'd correctly when replying.
8322         * src/mainwindow.c
8323           src/summaryview.c: sorted out the main menu and the popup menu.
8324
8325 2000-06-26
8326
8327         * version 0.3.19
8328
8329         * src/prefs_account.[ch]
8330           src/compose.c: made it be able to set Cc:, Bcc:, and Reply-To:
8331           automatically at composing (thanks to NAKAGAWA).
8332
8333 2000-06-25
8334
8335         * src/prefs_common.[ch]
8336           src/mainwindow.c
8337           src/main.c: made it selectable whether to ask before cleaning
8338           trash at the exit.
8339         * src/prefs_common.c: cleaned up the code and the interface a bit.
8340         * src/summaryview.c: modified the unthread functions for speeding
8341           up.
8342
8343 2000-06-24
8344
8345         * src/prefs_common.[ch]
8346           src/summaryview.c: made it display recipient on the `From' column
8347           if the address of the sender is the same as the current account
8348           (thanks to NAKAGAWA).
8349         * src/utils.[ch]: added a function extract_address() that extracts
8350           the address from `From:' header string.
8351         * src/mainwindow.c: allsel_cb(): fixed a bug that caused segmentation
8352           fault if `Edit/Select all' was selected when the message view was
8353           hidden (thanks to Tomita).
8354
8355 2000-06-21
8356
8357         * src/summaryview.c: modified execution routine so that it only
8358           unthreads nodes that are needed to be unthreaded.
8359
8360 2000-06-19
8361
8362         * src/news.c: news_session_get(): implemented the reconnection on
8363           being disconnected.
8364         * src/nntp.[ch]: added nntp_mode().
8365
8366 2000-06-18
8367
8368         * src/mbox.c: fixed a bug that didn't close mbox FILE pointer.
8369           And support assortment on processing mbox.
8370         * src/inc.c: inc_drop_message(): modified so that it uses hash table
8371           to store the last message number of folders.
8372         * src/summaryview.c
8373           src/addressbook.c: modified the behavior of CTree at right-click.
8374         * src/pop.c: pop3_getrange_uidl_recv(): fixed a potential buffer
8375           overflow bug (thanks to Nishiyama).
8376
8377 2000-06-17
8378
8379         * version 0.3.18
8380
8381         * src/pop.[ch]
8382           src/inc.[ch]: implemented management of read message on POP server
8383           by UIDL.
8384         * src/utils.[ch]: removed (s)list_remove_all() because it can be
8385           replaced with g_(s)list_free().
8386         * src/summaryview.c: modified the arrangement of menu a bit.
8387         * src/summaryview.c: summary_status_show(): made it doesn't display
8388           server name but newsgroup.
8389         * src/prefs_common.c
8390           src/prefs_account.c: adjusted the calculation routine of dialog
8391           size.
8392
8393 2000-06-15
8394
8395         * version 0.3.17
8396
8397         * src/compose.c: compose_reply_set_entry(): modified so that it
8398           cc's to the all addresses on To: and Cc: of the replied message.
8399           And swapped the position of Subject: and To: entry.
8400
8401 2000-06-14
8402
8403         * src/procheader.c: modified so that it can handle headers that
8404           aren't separated by space.
8405         * src/socket.c: sock_connect(): added a wait after connection to
8406           prevent lockup (thanks to NINOMIYA).
8407
8408 2000-06-13
8409
8410         * src/inc.c:
8411           inc_mail()
8412           inc_all_account_mail(): fixed a bug that caused segmentation
8413           fault if no account exist.
8414         * src/mainwindow.[ch]: made receive button unclickable when
8415           no account exist.
8416         * src/compose.c: compose_queue(): fixed a bug that didn't mark
8417           queued message properly.
8418         * src/utils.[ch]: separated code conversion functions into
8419           src/codeconv.[ch].
8420
8421 2000-06-13
8422
8423         * version 0.3.16
8424
8425         * src/mimeview.c: mimeview_save_as()
8426           src/summaryview.c: summary_save_as(): made it ask whether to
8427           overwrite the existing file.
8428
8429 2000-06-12
8430
8431         * src/utils.c
8432           src/recv.c
8433           src/prefs.c
8434           src/prefs_common.c
8435           src/prefs_account.c
8436           src/addressbook.c
8437           src/compose.c
8438           src/mbox.c: fixed a bug that failed to check write error when
8439           disk was full and caused the loss of the file.
8440
8441 2000-06-11
8442
8443         * src/mainwindow.c: main_window_clean_trash(): made it move focus
8444           to folder view when finished.
8445         * src/utils.[ch]: added code conversion functions for display.
8446           And added strncpy2() that doesn't do zero fill and does
8447           null-termination, unlike original strncpy().
8448         * src/textview.c: modified so that it changes the code conversion
8449           function according to charset. And supported charset=SHIFT_JIS.
8450         * src/mainwindow.c
8451           src/prefs_common.h
8452           src/textview.c: made it possible to force character set of
8453           a message.
8454         * src/folderview.c: folderview_select_next_unread():
8455           made it search unread folder from begin if it isn't found.
8456
8457 2000-06-11
8458
8459         * version 0.3.15
8460
8461         * src/mainwindow.c: fixed a probrem again that main window was
8462           stretched to the width of the toolbar.
8463         * src/mbox.c
8464           src/utils.c: is_header_line(): modified so that it recognizes
8465           a header which doesn't have a space after colon (thanks to Hotta).
8466         * src/filter.c: added `#include <strings.h>'.
8467         * src/smtp.c: replaced snprintf() with g_snprintf().
8468         * src/Makefile.am: added `-I$(top_srcdir)/intl' to INCLUDES for
8469           included gettext.
8470         * included sylpheed.spec.
8471
8472 2000-06-10
8473
8474         * src/prefs_common.[ch]: enabled to set the pixels of line space
8475           and decide whether to leave space on head of lines.
8476         * src/summaryview.c: modified so that it clears message view
8477           when displayed message is removed from the summary view.
8478         * src/mimeview.c: fixed a bug that caused infinite loop if
8479           terminal boundary of multipart message was not found (thanks to
8480           Nishika).
8481         * src/folderview.c: folderview_scan_mailbox(): made it ignore
8482           dot directory.
8483         * src/main.c: made it show warning dialog and exit if the file with
8484           the same name already exists when creating directory.
8485
8486 2000-06-09
8487
8488         * src/textview.c
8489           src/prefs_common.[ch]: made it possible to leave space between
8490           and on head of lines.
8491
8492 2000-06-07
8493
8494         * src/compose.c
8495           src/procmime.[ch]: made it scan /etc/mime.types and determine
8496           the MIME type of the attached file.
8497         * src/summaryview.c: made it clear message view if the summary
8498           is unselected on the execution, and made it move focus to
8499           folder view if the folder becomes empty.
8500         * src/mainwindow.c: fixed a probrem that main window was stretched
8501           to the width of the toolbar.
8502         * src/inc.c: fixed a bug that caused multiple gtk_main() event loop
8503           if `Check new mail on startup' was set.
8504
8505 2000-06-06
8506
8507         * src/compose.c: fixed a probrem that had been unable to insert
8508           a file to the current cursor position.
8509
8510 2000-06-06
8511
8512         * version 0.3.14
8513
8514         * src/compose.[ch]: added `attach' button to the toolbar. And
8515           replaced the icon of `insert' to the new one.
8516
8517 2000-06-05
8518
8519         * src/mainwindow.[ch]: added `Execute' to the toolbar. And added
8520           a function main_window_set_toolbar_sensitive() that sets the
8521           sensitivity of the button of the toolbar.
8522         * src/compose.c: fixed a bug that output wrong header if
8523           a return code was included in the string of the text entry.
8524
8525 2000-06-04
8526
8527         * src/mainwindow.[ch]: added `Delete' to the toolbar and the menu.
8528           And added the same items in popup menu to the main menu.
8529         * src/utils.[ch]: added functions for DnD support.
8530         * src/compose.c: implemented file attachment and insertion with DnD
8531           (thanks to Hiramatu).
8532
8533 2000-06-04
8534
8535         * version 0.3.13
8536
8537         * src/summaryview.c: fixed a bug that passed null pointer to
8538           is_dir_exist().
8539
8540 2000-06-03
8541
8542         * src/alertpanel.[ch]: added functions alertpanel_message(),
8543           alertpanel_notice(), and alertpanel_error(), and cleaned up
8544           the code.
8545         * src/folderview.c
8546           src/compose.c
8547           src/addressbook.c
8548           src/summaryview.c
8549           src/summary_search.c
8550           src/prefs_account.c
8551           src/foldersel.c: made them use alertpanel_error(),
8552           alertpanel_warning() or alertpanel_notice() for error message
8553           dialog.
8554         * src/summaryview.[ch]: enable sorting in reversed order.
8555         * src/inc.c: made it show error message dialog when failed to
8556           connect or authorize.
8557         * src/utils.h: added a macro FILE_OP_ERROR() and replaced many
8558           perror() with it.
8559
8560 2000-06-03
8561
8562         * version 0.3.12
8563
8564         * src/compose.c: fixed a bug that didn't save a message to outbox
8565           when queued.
8566         * src/send.c: send_message_queue(): fixed a bug that included
8567           headers for queueing in the parsed data.
8568         * src/mainwindow.c: send_queue_cb(): made it pop statusbar message
8569           and update queue folder when finished.
8570
8571 2000-06-02
8572
8573         * version 0.3.11
8574
8575         * src/filter.c
8576           src/inc.c
8577           src/compose.c: suppressed the warning messages.
8578         * src/mainwindow.[ch]: added next unread message button and menu
8579           items.
8580         * src/summaryview.[ch]: added a function summary_select_next_unread()
8581           that selects and opens next unread message.
8582
8583 2000-06-01
8584
8585         * src/prefs_common.[ch]: added a setting to decide whether to open
8586           unread message on entering a folder.
8587         * src/summaryview.c: made it open the first unread message only if
8588           the preference is set.
8589         * src/compose.c: fixed a bug that freed the string obtained from
8590           GtkEntry.
8591
8592 2000-05-31
8593
8594         * src/compose.c: added `Send later' to the menu and the toolbar
8595           which queues the message to send it later.
8596
8597 2000-05-30
8598
8599         * src/mainwindow.c: added an interface to resend the queued message.
8600         * src/compose.c: made it show alert dialog when a message will be
8601           queued.
8602
8603 2000-05-29
8604
8605         * src/procmsg.[ch]: added function procmsg_send_queue() that calls
8606           send_message_queue() for each queued messages.
8607
8608 2000-05-28
8609
8610         * src/inc.c: inc_drop_message(): modified so that it drops a message
8611           to the default inbox folder if destination folder doesn't exist.
8612         * src/compose.[ch]: added imput compatible queueing header to the
8613           queued message.
8614         * src/send.[ch]: added function send_message_queue() that send
8615           queued message.
8616
8617 2000-05-27
8618
8619         * configure.in
8620           acconfig.h: made it enabled to decide wheter to use multithread
8621           or not on configure.
8622         * src/summaryview.c: fixed a bug that made thread when executed
8623           despite of the setting (thanks to Hiroshima).
8624         * src/socket.[ch]: changed the return value of public
8625           sock_connect_*() function to the pointer to SockInfo object.
8626         * src/procmime.c: procmime_scan_mime_header():
8627           fixed a bug that returned NULL if the scanned part had no header
8628           (thanks to shigeri).
8629         * src/procmime.[ch]:
8630           added function procmime_scan_content_disposition() that parses
8631           Content-Disposition header field.
8632         * src/mimeview.c: made it uses filename value in Content-Disposition
8633           header.
8634         * src/pop.c
8635         * src/inc.c: modified so that password is prompted if the password
8636           on preferences is empty and previous POP3 session has failed on
8637           authorization.
8638
8639 2000-05-23
8640
8641         * src/socket.[ch]: added non-blocking IO mode socket and
8642           multithreaded connection support.
8643         * src/inc.c: supported multithread connection.
8644
8645 2000-05-22
8646
8647         * src/folderview.c: made the focus of SummaryView grabbed when
8648           a folder is selected only if the messages exist.
8649
8650 2000-05-20
8651
8652         * version 0.3.10
8653
8654         * po/ja.po: fixed a bug that head `/' of a menu label was missing
8655           and caused segmentation fault when opened Compose window.
8656
8657 2000-05-20
8658
8659         * version 0.3.9
8660
8661         * src/utils.c: get_domain_name(): modified so that it uses
8662           gethostname().
8663         * src/mimeview.c: added key binds for `Save as' and
8664           `Display as text'.
8665
8666 2000-05-19
8667
8668         * src/recv.c: fixed a bug that failed to return error value
8669           when fputs() failed and caused the loss of received mails when
8670           disk space was not left (thanks to Tajiri).
8671         * src/compose.c: supported Reply-To.
8672         * src/mimeview.c: improved key operation interface.
8673
8674 2000-05-18
8675
8676         * src/mimeview.[ch]
8677           src/procmime.[ch]
8678           src/textview.[ch]: supported nested multipart message and
8679           clean up the codes.
8680           Supported encapsulated RFC822 message.
8681
8682 2000-05-16
8683
8684         * src/compose.[ch]: made it free the alloc'd memory for attach
8685           information when the compose window is destroyed.
8686           Placed the attachment list and the text widget onto the paned
8687           widget.
8688           Enabled cut/copy/paste/select all on all of the editable widgets.
8689           Implemented removal of attached file and popup menu on attachment
8690           list.
8691         * src/prefs_common.[ch]: added signature separator setting.
8692         * src/alertpanel.[ch]: added a function alertpanel_warning().
8693
8694 2000-05-14
8695
8696         * src/prefs_common.[ch]
8697           src/textview.c: made open URI command customizable.
8698         * src/compose.[ch]: implemented multipart MIME message composition
8699           (attachment of file).
8700         * src/textview.c
8701           src/compose.c: fixed a bug that didn't turn off the GTK+ theme
8702           engine again.
8703
8704 2000-05-13
8705
8706         * version 0.3.8
8707
8708         * src/summaryview.c: added key binds for composing message
8709           (w, a, A, f). Also added other key binds (y, D, Q).
8710         * src/compose.c: made Cc entry take over the Cc of the replied
8711           message.
8712         * src/pixmaps/new.xpm
8713           src/pixmaps/unread.xpm: replaced pixmap image.
8714         * src/procheader.c: procheader_date_get_localtime():
8715           changed the single figures of year from four to two.
8716
8717 2000-05-12
8718
8719         * src/inc.c: made it ask password if it is not specified on account
8720           preferences.
8721         * src/prefs_account.h: added member tmp_pass to struct PrefsAccount
8722           that preserves the temporary password.
8723         * src/inputdialog.[ch]: added function input_dialog_with_invisible()
8724           that prompts input with the string hidden.
8725
8726 2000-05-11
8727
8728         * src/compose.c: fixed a bug that didn't turn off the GTK+ theme
8729           engine if message font wasn't specified.
8730
8731 2000-05-10
8732
8733         * version 0.3.7a
8734
8735         * src/summaryview.c: fixed a bug that stderr was forgotten on
8736           fprintf().
8737
8738 2000-05-10
8739
8740         * version 0.3.7
8741
8742         * src/pop.c: fixed a problem that if some POP3 commands returned
8743           error, the previous operations were all cancelled.
8744         * src/compose.c
8745           src/textview.c: made workaround to the slow down of GtkText widget
8746           when using Pixmap theme or its derivatives.
8747
8748 2000-05-08
8749
8750         * src/inc.c: fixed a bug that caused X IO error when exec'd
8751           nonexistent program.
8752
8753 2000-05-07
8754
8755         * src/folderview.[ch]: added the member `mtime' to the struct
8756           FolderInfo.
8757         * src/summaryview.c: made the mtime of the folder checked that is
8758           going to open.
8759         * src/procmsg.c: added filesystem unchecking mode.
8760
8761 2000-05-05
8762
8763         * src/textview.[ch]: implemented clickable URI (thanks to BONAIM).
8764           And made `X-Mailer:' header emphasized if it contains `Sylpheed'.
8765
8766 2000-05-04
8767
8768         * src/summaryview.c: summary_write_cache(): permission fix of
8769           cache file.
8770
8771 2000-05-04
8772
8773         * version 0.3.6a
8774
8775         * src/headerview.c: added headerview_clear() method.
8776         * src/messageview.c: fixed a bug that didn't clear HeaderView
8777           on messageview_clear().
8778
8779 2000-05-04
8780
8781         * version 0.3.6
8782
8783         * src/messageview.c
8784           src/textview.c: added *_clear() method.
8785         * src/summaryview.c: made it clear MessageView when new folder
8786           is open.
8787
8788 2000-05-03
8789
8790         * src/inc.c: fixed a bug that went to the inbox that was specified
8791           by each account when incorporating from all accounts.
8792         * src/compose.c: made it confirm whether to discard the message or
8793           not when the window will be closed.
8794
8795 2000-05-03
8796
8797         * version 0.3.5
8798
8799         * src/pop.[ch]
8800           src/inc.[ch]: re-supported APOP authentication.
8801         * src/prefs_account.c: fixed a bug that had't saved protocol type.
8802         * src/socket.h
8803           src/statusbar.h: attached G_GNUC_PRINTF() to printf() like
8804           functions.
8805         * src/progressdialog.[ch]: changed the name of class from Progress
8806           to ProgressDialog.
8807
8808 2000-05-02
8809
8810         * src/summaryview.c: fixed a bug that caused segmentation fault
8811           a news folder was selected without using ja message catalog.
8812         * src/utils.h: attached G_GNUC_PRINTF() to printf() like functions.
8813         * src/Makefile.am: added `-DG_LOG_DOMAIN=\"Sylpheed\"' to
8814           INCLUDES.
8815
8816 2000-05-01
8817
8818         * src/automaton.[ch]
8819           src/inc.[ch]
8820           src/pop.[ch]: re-implemented POP3 fetching routines using
8821           finite-state automaton model (thanks to Hiramatu).
8822         * src/inc.c: fixed a bug that caused unwilled quitting of program
8823           when connection to mail server failed. And fixed a memory leak bug.
8824         * src/summaryview.c: made the focus move to FolderView when left
8825           cursor key is pressed.
8826
8827 2000-04-30
8828
8829         * src/textview.c: textview_write_line(): modified quotation
8830           discerning routine a bit.
8831
8832 2000-04-29
8833
8834         * version 0.3.4
8835
8836         * src/procmime.[ch]: moved MIME decorder from src/textview.c to
8837           src/procmime.c.
8838         * src/mimeview.[ch]: implemented saving of multipart message. And
8839           supported MIME encoded file name.
8840         * src/summaryview.c: implemented `Save as'.
8841
8842 2000-04-28
8843
8844         * src/prefs_common.[ch]: implemented an interface for setting the
8845           display item of SummaryView.
8846         * src/addressbook.c
8847           src/account.c: made the column titles of those don't take key
8848           focus.
8849
8850 2000-04-26
8851
8852         * src/textview.c: implemented BASE64 decoding and display.
8853
8854 2000-04-25
8855
8856         * src/prefs_common.[ch]: added members which decide whether
8857           each item of SummaryView is displayed or not.
8858         * src/headerwindow.c
8859           src/logwindow.c: made those windows closed when escape key is
8860           pressed.
8861         * src/headerview.c: disused ScrolledWindow.
8862         * src/base64.c: from64tobits(): modified so that it recognize '\n'
8863           as the last of line as well as '\r'.
8864
8865 2000-04-24
8866
8867         * src/headerview.c: disabled word wrap and line wrap of the text
8868           widget.
8869
8870 2000-04-24
8871
8872         * version 0.3.3
8873
8874         * src/prefs_common.c: prefs_assort_create(): added some headers
8875           to the default headers for assortment.
8876
8877 2000-04-23
8878
8879         * src/procmsg.c: fixed a bug that caused segmentation fault if
8880           the permission of a message was denied on parsing the header
8881           (thanks to wakai@UEC univ.).
8882         * src/mimeview.c: made it pass key press event to SummaryView.
8883
8884 2000-04-21
8885
8886         * src/main.h
8887           src/alertpanel.c: modified font specifications so that they match
8888           to better fonts.
8889         * src/utils.[ch]: added wide-character functions for FreeBSD support.
8890           Added the existence check of <wchar.h>.
8891         * acconfig.h
8892           configure.in: added wint_t and libxpg4 check for FreeBSD support.
8893         * src/unmime.c: modified so that it checks the existence of
8894           <alloca.h>.
8895           Above three are a contribution from Sasaki. Thanks!
8896
8897 2000-04-18
8898
8899         * src/main.h: decreased default height of window.
8900
8901 2000-04-17
8902
8903         * src/procmime.c: fixed a bug that eliminated the parenthesis in
8904           attribute value that was double-quoted.
8905
8906 2000-04-15
8907
8908         * version 0.3.2
8909
8910         * src/mimeview: implemented multipart message parser and display.
8911         * src/procmime.c: procmime_scan_content_type():
8912           supported multiple elements.
8913         * src/textview.c: supported multipart message and clean up the code.
8914
8915 2000-04-14
8916
8917         * src/summaryview.c: added size column and sorting by size.
8918         * src/mainwindow.c: added `Sort by size' to sort menu.
8919         * src/procmime.c: fixed a bug that caused buffer overrun and
8920           segmentation fault.
8921         * src/procmime.c: generalized Content-Type parsing.
8922
8923 2000-04-13
8924
8925         * version 0.3.1
8926
8927         * src/textview.c: supported MIME headers and
8928           Content-Transfer-Encoding: quoted-printable.
8929
8930 2000-04-12
8931
8932         * src/messageview.[ch]
8933           src/textview.[ch]: separated MessageView into two classes.
8934         * src/procmime.[ch]: added for MIME message handling.
8935
8936 2000-04-11
8937
8938         * src/mimeview.[ch]: added for MIME message handling.
8939         * configure.in: added wctype.h and wchar.h existence check.
8940
8941 2000-04-10
8942
8943         * src/procmsg.[ch]
8944           src/procheader.[ch]: some code cleanups.
8945         * src/messageview.[ch]: integrated HeaderView.
8946
8947 2000-04-09
8948
8949         * version 0.3.0
8950
8951 2000-04-08
8952
8953         * src/addressbook.c: Made the tree sorted when folder/group is
8954           added or edited.
8955         * src/xml.c: xml_compare_tag(): fixed a bug that caused segmentation
8956           fault if the current tag was empty.
8957         * src/mainwindow.c: made the state of MainWindow saved.
8958
8959 2000-04-08
8960
8961         * version 0.3.0pre1
8962
8963         * src/addressbook.c: fully implemented address group editing.
8964           Fixed a bug that wrongly confirmed deletion of address when
8965           escape key was pressed on alert dialog.
8966
8967 2000-04-07
8968
8969         * src/addressbook.c: added menu bar. And enabled hierarchical
8970           folder.
8971         * src/prefs_account.c: modified so that it allows not to specify
8972           pop server.
8973         * src/inc.c: inc_account_mail(): modified so that if receiving
8974           server isn't specified, it does nothing.
8975
8976 2000-04-05
8977
8978         * version 0.2.9
8979
8980         * src/addressbook.c: almost fully implemented addressbook functions.
8981
8982 2000-04-04
8983
8984         * src/compose.c: fixed a bug that caused segmentation fault when
8985           `File->Insert file' was selected more than twice.
8986
8987 2000-04-03
8988
8989         * version 0.2.9pre4
8990
8991         * src/addressbook.[ch]: implemented creation of new folder and group,
8992           and deletion of folder and group. And fully implemented
8993           addressbook_delete_object() which deletes the specified object
8994           recursively.
8995
8996 2000-04-02
8997
8998         * src/addressbook.c: implemented registration of address and multiple
8999           appending to Compose address entry.
9000         * src/menu.[ch]: added a function menu_set_insensitive_all() that
9001           turn all menu items insensitive.
9002         * src/folderview.c: some code cleanup.
9003
9004 2000-04-01
9005
9006         * src/account.c
9007           src/prefs_common.c: fixed a bug on getting the number of CList
9008           rows.
9009
9010 2000-03-30
9011
9012         * version 0.2.9pre3
9013
9014         * src/folderview.c: fixed a bug that caused warnings when tree was
9015           expanded/collapsed on the first operation.
9016
9017 2000-03-29
9018
9019         * src/addressbook.c: addressbook_list_selected(): made it be able
9020           to handle multiple address.
9021         * src/compose.c: modified so that when Bcc: is toggled, corresponding
9022           AddressBook also toggle it.
9023         * src/mainwindow.c:
9024           main_window_create(): moved gtk_widget_set_uposition() before
9025           gtk_widget_show() so as not to cause window flickering.
9026           main_window_get_position(): replaced gdk_window_get_position()
9027           with gdk_window_get_root_origin() to acquire correct window
9028           position (Thanks to shigeri for these modifications).
9029
9030 2000-03-27
9031
9032         * src/filesel.c: made it selects home directory on the first time
9033           it is called.
9034
9035 2000-03-26
9036
9037         * src/utils.c: conv_mb_alnum(): modified so that it uses character
9038           conversion table.
9039         * src/foldersel.c: made the folder tree take focus when the dialog
9040           is shown.
9041
9042 2000-03-26
9043
9044         * version 0.2.9pre2
9045
9046         * src/addressbook.c: implemented addressbook_export_to_file() and
9047           related functions.
9048
9049 2000-03-25
9050
9051         * src/xml.[ch]
9052           src/addressbook.c: fixed the variable name for attribute.
9053         * src/prefs_common.[ch]: added a member `conv_mb_alnum'.
9054         * src/utils.[ch]: added conv_mb_alnum() that converts multi-byte
9055           alphabet and numeric into single-byte one.
9056         * src/messageview.c: messageview_show(): made it pass conv_mb_alnum()
9057           when conv_mb_alnum flag is on.
9058
9059 2000-03-25
9060
9061         * version 0.2.9pre1
9062
9063         * src/compose.c: modified so that when Addressbook is open by a
9064           Compose and it is closed, target of Addressbook is reset.
9065         * src/addressbook.c: made it work with Compose.
9066
9067 2000-03-24
9068
9069         * configure.in: AM_PATH_{GLIB, GTK}: raised the required version of
9070           GTK+ and GLIB to 1.2.6.
9071         * src/xml.[ch]: more implementation of XML parser.
9072         * src/addressbook.c: implemented addressbook parsing and displaying
9073           routine.
9074
9075 2000-03-21
9076
9077         * src/folderview.c: folderview_scan_folder(): modified so that if
9078           a folder's message number is zero, set new, unread and total number
9079           to zero.
9080
9081 2000-03-20
9082
9083         * src/xml.[ch]: added for XML handling used by addressbook.
9084         * src/folderview.c: modified so that Trash folder is skipped
9085           when an unread folder is selected automatically by space key.
9086
9087 2000-03-18
9088
9089         * src/summaryview.c: fixed a bug that cursor was turned into watch
9090           forever when a newsgroup was selected.
9091
9092 2000-03-18
9093
9094         * version 0.2.8
9095
9096 2000-03-17
9097
9098         * src/mainwindow.[ch]: implemented counting on setting cursor
9099           type. And modified the menu of `thread view' and `unthread view'.
9100         * src/summaryview.c: enabled thread-toggling on opening folder.
9101         * src/prefs_common.[ch]: added a member `enable_thread' to determine
9102           whether summary view builds thread or not when a folder is open.
9103
9104 2000-03-15
9105
9106         * src/summaryview.c: modified popup sensitivity function a bit.
9107
9108 2000-03-13
9109
9110         * version 0.2.7
9111
9112         * src/addressbook.[ch]: more implementation of the interface of
9113           addressbook.
9114         * src/compose.c: connected to addressbook object.
9115         * src/folderview.[ch]: folderview_compare_path():
9116           modified so that absolute path is correctly compared.
9117           And added folderview_select_node().
9118           And modified folderview_scan_folder() so that it update the summary
9119           when asked.
9120         * src/import.c: made it update folder tree when imported mbox.
9121         * src/summaryview.c: modified according to the changes of
9122           folderview.c. And modified so that it display alert dialog if
9123           source folder is identical to destination.
9124           added summary_set_popup_sensitive() that set the sensitivity of
9125           popup menu according to the context. And made all of the items of
9126           popup menu insensitive when summary is cleared.
9127         * src/procmsg.c: procmsg_move_messages_with_dest():
9128           modified so that if source folder is identical to destination,
9129           abort its process.
9130         * src/summary_search.c
9131           src/manage_window.c: modified so as not to print warning to console
9132           when alert dialog appeared twice.
9133         * src/filesel.c: made file selection dialog transient.
9134
9135 2000-03-11
9136
9137         * src/manage_window.[ch]: added callback function
9138           manage_window_focus_out().
9139         * src/account.c
9140           src/inputdialog.c
9141           src/mainwindow.c
9142           src/prefs_account.c
9143           src/prefs_common.c
9144           src/summary_search.c: added focus_out_event signal handler.
9145         * src/addressbook.[ch]: added preliminary addressbook code.
9146
9147 2000-03-06
9148
9149         * src/utils.h: added a macro Xalloca() that does alloca() and
9150           handles the exception.
9151         * src/import.c: made the import dialog transient window and enabled
9152           cancelling by escape key.
9153
9154 2000-03-04
9155
9156         * version 0.2.6
9157
9158         * src/compose.c: fixed a bug that caused memory leak when compose
9159           window was closed.
9160
9161 2000-03-03
9162
9163         * src/nntp.h: increased NNTP message buffer size for XOVER strings
9164           which is too long.
9165
9166 2000-02-28
9167
9168         * src/summaryview.c: binded step-forward and step-backward to each
9169           Control-n and Control-p.
9170         * src/filter.c: filter_read_str(): fixed a memory leak bug and
9171           replaced g_malloc() for allocating the buffer with alloca().
9172         * src/procheader.c: procheader_get_fromname(),
9173                             procheader_date_get_localtime()
9174           src/utils.c: conv_euctojis()
9175           src/compose.c: compose_quote_parse_fmt()
9176           src/prefs.c: prefs_set_data_from_text()
9177                        prefs_set_text(): replaced g_malloc() with alloca().
9178
9179 2000-02-26
9180
9181         * version 0.2.5
9182
9183         * src/logwindow.c: improved log_window_append() so that it shows
9184           warning, error and normal message with different colors.
9185         * src/utils.[ch]: added functions log_message(), log_warning(), and
9186           log_error() that show normal message, warning, and error for each.
9187           And modified many warning messages to use these.
9188         * src/messageview.c: messageview_init(): made it set colors of
9189           quotation and URI to black when failed to allocate colors.
9190         * src/news.c: news_parse_xover(): replaced g_malloc() for allocating
9191           the buffer with alloca().
9192
9193 2000-02-25
9194
9195         * src/folderview.c: fixed a bug that didn't put previously selected
9196           folder name in text entry. In addition to that, made some
9197           modifications.
9198
9199 2000-02-24
9200
9201         * version 0.2.4
9202
9203         * src/logwindow.[ch]: added log window that displays protocol log.
9204         * src/about.c: adjusted the size of dialog.
9205         * src/folderview.c: made it select a folder when double-clicked.
9206
9207 2000-02-23
9208
9209         * src/prefs_common.[ch]: added an item `translate_header' that
9210           decides whether header name like `From:' or `Subject:' is
9211           translated or not.
9212         * src/compose.c: made it show alert dialog when receiptor isn't
9213           entered.
9214         * src/inc.c: some code cleanups.
9215
9216 2000-02-22
9217
9218         * version 0.2.3
9219
9220         * src/compose.c: made header entries move those focus to next
9221           entry or text widget when activated. And sorted out the menu items.
9222         * src/mainwindow.[ch]
9223           src/prefs_common.[ch]
9224           src/main.c: made it save the sizes of widgets and the position of
9225           window when quitting.
9226         * src/prefs_common.c: set a14, k14 fontset as default message font.
9227         * src/about.c: changed the appearance of about dialog using text
9228           widget and so on.
9229         * src/recv.c: modified recv_write() so that it converts an escaped
9230           From_ line.
9231
9232 2000-02-20
9233
9234         * version 0.2.2
9235
9236         * src/compose.[ch]: supported Bcc.
9237
9238 2000-02-19
9239
9240         * version 0.2.1
9241
9242         * src/utils.[ch]: added function to_number() that examines string
9243           and if that is a number string, return its value.
9244         * src/procmsg.c: fixed a bug that caused malfunction when non-digit
9245           character was included in file name.
9246
9247 2000-02-18
9248
9249         * version 0.2.0
9250
9251         * src/folderview.c: fixed a bug that caused segmentation fault
9252           when opened folder node was deleted (thanks to Hiramatu).
9253           And implemented folderview_rm_server_cb() which removes news server.
9254         * src/mbox.c: modified a warning message.
9255
9256 2000-02-13
9257
9258         * version 0.2.0alpha-pre8
9259
9260         * src/mainwindow.c: inc_all_account_mail_cb(): made it select inbox
9261           folder to prevent the probrem when current folder is updated.
9262         * src/summaryview.c: summary_execute(): made it write to summary
9263           cache when executed.
9264
9265 2000-02-12
9266
9267         * version 0.2.0alpha-pre7
9268
9269         * src/utils.[ch]: added path_cmp() that compares two paths ignoring
9270           trailing directory separator.
9271         * src/folderview.[ch]
9272           src/summaryview.[ch]: modified so that folder tree is updated
9273           when messages are moved or deleted.
9274         * src/inc.c: some code cleanup.
9275
9276 2000-02-11
9277
9278         * version 0.2.0alpha-pre6
9279
9280         * src/utils.[ch]: added get_domain_name() that return domain
9281           name as a static string.
9282         * src/compose.c: compose_generate_msgid(): modified so that even
9283           if current address doesn't contain '@', it generates a decent
9284           message ID.
9285         * src/send.c: some code cleanup.
9286
9287 2000-02-10
9288
9289         * src/folderview.c: modified the behavior of folder tree when
9290           the folder is right-clicked.
9291         * src/compose.c: compose_encode_header(): added irresponsible
9292           buffer overrun check.
9293
9294 2000-02-09
9295
9296         * version 0.2.0alpha-pre5
9297
9298         * updated gettext and libtool.
9299         * configure.in: modified localedir definition so that message
9300           catalogs are installed into correct directories.
9301         * src/folderview.c
9302           src/mainwindow.c: modified them so that a folder can be reopen
9303           even if it is currently open.
9304         * src/prefs_common.[ch]
9305           src/messageview.c: added an option that toggle the coloration of
9306           message.
9307
9308 2000-02-08
9309
9310         * version 0.2.0alpha-pre4
9311
9312         * src/mainwindow.c
9313           src/messageview.c: fixed a bug that broke memory on allocating
9314           colors.
9315
9316 2000-02-07
9317
9318         * src/folderview.c: some bug fixes on selecting folder.
9319
9320 2000-02-07
9321
9322         * version 0.2.0alpha-pre3
9323
9324         * src/folderview.c
9325         * src/summaryview.[ch]: some code cleanups.
9326         * src/messageview.c: fixed a color allocating bug (maybe).
9327
9328 2000-02-06
9329
9330         * version 0.2.0alpha-pre2
9331
9332         * src/folderview.[ch]: made folder view not open selected folder
9333           unless return or space key is pressed, or clicked by mouse
9334           button 1 or 2.
9335         * src/inc.c: some code cleanups.
9336         * TODO.jp: added some items.
9337
9338 2000-02-05
9339
9340         * version 0.2.0alpha-pre1
9341
9342         * src/summaryview.[ch]: fixed a bug that broke summary thread
9343           when deleted duplicated messages (thanks to BONAIM).
9344           And some code cleanup.
9345         * src/procmsg.[ch]: renamed procmsg_move_messages() to
9346           procmsg_move_messages_with_dest(), and replaced former with
9347           new function which doesn't specify destination.
9348         * src/prefs_common.c
9349           src/gtkutils.c: some memory leak fixes of linked lists.
9350         * src/utils.[ch]: added list_remove_all() to remove all elements
9351           of doubly-linked list.
9352         * src/inc.[ch]: added inc_all_account_mail() that incorporates
9353           new messages of all accounts.
9354         * src/account.[ch]: added account_foreach() to process each accounts.
9355         * added TODO.jp
9356
9357 2000-02-04
9358
9359         * version 0.1.23alpha
9360
9361         * src/inc.c: made the folder tree update the message number
9362           when incorporated new messages.
9363         * src/folderview.[ch]: added a function folderview_scan_folder()
9364           to scan one folder on the view, which is specified by folder name.
9365
9366 2000-02-02
9367
9368         * version 0.1.22alpha
9369
9370         * src/prefs_account.[ch]: added the setting of assorting on
9371           receiving.
9372         * src/inc.c: supported assorting on receiving.
9373         * src/procmsg.c: cleaned up the code.
9374         * src/news.c: fixed a bug that locked up when failed to get xover.
9375         * src/compose.c: made a message unmark that is put into specific
9376           folders.
9377
9378 2000-02-01
9379
9380         * version 0.1.21alpha
9381
9382         * src/folderview.c
9383           src/summaryview.c: implemented the function 'go to next folder
9384           when no unread message found.'
9385         * src/summaryview.c: made connection state displayed on the
9386           status bar when connecting to a news server.
9387         * src/compose.c: changed X-Mailer: header field string a bit.
9388         * src/prefs_common.c: implemented residual functions of assortment.
9389
9390 2000-01-31
9391
9392         * version 0.1.20alpha
9393
9394         * src/prefs_common.c: implemented reading/writing/register/deletion
9395           of assortment setting.
9396         * src/mainwindow.c: slightly modified the appearance of statusbar.
9397         * src/account.c: account_delete(): fixed a bug that didn't assigned
9398           the pointer to GList when an account was deleted.
9399
9400 2000-01-29
9401
9402         * src/procmsg.c: procmsg_get_mark_sum(): fixed a bug that failed
9403           to read mark file (thanks to BONAIM).
9404         * src/prefs_common.c: added the interface of assortment setting.
9405
9406 2000-01-28
9407
9408         * src/summaryview.c: fixed a bug that didn't redraw marking properly
9409           when displaying an unread message with left-click (thanks to
9410           shigeri).
9411
9412 2000-01-27
9413
9414         * src/summaryview.[ch]: added functions for assortment.
9415         * src/about.c: added a button to close window.
9416
9417 2000-01-26
9418
9419         * src/procmsg.c: fixed a bug that didn't add news flag correctly.
9420         * src/compose.c: fixed a bug that can't reply to a news article.
9421         * src/filter.[ch]: added for message filtering.
9422         * src/procheader.[ch]: added procheader_get_unfolded_line()
9423           to process filtering. And added procheader_get_header_list()
9424           that reads headers of a message and store them on the memory,
9425           and procheader_header_list_destroy() that removes all headers
9426           read by procheader_get_header_list().
9427
9428 2000-01-25
9429
9430         * version 0.1.19alpha
9431
9432         * src/news.c: modified so that it retrieves only overview information
9433           that is not yet cached.
9434         * src/procmsg.[ch]: modified for news handling.
9435
9436 2000-01-24
9437
9438         * src/news.c: supported xover.
9439         * src/mbox.c: fixed a bug that didn't handle empty line correctly
9440           (Thanks to shigeri).
9441
9442 2000-01-23
9443
9444         * version 0.1.18alpha
9445
9446         * src/procmsg.[ch]: modified some functions so that they can
9447           handle news folder.
9448         * src/news.c: added header cache routine.
9449         * src/procheader.c: fixed a bug that caused memory leak when some
9450           header was duplicated.
9451           And added Newsgroups: in parsing headers.
9452         * src/summaryview.c: added news article cache routine.
9453         * src/compose.c: made it be able to reply/forward news article.
9454
9455 2000-01-22
9456
9457         * src/compose.c: fixed a bug that failed to parse To: header
9458           if a comma is included in double quotation (Thanks to shigeri).
9459         * src/mbox.c: modified the code for processing mbox so that it
9460           can handle unescaped From_ line correctly.
9461
9462 2000-01-21
9463
9464         * version 0.1.17alpha
9465
9466         * src/foldersel.c: fixed a bug that didn't display folder tree.
9467           And added the register routine for news server and group setting.
9468
9469 2000-01-20
9470
9471         * version 0.1.16alpha
9472
9473         * src/statusbar.[ch]: added statusbar_puts_all().
9474           statusbar_puts(): made it truncate a string that is too long.
9475         * src/folderview.[ch]: changed CTree's row data from string
9476           to FolderInfo structure.
9477           And implemented popup menu that registers news server and group.
9478         * src/messageview.c: modified short header display routine.
9479
9480 2000-01-19
9481
9482         * added src/news.[ch] for NetNews session management.
9483         * src/summaryview.[ch]: added NetNews reading codes.
9484
9485 2000-01-18
9486
9487         * src/mainwindow.c
9488           src/prefs_common.[ch]: made them preserve toolbar style.
9489         * src/main.c: made it save configuration before exiting.
9490         * src/summaryview.c: modified summary status display routine.
9491         * added src/nntp.[ch] for handling low level NNTP session.
9492
9493 2000-01-17
9494
9495         * added src/progress.[ch] for displaying progress.
9496         * src/inc.c: modified progress dialog routines to use
9497           src/progress.[ch].
9498         * src/folderview.[ch]: added preliminary NetNews supporting code.
9499
9500 2000-01-16
9501
9502         * version 0.1.15alpha
9503
9504         * src/main.c
9505           src/folderview.c: some permission fixes.
9506         * src/folderview.c: implemented folder creation/renaming/removing.
9507         * src/utils.[ch]: added remove_dir_recursive() that removes
9508           a directory recursively.
9509
9510 2000-01-15
9511
9512         * src/mainwindow.[ch]: added toolbar style selection.
9513         * added src/inputdialog.[ch] to prompt user to enter a string.
9514         * src/summaryview.[ch]: modified the behavior of view on
9515           normal mode.
9516         * src/mbox.c: fixed a bug that couldn't lock file when
9517           lockf() was used (Thanks to shigeri).
9518
9519 2000-01-14
9520
9521         * version 0.1.14alpha
9522
9523         * src/mainwindow.[ch]: changed the appearance of toolbar.
9524           And fixed window handling.
9525         * src/summaryview.c: modified the messages displayed on status bar.
9526         * src/compose.[ch]: added toolbar.
9527         * src/*.xpm: borrowed some icons from gnome-libs (temporary).
9528
9529 2000-01-13
9530
9531         * version 0.1.13alpha
9532
9533         * src/summaryview.c: fixed a bug of threading. And some code
9534           cleanups. And rewrote the routine of deleting duplicated messages
9535           using hash table.
9536         * src/mainwindow.[ch]: added toolbar.
9537
9538 2000-01-12
9539
9540         * version 0.1.12alpha
9541
9542         * src/summary_search.c: if the OS don't have wcsstr(), use wcswcs()
9543           instead.
9544         * src/summaryview.c: changed CTree creating routine as it creates
9545           thread on the fly for speeding up.
9546         * src/procmsg.c: rewrote message processing routines using hash
9547           table for speeding up. It should be considerably faster than
9548           before.
9549
9550 2000-01-11
9551
9552         * version 0.1.11alpha
9553
9554         * po/ja.po: modified msgstr for Solaris standard gettext.
9555         * src/main.c: added config.h inclusion.
9556         * src/compose.c: changed to add replied message's In-Reply-To
9557           message id to References header if it don't have References header.
9558         * src/summaryview.c: changed threading routine to use hash table
9559           for speeding up.
9560
9561 2000-01-11
9562
9563         * version 0.1.10alpha
9564
9565         * po/ja.po: modified msgstr so as not to core dump on Solaris.
9566         * src/main.c: added inclusion of locale.h.
9567           (Thanks to Sato for above.)
9568         * src/mbox.c
9569         * src/socket.c: applied Solaris patch by shigeri with some
9570           modification. (Thanks!)
9571
9572 2000-01-10
9573
9574         * version 0.1.9alpha
9575
9576         * src/compose.c: compose_encode_header(): fixed some bugs.
9577           And modified header generating routines to support proper
9578           References header, and supported Organization header.
9579         * src/procmsg.[ch]
9580           src/procheader.c: removed Cc: and Reply-To: from cache data.
9581         * src/procheader.[ch]: renamed header list structure to HeaderEntry.
9582         * src/summaryview.[ch]: summary_thread_func(): some optimization.
9583           And added summary_pass_key_press_event() to pass key press event
9584           from other widgets.
9585         * src/messageview.c: messageview_key_pressed(): modified so that
9586           key event is passed to summary view even if message view is
9587           separated. (Thanks to wakai@UEC univ. for pointing this out.)
9588
9589 2000-01-09
9590
9591         * version 0.1.8alpha
9592
9593         * src/compose.c: implemented RFC1522, RFC2407 (loosely) compliant
9594           header MIME encoding.
9595         * src/procheader.c: some bug fixes of folded header line processing.
9596         * src/headerview.c: headerview_show(): some bug fixes.
9597
9598 2000-01-07
9599
9600         * version 0.1.7alpha
9601
9602         * src/utils.c: conv_euctojis(): fixed a bug that didn't add
9603           kanji-out sequence [ \033 ( B ] when input string was ended
9604           with kanji. (Thanks to Nozomu Kobayashi for pointing this out.)
9605         * src/compose.c: compose_encode_header(): changed as it outputs
9606           encoded string to another buffer.
9607           And implemented a faculty to save sent message to outbox and
9608           to queue message that failed to send (preliminary).
9609           And, finally implemented proper To: and Cc: processing :)
9610         * src/folderview.c: added preliminary right-clicking popup menu
9611           for operating folders.
9612         * some permission fixes at creating or copying file.
9613
9614 2000-01-07
9615
9616         * version 0.1.6alpha
9617
9618         * src/procheader.c: fixed a bug that didn't null-terminate
9619           header list and caused segmentation fault.
9620
9621 2000-01-06
9622
9623         * version 0.1.5alpha
9624
9625         * src/procheader.[ch]: added function procheader_get_one_field()
9626           that gets one header field that matches the header list.
9627           And removed procheader_get_unfolded_line(), which is less generic.
9628           And rewrote procheader_get_header_fields() using
9629           procheader_get_one_field().
9630         * src/summaryview.c: some bug fixes of key input scan routine.
9631         * README, README.jp: modified documents a bit.
9632
9633 2000-01-05
9634
9635         * src/menu.c: menu_set_sensitive(): fixed a bug that if a menu item
9636           had a submenu, set sensitivity of the submenu, not the item.
9637
9638 2000-01-05
9639
9640         * version 0.1.4alpha
9641
9642         * src/summaryview.c: fixed a bug that caused segmentation fault
9643           when empty summary view was center-clicked.
9644           And fixed a bug that freed moving folder strings when marked
9645           as unread.
9646           If current folder is trash, don't delete message.
9647         * src/summaryview.[ch]
9648         * src/mainwindow.c
9649         * src/procmsg.[ch]: added update-cache mode (discards previous cache).
9650
9651 2000-01-04
9652
9653         * src/procheader.[ch]: more optimization of header processing
9654           routine. And added a new function procheader_get_header_fields()
9655           that receives an array of header name as a parameter and
9656           set header bodies.
9657         * src/utils.[ch]: added remove_return() for removing return code.
9658         * src/unmime.c: added remove_return() on the last of UnMimeHeader().
9659
9660 2000-01-03
9661
9662         * src/compose.c: if message body is ascii only, set US-ASCII as
9663           charset in Content-Type.
9664         * src/main.[ch]
9665         * src/prefs.c
9666         * src/prefs_common.c
9667         * src/prefs_account.c
9668         * src/account.c: changed the location of rc files.
9669         * src/account.c: enabled closing window when escape key is pressed.
9670
9671 2000-01-02
9672
9673         * version 0.1.3alpha
9674
9675         * src/compose.c: fixed a bug that caused segmentation fault
9676           when sending failed.
9677           And relocated header-generation routines from src/send.c.
9678         * src/send.c: moved header-generation routines to src/compose.c.
9679         * src/prefs.c: added '~' to home directory expansion.
9680         * src/prefs_account.[ch]: added signature file path configuration.
9681         * src/prefs_common.[ch]: added spool path configuration.
9682         * src/inc.c: changed the method of user name acquisition to use
9683           g_get_user_name().
9684
9685 2000-01-01
9686
9687         * version 0.1.2alpha
9688
9689         * added ChangeLog (this file), ChangeLog.jp.
9690         * some code cleanups.
9691         * added manage_window.[ch] for transient window management.
9692         * src/procheader.c: optimized header processing routine a bit.
9693         * src/send.c: fixed exception handling on connection.
9694         * src/inc.c: added exception handling on getting user name.
9695
9696 2000-01-01
9697
9698         * version 0.1.1alpha
9699
9700         * src/send.c: fixed a bug that didn't add Content-Type: header.
9701
9702 2000-01-01
9703
9704         * version 0.1.0alpha
9705
9706         * initial release.