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