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