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