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