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