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