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