3 * src/procmsg.c: procmsg_get_filter_keyword(): unfold headers and
4 extract ID from List-Id header.
5 * src/utils.[ch]: extract_one_parenthesis_with_skip_quote(): removed.
6 extract_list_id_str(): extract ID string from List-Id header.
10 * src/prefs_actions.c: merged from the claws branch. Fixes several
11 bugs and adds some features.
15 * src/compose.c: compose_parse_header(): fixed a bug that unnecessary
16 linebreaks were included on reediting.
18 src/pop.c: fixed typos: 'occured'.
22 * src/compose.[ch]: implemented auto signature replacement on
24 compose_insert_sig(): added a flag to replace current signature.
25 compose_get_signature_str(): new. It returns signature string.
26 compose_insert_command_output(): removed.
27 compose_select_account(): call compose_insert_sig() on account
29 compose_destroy(): fixed a memory leak of UndoMain object.
30 Compose::sig_str: new. It stores current signature string.
31 * src/gtkutils.[ch]: gtkut_stext_find(): new.
32 Renamed gtk_stext_clear() to gtkut_stext_clear().
33 * src/utils.[ch]: get_wcs_len(): returns wide-character length of
35 normalize_newlines(): converts CR+LF and CR into LF.
36 get_command_output(): returns command output.
40 * src/procmsg.[ch]: procmsg_get_filter_keyword(): new. It returns
41 filter keyword for messages.
42 * src/summaryview.c: summary_filter_open(): use
43 procmsg_get_filter_keyword().
44 * src/messageview.c: create_filter_cb(): implemented.
50 inc_put_error(): display server responses on error.
51 * src/pop.[ch]: added Pop3Session::error_msg, and set server responses
56 * src/messageview.[ch]: separated the forced charset of message view
57 in separate window from the main window.
59 textview_show_message()
61 textview_add_part(): use MessageView::forced_charset if specified.
65 * src/mainwindow.c: modified File menu a bit.
66 * src/menu.[ch]: added functions to handle item factory rc strings.
67 * src/messageview.[ch]: added a menu, and made it take over main
68 window's menu shortcuts.
69 added msginfo which is duplicated on display to MessageView.
70 * src/prefs_common.c: prefs_keybind_apply_clicked(): use
71 menu_factory_clear_rc().
75 * send_message.c: send_message_smtp():
76 re-enabled forcing of SMTP AUTH method.
77 Clear temporary password if authentication failed.
78 * smtp.c: output warning to log and set SMTPSession::error_val
80 * smtp.h: changed error value to enum. Added SMTPSession::error_val.
81 * src/mbox.c: proc_mbox(): force updating of folder.
85 * src/pop.h: changed error value to enum.
86 * src/pop.c: pop3_retr_recv(): return PS_IOERR when inc_drop_message()
88 pop3_ok(): return appropriate error value based on current state.
89 Output warning to log if error occurs.
94 src/news.[ch]: refactored. Remove NNTPSockInfo and use NNTPSession
99 * src/inc.c: inc_pop3_session_do(): retrun appropriate error if
100 Session::state == SESSION_ERROR.
101 * po/POTFILES.in: removed src/automaton.c and src/send.c.
102 Added src/send_message.c.
107 src/session.c: fixed breakage of POP3 retrieval.
108 session_recv_data_from_sock_unescape(): read until terminator
109 appears and also return the actual size.
113 * src/automaton.[ch]: removed.
114 * src/session.c: removed some of the debug output.
115 * src/smtp.c: smtp_session_recv_msg(): workaround in case server
116 returns EHLO-style response to HELO command.
117 Ignore all multiline responses except for EHLO since they are
118 allowed for any command.
123 src/pop.c: fixed retrieval of messages which contain dot-escaped
125 session_recv_data(): added a flag for unescape.
126 session_recv_data_from_sock_unescape(): new. It receives message
127 for each line and unescapes dot-escaped lines.
128 Removed the previous workaround.
129 * src/defs.h: decreased UI_REFRESH_INTERVAL to 40 msec.
133 * src/pop.[ch]: workaround for brekage of retrieval when given size
134 and actual one is different.
138 * src/pop.c: pop3_retr_eom_recv(): ignore invalid end of message
139 since some servers sometimes return incorrect message size.
140 * src/news.c: news_session_new(): zero clear NNTPSession object.
141 Don't initialize Session::sock with nntp_sock->sock to prevent
142 double-free of SockInfo.
143 * src/imap.c: zero clear IMAPSession object.
144 imap_cmd_append(): don't close SockInfo.
148 * src/pop.c: pop3_session_recv_msg(): fixed STLS.
153 src/pop.[ch]: reimplemented using new I/O system.
154 * src/session.[ch]: session_recv_data(): new.
155 session_send_data_to_sock()
156 session_recv_data_from_sock(): decreased the frequency of progress
161 * src/smtp.c: smtp_auth_recv(): fixed CRAM-MD5 authentication.
165 * src/session.[ch]: session_start_tls(): new.
166 session_recv_msg(): made it static.
170 * implemented asynchronous network I/O.
171 * src/session.[ch]: the interface to communicate with servers through
174 src/send_message.[ch]: rewrote using new I/O system.
175 * src/socket.[ch]: renamed *_write() to *_write_all(), and made
176 *_write() as just a simple wrapper for write().
177 * src/utils.c: get_outgoing_rfc2822_str(): new. It modifies the
178 message to send with SMTP or NNTP.
179 file_read_stream_to_str(): new.
183 * src/textview.c: textview_button_pressed(): corrected the range of
185 * src/compose.c: compose_wrap_line_all_full(): treat UTF-8 characters
186 represented with more than 2 bytes as 2 character width and 2 bytes
187 one as a single character width as a workaround for wrapping problem.
191 * src/utils.c: subject_compare_for_sort(): allow null strings (fixes
196 * implemented HTML link correctly.
197 * src/html.[ch]: HTMLAttr, HTMLTag: new structure for attributes /
199 html_get_tag(): new. It parses tag and returns HTMLTag object.
200 html_parse_tag(): also parses <a> tags and 'href' attributes.
201 * src/textview.c: textview_write_link(): new. It creates link string.
205 * src/compose.c: compose_wrap_line_all_full(): fixed an infinite
206 loop / crash bug (thanks to Darko Koruga).
207 compose_write_to_file(): put correct charset element when
208 conversion failed but want to send anyway.
212 * src/headerview.c: headerview_show()
213 src/textview.c: textview_write_line(): remove unreadable characters
214 from displayed strings to prevent crashes on multi-byte
216 * src/codeconv.[ch]: conv_unreadable_locale(): new. It was separated
217 from conv_localetodisp().
221 * src/procmsg.c: procmsg_cmp_by_subject()
222 src/summaryview.c: summary_cmp_by_subject(): ignore Re: when
225 subject_compare_for_sort()
226 trim_subject_for_sort(): new.
234 * src/defs.h: added -i option to the default sendmail command.
238 * src/codeconv.[ch]: added missing character encodings and locales.
243 procmsg_get_mark_sum()
244 procmsg_open_mark_file()
245 procmsg_read_mark_file(): take FolderItem instead of directory
250 * src/codeconv.c: conv_encode_header(): fixed a bug that spaces
251 which is on the wrap boundary would be lost when encoding long
252 non-ascii strings (thanks to Sergey Vlasov).
253 Don't force wrapping within a long word until it reaches hard line
254 length limit (998 characters) (workaround for the breakage of
255 long address list with no spaces).
259 * src/prefs_account.c: fixed compile failure when using neither
264 * src/codeconv.c: fixed UTF-8 locale support.
265 conv_get_code_conv_func(): return conv_noconv if locale encoding
266 is UTF-8. Return conv_latintodisp on ISO-8859-* to locale encoding
268 conv_convert(): call conv_iconv_strdup() instead of
269 conv_codeset_strdup().
270 conv_codeset_strdup(): moved some codes into conv_iconv_strdup().
274 * src/prefs_account.[ch]: added an option to use command output for
276 * src/compose.c: compose_insert_sig(): use command output if
278 compose_insert_command_output(): new.
282 * src/main.c: main(): remove lock socket if sylpheed is not running
283 when --status command is executed.
284 lock_socket_remove(): new.
288 * src/codeconv.c: conv_codeset_strdup(): don't convert if current
289 codeset is US-ASCII (or POSIX).
293 * src/codeconv.c: conv_iconv_strdup(): try to skip invalid characters
294 and continue conversion.
298 * src/summaryview.c: summary_selected(): always update widget
303 * src/utils.c: tzoffset_sec(): fixed a bug that displayed wrong
304 date in timezones more than GMT+12 or less than GMT-12.
308 * src/prefs_common.[ch]
309 src/sourcewindow.c: remember the size of source window.
310 * src/md5.c: fixed a compile problem with gcc 3.3.
314 * src/about.c: about_create(): modified the copyright notice.
318 * src/colorlabel.c: don't use pixmaps for label color rect but draw
319 rectangles so we can respect the color map of palette based visuals
320 (fixes the long time crashes on Solaris - thanks to Alfons
325 * src/procheader.c: procheader_date_parse(): made month string case
327 * src/prefs_filter.c: prefs_filter_close(): fixed the crash when the
328 selection list is empty.
332 * src/quote_fmt_parse.y: removed gettext translatable strings.
333 * src/unmime.c: unmime_header(): remove broken characters when
334 code conversion failed.
335 * src/codeconv.c: conv_encode_header(): fixed a bug that broken
336 headers if long words more than 75 characters are entered.
340 * src/prefs_account.c: prefs_account_receive_create()
341 src/utils.c: to_human_readable(): made units translatable.
345 * src/codeconv.c: isprintableeuckanji(): don't allow more than 0xf4
346 at first byte (fixes abort() problem of glibc).
347 * src/html.c: html_read_line(): remove characters which can't be
348 displayed on the current locale.
353 trim_subject_for_compare(): renamed from trim_subject().
354 trim_subject(): new. It removes [...] or (...) at the beginning
356 * src/prefs_folder_item.c
358 added options for trimming summary / compose subject.
359 * src/summaryview.c: summary_set_header(): trim subject if the folder
361 * src/compose.c: compose_reply_set_entry(): trim subject if the folder
367 LBREAK_IF_REQUIRED(): don't break lines before first word (fixes
368 X-Face header problem).
369 conv_encode_header(): allow up to 97 characters for one word.
373 * src/filter.c: filter_match_condition(): fixed the bug that
374 second condition ignored regex.
375 * src/news.h: NewsGroupInfo: use guint for message numbers
376 (fix count in grouplist dialog) (thanks to Thorsten Maerz).
380 * src/codeconv.c: conv_encode_header(): fixed a segfault bug
381 on code conversion failure.
382 conv_get_charset_str()
383 conv_get_charset_from_str(): optimized using hash table.
387 * src/quote_fmt_parse.y:
388 SHOW_MESSAGE_NO_SIGNATURE, SHOW_QUOTED_MESSAGE_NO_SIGNATURE:
389 treat only "\n-- \n" as a signature separator.
393 * src/gtkutils.[ch]: gtkut_ctree_node_prev(): new.
394 * src/summary_search.c: summary_search_execute(): search collapsed
400 conv_unreadable_latin(): include 0x7f as an unreadable character.
401 conv_localetodisp(): don't remove 8bit characters by default.
402 conv_get_current_charset()
403 conv_get_outgoing_charset(): return ISO-8859-15 if "@euro" is
404 appended at the last of locale name.
405 * src/compose.c: compose_write_to_file(): show from and to encoding
406 when code conversion failed.
414 * src/procmsg.h: WRITE_CACHE_DATA(): little speed improvement
415 (thanks to Colin Leroy).
416 * src/mh.c: mh_get_msginfo(): added NULL check (thanks to Thorsten
421 * src/textview.c: textview_write_line(): don't convert if conv is
427 renamed conv_guess_encoding() to conv_guess_ja_encoding().
428 conv_localetodisp(): new. It removes unreadable characters from
429 (assumed) current locale string.
430 conv_codeset_strdup(): convert into ISO-8859-1 if dest_code is
431 NULL and current locale encoding is US-ASCII.
432 conv_get_code_conv_func(): return conv_ustodisp if US-ASCII is
433 specified for destination charset.
434 * src/textview.c: textview_write_line(): use conv_localetodisp()
435 instead of strncpy2() if conversion failed.
439 * src/codeconv.c: conv_iconv_strdup()
441 imap_modified_utf7_to_locale()
442 imap_locale_to_modified_utf7(): use ICONV_CONST macro to remove
443 a warning on some systems.
444 * src/codeconv.c: conv_iconv_strdup(): flush iconv() output and
446 Return NULL instead of incomplete string if conversion failed.
450 * src/summaryview.c: summary_execute(): select appropriate node
451 if currently selected node is to be deleted.
452 * src/gtkutils.[ch]: gtkut_ctree_node_is_selected(): new. Returns
453 TRUE if the specified node is selected.
457 * src/summaryview.c: summary_status_show(): fixed a occasional crash
458 on deleting or moving.
462 * src/codeconv.c: conv_unreadable_eucjp(): made the validity check
463 of EUC-JP more accurate.
464 isprintableeuckanji(): new. Use table for validity check of EUC-JP.
476 * src/quoted-printable.c: qp_encode_line(): fixed linebreak
477 duplication bug if the source string has CRLF.
479 canonicalize_str(): new. Returns newly allocated canonicalized
481 uncanonicalize_file(): new. Uncanonicalize (CRLF -> LF) text.
482 uncanonicalize_file_replace(): new.
483 * src/compose.c: always canonicalize body before processing, and
484 uncanonicalize before returning.
488 * src/procmime.c: procmime_get_encoding_for_charset(): prefer
489 ENC_8BIT for Russian charsets.
490 * src/compose.c: compose_write_to_file(): use base64 when signing
495 * src/prefs_common.c: prefs_send_create(): added a description for
496 the setting of Content-Transfer-Encoding.
500 * src/codeconv.c: fixed locale_table for Russian locales (thanks to
502 * src/procmime.c: procmime_get_encoding_for_charset(): return
503 ENC_BASE64 for ISO-8859-5, KOI8-* and Windows-1251.
504 * src/compose.c: compose_attach_append(): set correct Content-
505 Transfer-Encoding for message/rfc822.
506 compose_write_to_file(): enabled user-definable Content-Transfer-
508 * src/prefs_common.[ch]: added an option for user-defined Content-
513 * src/quoted-printable.[ch]: qp_encode_line(): fixed a bug if the
514 line doesn't end with linebreak.
518 * implemented quoted-printable encoding.
519 * src/quoted-printable.[ch]: qp_encode_line(): new.
521 compose_write_to_file()
522 compose_write_attach(): implemented quoted-printable encoding.
523 compose_attach_property_create(): enabled quoted-printable menu
525 * src/procmime.c: procmime_get_encoding_for_charset(): return
526 ENC_QUOTED_PRINTABLE for ISO-8859-* and CP125* charset.
527 * src/Makefile.am: added $(LIBICONV) to sylpheed_LDADD for libiconv
534 src/utils.[ch]: get_abbrev_newsgroup_name(): improved the way
535 of abbreviation of newsgroup name.
539 * configure.in: show the result of iconv detection.
543 * src/codeconv.[ch]: made the transition from libjconv to iconv().
544 conv_iconv_strdup(): new.
548 src/prefs_common.c: replaced HAVE_LIBJCONV to HAVE_ICONV.
554 src/prefs_folder_item.c: English fix (property -> properties).
555 * src/prefs_filter.c: alert if entry is not saved.
556 prefs_filter_dialog_to_filter(): new.
560 * src/codeconv.c: conv_encode_header(): fixed a bug which output raw
561 strings after linefeed.
566 * src/codeconv.[ch]: code cleanup and optimization.
567 conv_code_converter_new()
568 conv_convert(): use functions obtained by conv_get_code_conv_func()
570 conv_codeset_strdup(): code cleanup.
571 conv_get_code_conv_func(): added an argument for destination
572 character set, and generalized.
576 * src/codeconv.c: LBREAK_IF_REQUIRED(): break line only if some
578 * src/compose.c: compose_convert_header(): remove trailing spaces.
579 * src/customheader.c: custom_header_read_str(): strip the spaces
581 * src/prefs_customheader.c: prefs_custom_header_clist_set_row():
582 strip the spaces of name and value.
590 * src/codeconv.c: conv_encode_header(): fixed a bug which will run
591 into infinite loop when encountering invalid characters.
595 * src/procmsg.[ch]: procmsg_sort_msg_list(): new. It sorts message
597 * src/summaryview.c: summary_show(): removed summary_sort() because
598 it is done inside folder_item_get_msg_list(). This will improve
599 the performance of summary display.
600 Sorted out the summary sort functions using macros.
604 src/folder.[ch]: folder_item_get_msg_list(): return pre-sorted
605 list if FolderItem::sort_key is set.
606 Added SORT_BY_TO to FolderSortKey enum.
607 * src/mainwindow.c: added "View/Sort/by recipient".
615 * src/codeconv.c: conv_encode_header(): fix for redundant space on
617 * src/compose.c: compose_convert_header(): always pass string to
618 conv_encode_header() for line-breaking.
622 * src/textview.c: textview_make_clickable_parts(): fixed incorrect
623 parsing of email addresses.
627 * src/defs.h: added DEFAULT_BROWSER_CMD.
628 * src/mimeview.c: mimeview_view_file()
629 src/prefs_common.c: prefs_other_create()
630 src/utils.c: open_uri(): changed the default web browser to
631 mozilla, and changed 'raise' command (which is undocumented)
632 to 'new-window' in 'netscape -remote'.
636 * src/compose.c: compose_send_control_enter(): fixed crash on
637 Ctrl-Enter when Message/Send has no accelerator key (thanks to
645 sort_summary_type_cb(): prevent unwanted processing on unchecking
650 * src/main.c: process command line option before gtk_init() to
651 enable remote operation without X (thanks to Ruslan N. Balkin).
652 * src/codeconv.c: conv_encode_header(): fixed a potential buffer
657 * src/Makefile.am: changed $(target_alias) to $(target_triplet)
658 (the spec of autotools seems to be changed).
662 * src/imap.c: get path separator using LIST command if server
663 doesn't support NAMESPACE (based on the patch by Brian Sammon).
664 imap_parse_list(): added an argument to return path separator.
665 imap_get_namespace_by_list(): new.
669 * src/addr_compl.c: add_address(): removed the debug print.
670 * src/gtkutils.[ch]: gtkut_window_popup()
671 src/mainwindow.c: main_window_popup(): applied the patch to fix
672 the behavior of window popup from Sergey Vlasov (thanks!)
673 * src/account.c: account_edit_create(): use signal_connect_after
674 for row_move signal to fix the row position bug.
675 account_row_moved(): scroll the CList half page.
676 * src/prefs_filter.c: prefs_filter_row_move(): scroll the CList
678 * src/summaryview.c: summary_reply(): use selection text only if
679 the displayed message is selected (thanks to Sergey Vlasov).
683 * src/codeconv.c: conv_encode_header(): reimplemented the routine
684 of MIME header encoding. And use Q-encoding method if the current
685 locale is single-byte one.
686 * src/utils.[ch]: is_next_nonascii(): take multi-byte string instead
687 of wide-character string. Consider control codes as non-ASCII.
688 get_next_word_len(): new. It returns the length of next word.
689 is_next_mbs(), find_wspace(): removed.
690 * src/quoted-printable.[ch]: new.
691 qp_decode_line(): decodes one QP line.
692 qp_decode_q_encoding(): decodes Q-encoded string in MIME header.
693 qp_get_q_encoding_len(): returns the length when a string is
695 qp_q_encode(): Q-encode a string (RFC 2047).
696 * src/unmime.c: moved the functions for quoted-printable to
701 * src/send.c: send_message_local(): escape line that only have one
702 dot character (postfix's sendmail command will stop there).
706 * src/send.c: send_message_local(): don't escape first-dot line
707 (thanks to Sergey Vlasov).
711 * autogen.sh: added 'libtoolize --force --copy' to override the
713 * acconfig.h: removed.
714 * configure.in: increased minimal version of GPGME to 0.3.10.
715 Fixed checking of XIM.
717 ac/gnupg-check-typedef.m4: added an argument for comment.
721 * src/imageview.[ch]: fixed conflicting declarations of
722 imageview_show_image() (thanks to Thorsten Maerz).
726 * src/compose.c: compose_entry_append(): don't add ", " on subject
728 * src/codeconv.c: conv_get_outgoing_charset(): obtain outgoing
729 charset from the table (currently disabled for non-Japanese locales).
730 conv_get_current_locale(): also refer to LC_CTYPE.
734 * README: added a description about hidden settings.
738 * src/prefs_common.[ch]: reorganized the common prefs dialog.
739 Made enable_hscrollbar and bold_unread hidden options.
743 * src/quote_fmt_parse.y: fixed a parse error (thanks to Andreas Hinz).
748 account_find_from_message_file()
749 account_find_from_msginfo(): new. They find an account from the
750 headers like 'From:', 'X-Sylpheed-Account-Id:', and 'AID:' in the
753 compose_reedit(): restore messages' previous account on composition.
754 compose_write_headers(): add 'X-Sylpheed-Account-Id:' header
759 * src/compose.c: cleaned up the code using compose_entry_set()
760 (don't use gtk_entry_set_text() directly).
764 * src/imap.c: imap_parse_namespace(): fixed a memory leak.
768 * updated autotools and libtool to the latest version.
769 * configure.in: added AC_PREREQ(2.50).
773 * src/textview.c: textview_set_font(): fix for message display in
774 UTF-8 locales (thanks to Sergey Vlasov).
778 * src/imageview.[ch]: imageview_show_image(): resize images to fit
779 the window size if specified.
780 * src/prefs_common.[ch]: added an option 'Resize attached images'.
784 * refactoring for SMTP implementation.
785 * src/session.h: added ui_func to Session.
786 * src/smtp.[ch]: separated the connection routine from
787 smtp_session_new() to smtp_connect().
788 Changed the argument of every function other than smtp_ok() from
789 SockInfo to SMTPSession.
790 Call UI callback from each functions.
791 * src/send.c: send_message_smtp(): separated the code for UI update
792 into send_progress_dialog_update().
796 * src/smtp.[ch]: separated smtp_auth() from smtp_from().
797 * src/send.c: send_message_smtp(): call smtp_auth() and display
798 the state to the dialog.
802 * src/filter.c: strmatch_regex(): use extended regex (thanks to
804 * src/main.c: main(): removed the code for assortrc -> filterrc
806 * src/gtkutils.c: gtkut_font_load(): only use gdk_font_load() if
807 current locale is C or POSIX.
808 gtkut_stext_is_uri_string(): include "www." for URI string.
809 * src/textview.c: textview_make_clickable_parts(): include "www."
818 * src/textview.c: textview_add_part(): indicate signature status
819 using different colors.
823 * src/folder.c: folder_write_list_recursive(): escape
824 To/Cc/Bcc/Reply-To strings.
828 * src/codeconv.c: conv_encode_header(): enabled B-encoding of
829 headers on locales other than Japanese when not using libjconv.
833 * src/inc.[ch]: added INC_IO_ERROR to IncState. Also added its
834 corresponding error message.
835 inc_pop3_session_do(): set INC_IO_ERROR instead of INC_NOSPACE
840 * src/prefs_account.[ch]: removed prefs_account_save_config() since
842 * src/procmime.[ch]: removed procmime_mimeinfo_free() since
843 procmime_mimeinfo_free_all() can be used in every case.
847 * src/account.c: account_get_special_folder(): support F_INBOX, and
852 * src/compose.[ch]: ComposeEntryType: changed COMPOSE_* to
853 COMPOSE_ENTRY_*, and added
854 COMPOSE_ENTRY_{REPLY_TO,SUBJECT,FOLLOWUP_TO}.
857 compose_redirect(): added FolderItem to the arguments, and reflect
858 settings in the item.
859 compose_entry_set(): new.
860 compose_entry_append(): code cleanup.
861 compose_entries_set_from_item(): take ComposeMode in its arguments,
862 and enabled FolderItem::use_auto_to_on_reply.
863 * src/summaryview.c: summary_reply(): pass folder_item to
864 compose_{reply,forward,redirect}().
869 gtkut_font_load(): new. It automatically choose font or fontset
871 gtkut_font_load_from_fontset(): new. It tries to load single font
872 instead of fontset from a fontset string.
876 src/summaryview.c: workaround for the problem that couldn't display
877 8-bit characters in C or POSIX locale (use font instead of fontset).
880 src/textview.c: made code cleanup using gtkut_font_load*().
884 * src/mh.c: mh_get_msginfo(): set correct message number.
888 * src/folder.[ch]: added a new virtual method Folder::get_msginfo().
889 It returns a new MsgInfo associated to a message number.
890 folder_item_get_msginfo(): new.
891 * src/imap.[ch]: imap_get_msginfo(): new.
892 * src/mh.[ch]: mh_get_msginfo(): new.
893 * src/news.[ch]: news_get_msginfo(): new.
897 * src/codeconv.c: conv_euctojis(): fixed a bug which will cause
898 infinite loop if an invalid code appeared.
902 * src/codeconv.c: conv_codeset_strdup()
903 src/html.[ch]: html_read_line(): don't output conversion failure
905 Added HTML_CONV_FAILED to the enum HTMLState.
909 * implemented per-folder auto-set address (still in progress).
910 * src/compose.[ch]: compose_new(): added FolderItem to its arguments,
911 and set entries from it (if mailto is empty).
912 compose_entry_append(): activate menu if required.
913 compose_entries_set_from_item(): new.
914 * src/folder.[ch]: added auto_to, use_auto_to_on_reply, auto_cc,
915 auto_bcc, and auto_replyto to FolderItem, and renamed apply_sub to
917 folder_build_tree(), folder_read_folder_func(),
918 folder_write_list_recursive(): added the above members.
919 * src/prefs_folder_item.[ch]: added auto-set addresses.
920 * src/pop.[ch]: removed Pop3State::prev_folder.
924 * src/compose.c: allow dropping files by also "moving" files from a
925 file manager (thanks to Alfons).
929 * compose_reply_set_entry(): made Reply-To have priority over
930 List-Post on ML reply.
934 * src/gtksctree.[ch]: gtk_sctree_set_anchor_row(): new.
935 * src/summaryview.c: summary_step(): fixed a bug that lost the
936 correct selection anchor.
937 summary_key_pressed(): use gtk_sctree_select() instead of
941 src/recv.c: differentiate disk full and socket errors
942 (thanks to Colin Leroy).
946 * src/account.c: account_edit_prefs(): removed unused variables.
947 * src/compose.[ch]: separated WITH_QUOTE/WITHOUT_QUOTE flags in
950 compose_reply_set_entry(): receive reply type with one argument.
951 * src/summaryview.c: summary_reply(): reduced conditional branches.
955 * src/compose.c: compose_redirect(), compose_reedit(): strip CR
956 from line ends (thanks to Sergey Vlasov).
957 * src/folderview.c: renamed 'Rescan folder tree' to 'Rebuild
962 * src/folder.[ch]: added a virtual method Folder::remove_msgs().
963 * src/imap.[ch]: implemented imap_remove_msgs() which expunges
964 messages all at once.
968 * src/account.[ch]: account_open(): new. It opens account prefs
969 dialog and reflects to UI when finished.
971 folderview_button_pressed()
972 folderview_property_cb(): open account prefs dialog when the
973 property of the root folder of remote account is requested.
977 * src/account.c: account_destroy(): unref account information in
979 * src/folder.[ch]: folder_unref_account_all(): new. It unref the
980 specified account information in all folders.
982 folderview_rm_imap_server_cb()
983 folderview_rm_news_server_cb(): destroy Folder first because
984 folder_destroy() refers to account information.
988 * src/account.c: account_find_from_item(): fixed a bug which didn't
989 select the correct account.
990 * inc_pop3_session_do():
991 fixed the resource leak when SSL initialization failed.
992 Immediately break from temporary event loop if cancelled.
996 * src/account.[ch]: account_find_from_item(): new.
998 compose_reply(), compose_forward(), compose_redirect()
999 src/mainwindow.c: compose_cb(): select optimal account when
1001 * src/folder.[ch]: added FolderItem::apply_sub.
1002 * src/menu.[ch]: menu_find_option_menu_index(): new. It finds the
1003 index of option menu which contains the specified data.
1004 * src/prefs_folder_item(): added Compose tab, and the setting of
1009 * configure.in: added $LDAP_LIBS for lber library detection.
1017 * src/procmsg.c: procmsg_msginfo_get_full_info(): fixed a memory
1018 leak, and added error checking.
1022 * src/compose.[ch]: added a flag Compose::use_newsgroups, and
1023 removed Compose::orig_account.
1024 compose_check_for_valid_recipient(): check only enabled entries.
1025 compose_write_headers()
1026 compose_redirect_write_headers(): add Newsgroups header only
1027 when the entry is enabled.
1028 compose_send(): modified the method of finding a mail account
1029 from a news account so that it tries to match the From address.
1030 * src/send.c: send_message_queue(): enabled the queueing of news
1032 * src/news.[ch]: news_post_stream(): new.
1036 * configure.in: check lber first and use $LDAP_LIBS on the check
1041 * po/*.po: fixed many typos of format strings which will lead to
1042 crash (thanks to Sergey Vlasov).
1046 * src/procheader.c: procheader_parse_stream(): added Cc header
1047 to the target for full parsing.
1048 * src/procmsg.[ch]: procmsg_msginfo_get_full_info(): new. It
1049 returns the full message information from the given information.
1050 * src/compose.c: compose_reply(), compose_forward(): get full
1051 message information for Cc header.
1055 * src/inc.c: inc_account_mail(), inc_all_account_mail(): update
1056 IMAP4 and NNTP folder summary after checking those accounts.
1064 * src/prefs_common.c: prefs_compose_create(): modified the label
1065 of the option for Reply button.
1066 * configure.in: add -lldap and -llber to the 5th argument of
1067 AC_CHECK_LIB() for LDAP library detection.
1072 INSTALL.jp: updated.
1076 * src/mainwindow.c: toggle the behavior of Reply button between
1077 normal reply and reply-to-list.
1078 * src/prefs_common.[ch]: added an option to switch the function
1083 * src/compose.c: compose_new(): removed the workaround for XIM
1084 because it doesn't have any effect and only seems to cause
1089 * src/compose.[ch]: compose_reply(): added a flag for reply-to-ML.
1090 compose_parse_header(): parse also List-Post header.
1091 compose_reply_set_entry(): support reply-to-ML (fall back to
1092 normal reply if ML address is not found).
1095 src/summaryview.c: reorganized Reply menu and added 'Reply to
1097 * src/utils.[ch]: scan_mailto_url(): new. It scans mailto URL and
1098 returns newly allocated parameters.
1102 * src/account.c: account_read_config_all(): set account information
1103 to default before initializing with configuration file.
1104 * src/prefs_account.[ch]: prefs_account_new(): new. It returns a
1105 newly created account information structure initialized by
1106 the default settings.
1111 replace_address_in_edit(): check if newtext is NULL.
1112 completion_window_button_press(): fixed a memory leak.
1113 * src/pop.c: LOOKUP_NEXT_MSG(): don't expire messages whose
1114 recv_time is RECV_TIME_KEEP.
1115 pop3_getrange_uidl_recv(): only set get_all flag if
1116 ac_prefs->getall is set.
1117 pop3_retr_recv(): don't delete messages which are not received
1118 by filter, and set recv_time to RECV_TIME_KEEP in the case.
1119 * src/pop.h: added an enum RecvTime.
1120 * src/inc.c: inc_drop_message(): unlink temporary message file if
1121 not received by filter.
1125 * src/mainwindow.c: added 'Edit/Select thread' menu.
1126 * src/summaryview.[ch]: added 'Select thread' to the context menu.
1127 summary_select_thread(): new. It selects all messages of current
1132 * src/rfc2015.c: check_signature(): corrected error handling and
1137 * src/rfc2015.c: check_signature(): correctly remove the last empty
1138 line, and canonicalize the file part before verifying (this should
1139 fix incompatibility with Evolution or some other MUAs).
1140 * src/utils.[ch]: copy_file_part(): new. It copies the specified
1141 range of file stream to another file.
1145 * src/compose.c: compose_write_to_file(): force BASE64 encoding for
1146 8-bit text when signing (thanks to Colin Leroy).
1150 * src/prefs_common.c: prefs_send_create(): fixed the charset string
1151 for Cyrillic (Windows-1251).
1159 * src/codeconv.c: changed the charset for ru_RU.CP1251 to
1160 Windows-1251. Added bg_BG locale.
1164 * src/compose.c: account_activated(): change the state of menu items
1165 and entries according to the selected account.
1166 compose_select_account(): new. It changes the state of title bar,
1167 menu items and entries.
1171 * src/inc.c: inc_mail(): correct new_msgs when inc_spool() returned
1173 Don't refresh summary view on fetching when open_inbox_on_inc is
1178 * src/summaryview.c: summary_show(): refresh even if open_inbox_on_inc
1179 is set (to avoid summary refresh problem).
1180 * src/imap.c: removed warnings by checking the existence of directory
1181 before calling remove*_numbered_files().
1185 * src/prefs_common.c: corrected English.
1189 * src/prefs_common.[ch]: added an option: "Mark messages as read
1190 only when opened in new window".
1195 folder_tree_destroy()
1196 folder_write_list_recursive(): added sanity check.
1197 * src/imap.c: imap_scan_tree(): if folder->node is NULL and
1198 can't get session, create empty folder node (based on the
1199 Alfons' suggestion).
1203 * src/textview.c: textview_key_pressed(): pass GDK_Delete event to
1205 * src/summaryview.c: summary_key_pressed(): scroll correct TextView
1210 * src/news.c: news_scan_group(): fixed wrong message number
1215 * major refactoring for POP3.
1216 * src/inc.[ch]: moved Pop3State, inc_pop3_state_new(),
1217 inc_pop3_state_destroy(), inc_get_uidl_table(), and
1218 inc_write_uidl_list() into pop.c.
1219 Moved Pop3State::folder_table and Pop3State::inc_state into
1222 inc_put_error(): added lockbusy state.
1223 inc_pop3_session_do(): obtain inc_state from Pop3State::error_val.
1224 inc_cancel(): don't terminate the automaton here but just set
1225 the flags to prevent crash.
1227 pop3_getauth_pass_recv()
1228 pop3_getauth_apop_recv(): check lockbusy state.
1229 pop3_retr_recv(): check Pop3State::cancelled flag.
1230 * src/automaton.[ch]: added 'cancelled' flag to Automaton.
1231 automaton_input_cb(): terminate if cancelled flag is true.
1232 * sylpheed.desktop: changed Type=Internet to Type=Application.
1233 Added Categories=Application;Network;.
1239 src/progressdialog.c: show detailed information to the status
1241 Added cur_total_recv_bytes to Pop3State.
1242 * src/prefs_common.[ch]: added an option to specify whether to
1243 close receive dialog when finished.
1247 * src/folder.[ch]: folder_get_path(): new. It returns the root path
1251 imap_folder_destroy()
1253 imap_remove_all_msg()
1254 news_folder_destroy(): remove cache directories / files when
1255 deleting Folder / messages.
1259 is_file_entry_exist(): check if the argument is NULL.
1261 remove_numbered_files()
1262 remove_expired_files(): fixed memory leaks on error.
1271 src/smtp.[ch]: made Folder and Session destructor virtual method.
1275 * src/compose.c: do joining of normal lines only when auto-wrapping.
1276 * src/main.c: modified the warning message for GnuPG.
1277 * src/about.c: about_create(): modified the compiled-in features
1279 * configure.in: improved LDAP library checking (thanks to Alfons).
1289 compose_wrap_line_all(): backed out the change to join lines that
1294 * configure.in: require at least gpgme-0.3.5.
1298 * src/alertpanel.c: alertpanel_create(): minor modification.
1307 * src/alertpanel.c: alertpanel_create(): modified the layout.
1308 * src/rfc2015.c: check_signature(): don't abort on error.
1312 * src/compose.c: compose_wrap_line_all(): freeze widget only if
1313 required to repress flickers.
1317 * src/compose.c: improved line wrapping.
1319 compose_wrap_line_all(): also join lines that are not indented.
1320 dump_text(): handle multi-byte strings correctly.
1324 * src/compose.c: compose_wrap_line_all(): fix for auto-wrapping
1325 (go to next line when space is entered at line limit).
1329 * src/inc.c: inc_get_uidl_table(): fixed a memory leak reported by
1334 * src/mh.c: mh_scan_tree_recursive(): disabled Maildir folder
1335 checking to prevent confusion.
1339 * src/folder.[ch]: folder_item_get_msg_list(): added a wrapper for
1340 method Folder::get_msg_list().
1341 * src/account.c: account_edit_prefs(), account_delete(): use
1342 folderview_set_all() instead of folderview_rescan_all().
1343 * src/folderview.[ch]:
1344 folderview_check_new_all(): new. Updates all folders.
1345 folderview_rescan_tree(): confirm before executing.
1346 folderview_rescan_all(): commented out since it's not used anymore.
1347 folderview_update_item_foreach(): added a flag for summary update.
1348 * src/inc.c: inc_finished(): update summary only when
1349 prefs_common.scan_all_after_inc is set.
1350 inc_drop_message(): set mtime of target folder to 0 to force
1351 the updating of summary.
1352 inc_start(), get_spool(): update also summary when updating
1354 * src/mainwindow.c: changed 'File - Rescan folder tree' to
1355 'File - Check for new messages in all folders'.
1359 * src/compose.c: compose_write_to_file(): clearsign message body
1361 compose_clearsign_text(): new. Replaces the string with clearsigned
1363 * src/prefs_account.c: added an option for clearsign.
1364 * src/rfc2015.c: rfc2015_clearsign(): new.
1365 pgp_sign(): added a flag for clearsign.
1366 * src/utils.[ch]: get_tmp_file(): return newly allocated unique file
1367 name (needs to be freed by caller).
1368 str_write_to_file(), file_read_to_str(): new.
1372 * src/procmsg.c: procmsg_read_mark_file(): check key duplication
1373 to avoid memory leak.
1377 * src/base64.c: include string.h for memcpy().
1378 * src/gtksctree.c: use macro ABS() instead of function abs().
1379 * src/prefs_account.c
1380 src/prefs_common.c: renamed 'send' to 'p_send' so as not to
1381 conflict with the function send() in sys/socket.h.
1382 * src/mainwindow.c: commented out the unnecessary functions.
1383 * src/utils.c: canonicalize_file_replace(): correct warning message.
1387 * src/utils.[ch]: get_tmp_file(): new. Returns the directory for
1388 temporary files in ~/.sylpheed/.
1389 * src/main.c: create temporary directory in ~/.sylpheed/.
1391 src/inc.c: create temporary files in ~/.sylpheed/, and modified
1393 compose_exec_ext_editor(): fixed a bug that failed to create the
1394 temporary file if g_get_tmp_dir() returned directory other than
1399 * src/utils.c: copy_file(): check if dest_bak != NULL when unlinking.
1403 * src/utils.[ch]: canonicalize_file_replace(): fixed a bug that fails
1404 to replace the file when the given file and temporary file are not
1405 on the same filesystem.
1406 copy_file(): added a flag whether to keep backup.
1407 move_file(): added a flag whether to overwrite the destination file.
1411 * src/socket.[ch]: fixed the linking failure when IPv6 is enabled.
1412 * src/select-keys.c: modified key selection dialog.
1416 * src/socket.[ch]: my_gethostbyname(): new.
1417 * src/utils.c: get_domain_name(): return FQDN instead of short
1418 hostname (thanks to Bob Woodside).
1419 * src/template.c: made the debug messages less verbose.
1423 * src/prefs_common.[ch]: removed obsolete default sign key setting.
1424 * src/utils.c: canonicalize_file(): correct the error check of
1429 * src/compose.c: compose_write_to_file():
1430 canonicalize line endings before encrypting/signing (this will fix
1431 interoperability with other MUAs).
1432 Removed unnecessary strdup.
1433 Don't encrypt/sign draft message.
1435 canonicalize_file(), canonicalize_file_replace(): new.
1437 src/select-keys.c: changed g_message() to debug_print() and
1439 * src/mimeview.c: mimeview_check_signature(): removed unnecessary
1440 MIME structure scanning.
1441 * src/textview.c: textview_add_part(): show signature status in
1444 src/sigstatus.c: modified translatable strings and some MIME
1449 * src/procmsg.c: procmsg_save_to_outbox(): don't forget to remove
1450 the temporary file when saving from queue.
1456 src/prefs_account.[ch]
1457 src/prefs_common.[ch]: merged GnuPG stuff from the claws branch.
1458 Modified some messages.
1462 * src/textview.c: textview_scan_header(): fixed a memory leak
1467 * src/prefs_actions.c: execute_actions(): put create_io_dialog()
1468 in right conditional block.
1472 * src/compose.c: compose_wrap_line_all(): fixed character buffer
1478 log_error(): add time stamp to log messages.
1483 corrected a typo (HAVE_SYS_SELECT -> HAVE_SYS_SELECT_H)
1487 * src/socket.c: implemented socket I/O timeout.
1489 * src/pop.c: check errors and return error value correctly.
1493 * src/prefs_actions.c: made the action's input/output dialog display
1494 without delay. Made the dialog modal instead of making window
1495 insensitive. Also cleaned up its UI.
1499 * implemented --attach command line option.
1501 Cmd::attach_files: new member to store file paths.
1502 parse_cmd_opt(): added --attach option. --compose option is implied.
1503 prohibit_duplicate_launch()
1504 lock_socket_input_cb(): added "compose_attach" message.
1507 src/textview.c: renamed compose_new_with_recipient() to
1508 compose_new(), and added an argument for attachment files.
1512 * src/logwindow.c: freeze GtkText widget while hidden.
1513 log_window_append(): changed the header for message and warning.
1517 * src/news.c: implement automatic cache expiration.
1518 news_delete_expired_caches(): new.
1519 news_get_article_list(): fixed a bug that nonexistent messages
1520 were not removed from list.
1521 * src/procmsg.[ch]: procmsg_get_last_num_in_msg_list(): renamed
1522 procmsg_get_last_num_in_cache().
1523 * src/utils.[ch]: remove_expired_files(): new.
1528 inc_mail(): force summary refresh when using external command for
1530 inc_all_account_mail(): fixed a bug on spool checking failure.
1541 src/editldap_basedn.c
1543 src/prefs_common.c: fixed memory leaks which didn't free strings
1544 gtk_editable_get_chars() returned. And minor code cleanups.
1546 src/vcard.h: removed C++-style comments.
1550 * src/codeconv.c: conv_encode_header(): fixed a problem in encoding
1551 strings which include both multi-byte and us-ascii characters.
1555 * src/utils.c: remove_numbered_files(): don't try to unlink()
1558 conv_get_code_conv_func(): return conv_anytodisp() if charset is
1560 conv_unmime_header_overwrite()
1561 conv_unmime_header(): do conv_anytodisp() before decoding header.
1569 * src/compose.c: added 'Tools/Actions' menu.
1573 * src/base64.c: a minor fix for BASE64VAL() macro.
1577 * src/base64.c: base64_decode(): fixed a buffer overrun bug.
1585 src/base64.[ch]: rewrote the BASE64 encode / decode routines.
1586 base64_encode(), base64_decode(): new.
1587 * src/rfc822.[ch]: removed.
1589 src/about.c: removed the copyright notice for fetchmail.
1595 src/unmime.[ch]: rewrote the MIME decode routines.
1597 unmime_quoted_printable_line(): new.
1599 procheader_get_one_field()
1600 procheader_get_unfolded_line(): remove also CR.
1604 * libkcc: removed from the source tree.
1606 src/about.c: removed the copyright notice for libkcc.
1607 * src/codeconv.c: conv_guess_encoding(): check for ASCII code first
1609 * src/prefs_actions.c: removed unnecessary spaces/tabs.
1613 * src/prefs_actions.c: comply with the coding style.
1614 Modified the UI design.
1615 * src/mainwindow.c: main_window_set_menu_sensitive(): enable Actions
1616 menu when multiple messages are selected.
1620 * src/prefs_actions.[ch]: merged the 'Actions' feature from claws.
1621 update_actions_menu(): simplified the menu deletion.
1622 * src/mainwindow.c: added 'Actions' menu to Tools and Configuration.
1626 * src/codeconv.[ch]: implemented conv_jistoeuc(), conv_euctojis(),
1627 conv_sjistoeuc(), and conv_guess_encoding(). Removed the dependency
1632 * configure.in: added check for strchr.
1636 * src/prefs_common.[ch]
1637 src/inc.c: added an option to inhibit receive error dialog.
1641 * src/account.c: account_find_from_address(): support multiple
1642 addresses in header.
1646 * src/gtksctree.[ch]: changed GtkSCTree::anchor_row from gint to
1647 GtkCTreeNode* so that it won't become invalid after the row move.
1648 Removed dependency to gtkutils.c.
1649 * src/prefs_common.[ch]
1650 src/summaryview.c: summary_selected(): added an option to show
1651 message when cursor keys are pressed on summary view.
1657 src/compose.c: changed "host_alias" to "target_alias" so that it
1658 shows the correct system name on cross-compiling (thanks to
1663 * src/prefs_account.[ch]: added the option menu to force an
1664 authentication method for SMTP AUTH.
1666 src/smtp.[ch]: smtp_from(), smtp_auth(): added an argument to
1667 specify the authentication method for SMTP AUTH.
1668 smtp_ehlo(): allow AUTH responses that don't comply with the RFC.
1672 * src/prefs_common.[ch]
1673 src/compose.c: enabled "Wrap on input".
1677 * src/summaryview.[ch]
1678 src/mainwindow.c: added "Go to/{Prev,Next} new message" menu.
1679 Made some code cleanups.
1684 src/prefs_common.[ch]: added the hidden option to specify the
1685 policy of the vertical scrollbar on folder view.
1689 * src/messageview.[ch]:
1690 messageview_copy_clipboard(): fixed a bug that couldn't copy text
1692 messageview_get_current_textview(): new.
1693 messageview_get_text_widget(): removed.
1694 * src/quote_fmt_parse.y: quote message even if msginfo is empty.
1695 * src/compose.[ch]: implemented the "Paste as quotation" feature.
1696 text_inserted(): new callback for "insert_text" signal.
1697 Add quote mark to the pasted text if Compose::paste_as_quotation
1702 * src/compose.c: if the Content-Type of a file is text/*, check
1703 its content and set the optimal Content-Transfer-Encoding (thanks
1708 * src/textview.c: textview_key_pressed(): pass key press event to
1709 main window to activate menu shortcuts (thanks to Alfons).
1713 * src/folder.c: folder_build_tree(): use strtoul() instead of atoi()
1714 for mtime to prevent flooring.
1717 imap_move_msgs_with_dest()
1718 imap_copy_msgs_with_dest(): fixed a bug that prevented multiple
1720 imap_parse_envelope()
1721 imap_cmd_envelope(): use RFC822.HEADER instead of ENVELOPE to get
1722 full information of messages and simplify the parser. Also fixed
1723 the bug that References header was ignored on threading.
1724 imap_parse_one_address()
1725 imap_parse_address(): removed.
1726 imap_get_header(): new. It reads the RFC822 header and returns
1727 a newly allocated string.
1728 * src/procheader.[ch]: changed procheader_parse() to
1729 procheader_parse_stream() and added different interfaces for it.
1733 * po/zh_TW.Big5.po: fixed a mistake that caused a crash.
1741 * src/inc.c: inc_get_uidl_table(): fixed a bug that garbage time
1742 could be inserted into the hash table.
1743 inc_write_uidl_list(): a minor code cleanup.
1744 * src/mainwindow.c: main_window_get_current_state():
1745 make the state unexecutable on an empty folder.
1746 * src/summaryview.c: summary_sort(): don't sort on an empty folder.
1747 * src/pop.c: minor code cleanups.
1751 * src/prefs_account.c: CREATE_RADIO_BUTTONS(): fixed a typo and
1752 corrected the behavior of the radio buttons.
1756 * implemented 'Delete messages after N days' feature for POP3.
1758 inc_get_uidl_table()
1759 inc_write_uidl_list(): moved the location of UIDL list file from
1760 RC_DIR/uidl-* to RC_DIR/uidl/*.
1761 Added received time for each UIDLs.
1762 src/main.c: main(): create RC_DIR/uidl/ directory.
1763 src/pop.[ch]: LOOKUP_NEXT_MSG(): delete expired messages here.
1764 Added recv_time to Pop3MsgInfo.
1765 src/prefs_account.[ch]: added an option for the number of days for
1774 * src/folder.c: folder_set_missing_folders(): fixed a bug that
1775 caused multiplication of special folders on startup if their
1777 * src/folderview.c: folderview_remove_mailbox_cb(): modified the
1782 * src/compose.c: compose_reply(), compose_forward(): reverted the
1783 last change since it causes lockup problem.
1787 * src/compose.c: compose_reply(), compose_forward(): don't autowrap
1789 compose_new_with_recipient(): workaround for initial XIM problem.
1793 * src/mainwindow.c: sort ascending / descending order can be
1794 specified with separated menu items.
1795 Added "View/Sort/Don't sort" menu item.
1796 * src/summaryview.[ch]: summary_sort(): added an argument for
1801 * implemented persistent sort order.
1803 folder_build_tree(): read 'sort_key' and 'sort_type' attributes.
1804 folder_write_list_recursive(): write sorting state.
1806 src/summaryview.[ch]: summary_show(): sort if required.
1807 select the top node on descending sort.
1808 Removed SummarySortType and sorting state variables from
1816 src/prefs_account.[ch]: enabled NNTP over SSL.
1817 * src/nntp.c: nntp_group(): issue MODE READER command and retry
1818 when GROUP command once failed (this seems to avoid problems on
1819 some broken news servers).
1823 * faq/it/*.html: corrected DOS linebreaks.
1824 * faq/*/*.html: changed ">" to ".
1828 * src/prefs_account.c: prefs_account_protocol_activated(): hide
1829 unnecessary frames in SSL tab.
1835 src/prefs_account.[ch]: enabled STLS command in POP3.
1836 * src/account.c: account_clist_set_row(): display TLS setting.
1840 * src/compose.c: compose_send_later_cb(): support redirect function.
1843 src/prefs_account.[ch]: enabled STARTTLS command in IMAP4.
1845 src/smtp.[ch]: use SSLType instead of SSLSMTPType.
1849 * src/utils.[ch]: make_dir(): wrapper for mkdir() and chmod().
1850 * src/compose.c: compose_create(): removed unrequired lines.
1854 * src/news.c: news_scan_group(): fixed a bug that set the wrong
1855 values in some cases.
1856 * src/prefs_account.c: corrected English in Advanced - Folder
1861 * src/textview.c: textview_show_message(), textview_show_part():
1862 fixed a bug that GtkSText *text pointed the incorrect object.
1863 textview_add_part(): freeze GtkSText while adding RFC822 headers.
1864 textview_show_part(): fixed a bug that couldn't display single
1865 part MIME message as text.
1869 * src/compose.c: compose_redirect_write_to_file(): correct the target
1870 for change_file_mode_rw(). Check if fclose() succeeded. Unlink
1871 incomplete file when an error occured.
1876 compose_create(): disable menus for draft on redirection mode.
1877 compose_redirect_write_to_file(): correct the error handling of
1879 * src/prefs_common.c: turned off the "Display recipient on `From'
1880 column if sender is yourself" option by default.
1884 * src/compose.[ch]: implemented 'Redirect' (aka Bounce) feature.
1885 Based on the implementation of the claws branch.
1886 compose_redirect(): create a new window and make it uneditable.
1887 compose_redirect_write_to_file(): copy headers and body of
1888 original message except for some.
1889 compose_redirect_write_headers(): add extra "Resent-*" headers.
1890 compose_create(): set menu sensitivity for redirection mode.
1894 * src/codeconv.c: conv_encode_header(): fixed a bug that unnecessary
1895 space is inserted between encoded string and the following folded
1896 one (thanks to Masahiro Tomita).
1900 * src/mainwindow.[ch]: some refactoring has been made.
1901 main_window_toggle_message_view(): moved summary_toggle_view_real()
1903 * src/messageview.[ch]: messageview_is_visible(): new.
1904 * src/summary_search.c
1905 src/summaryview.[ch]: SummaryView::msg_is_toggled_on: removed.
1906 Instead use messageview_is_visible().
1910 * src/mainwindow.c: added 'Expand/Collapse all threads' menu.
1911 * src/summaryview.[ch]:
1912 summary_expand_threads(), summary_collapse_threads(): new.
1916 * src/mainwindow.c: Fixed the behavior of
1917 '/View/Show or hide/Folder tree' and
1918 '/View/Show or hide/Message view' toggle menu.
1919 Removed '/View/Toggle summary view' menu and integrated the
1920 function into '/View/Show or hide/Message view'.
1921 main_window_set_widgets(): change the state of toggle menu items.
1922 * src/prefs_common.c: prefs_keybind_apply_clicked(): updated menurc
1927 * src/mimeview.c: mimeview_set_multipart_tree(): show single part
1928 MIME contents other than text as children of message/rfc822 part.
1930 procmime_mimeinfo_next(): modified for message/rfc822 part which
1931 content-type is single part MIME.
1932 procmime_scan_multipart_message(): fix for nested message/rfc822
1933 part. Corrected the size of the contents of message/rfc822.
1934 * src/textview.c: textview_show_part(): extract the contents of
1935 multipart/* and message/rfc822. Some code cleanups.
1936 textview_add_parts(): new. It adds the all parts under a part to
1938 textview_clear(): reset body_pos and cur_pos.
1942 * src/addr_compl.c: modified so that it behaves better.
1943 get_address_from_edit(): ignore comma inside of brackets.
1944 completion_window_apply_selection(): new. Only apply the current
1946 completion_window_accept_selection(): removed.
1947 address_completion_complete_address_in_entry(): minor code cleanup.
1948 don't replace address in entry here.
1949 completion_window_select_row(): always apply clist selection to
1951 completion_window_key_press(): don't apply selection here.
1955 * src/imap.c: imap_create_folder(): keep trailing directory separator
1956 to create a folder that contains sub folder.
1960 * src/foldersel.c: sort tree with case insensitive.
1961 * src/mainwindow.c: allsel_cb()
1962 src/messageview.c: messageview_select_all(): fixed 'Select all'
1964 * src/mainwindow.c: removed common and account prefs button from
1969 * src/compose.c: compose_account_option_menu_create(): check if
1978 * manual/ja/*: updated the Japanese manual (thanks to Yoichi Imai).
1979 manual/en/*: updated the English manual.
1981 faq/it/*: added German and Italian FAQ.
1984 faq/fr/*: updated FAQs.
1986 src/mainwindow.c: added German and Italian language.
1990 * src/prefs_account.c: turn off "receive at get all" option by default
1991 when creating an IMAP or News account.
1995 * src/imap.c: imap_scan_tree(): don't use namespace for prefix.
1996 * src/prefs_folder_item.c: show also identifier path.
1997 Made layout using table. Show uneditable entry using background
1999 * src/procmime.c: procmime_get_tmp_file_name(): generate safe
2004 * src/automaton.[ch]: added UI callback to Automaton.
2006 src/pop.c: use callback instead of calling inc_progress_update()
2008 pop3_getrange_uidl_recv(): don't fall back to LAST when 'get all'
2013 * src/folderview.c: properly sort abbreviated newsgroups.
2018 src/prefs_common.[ch]
2019 src/summaryview.c: added an option to specify the minimum length
2020 for abbreviated newsgroups name.
2024 * src/folderview.c: folderview_check_new(): skip unselectable folders.
2025 * src/summaryview.c: added 'Create filter rule' to the context menu.
2026 * src/imap.c: some code cleanups.
2027 imap_scan_tree_recursive(): get path separator for each calls.
2028 imap_get_path_separator(): new.
2032 * src/imap.[ch]: supported namespace for others/shared folders
2034 imap_parse_namespace(): parse also others/shared namespace.
2035 imap_find_namespace(): search also others/shared namespace.
2037 strchr_parenthesis_close(): return pointer to closing parenthesis.
2038 strsplit_parenthesis(): split parenthetic list into array of
2043 * src/procheader.c: procheader_date_parse(): fixed a bug that didn't
2044 parse date string like "Mon,6 May 2002 20:31:12 +0800".
2045 procheader_scan_date_string(): new. Separated string scanning
2046 part from procheader_date_parse().
2050 * src/summary_search.c: summary_search_execute(): unlock while
2051 selecting summary row (thanks to Martin Schaaf).
2052 * src/summaryview.c: summary_set_column_titles(): reversed the
2053 direction of the arrow so that it matches with Win/Mac style.
2057 * src/compose.c: compose_write_headers(): quote self address name
2058 if required. Some code cleanups. Don't override Newsgroups and
2059 Cc with custom headers.
2060 * src/imap.c: imap_add_msg(): return UID for appended message.
2061 * src/compose.c: compose_queue(): check if queue folder exists.
2062 * src/imap.c: QUOTE_IF_REQUIRED(): quote also other IMAP special
2064 imap_open(): removed an unrequired argument.
2068 * src/utils.[ch]: trim_string(): new. It trim characters longer than
2069 the specified length and adds "...".
2070 * src/folderview.c: trim folder name when displaying dialog.
2074 * src/imap.c: imap_create_folder(): don't add prefix for root INBOX
2076 * src/folderview.c: folderview_select()
2077 src/summary_search.c: summary_search_execute(): lock summary view
2078 while searching (thanks to Martin Schaaf).
2086 * sylpheed*.png: added new app icons by WAKAI Kazunao (thanks!).
2090 * src/summaryview.c: summary_show(): fixed a bug that didn't process
2092 * src/account.c: account_edit_prefs(): fixed a crash bug when account
2094 * src/prefs_account.c: prefs_account_apply(): display error dialog
2095 if account name is empty.
2096 * src/imap.c: changed some log_print() to debug_print() to reduce
2101 * src/mh.c: mh_get_new_msg_filename(): new. It returns the filename
2105 mh_do_move_msgs_with_dest()
2107 mh_copy_msgs_with_dest(): use mh_get_new_msg_filename().
2108 * src/utils.[ch]: added is_file_entry_exist() which returns TRUE
2109 if stat() succeeded.
2111 imap_fetch_msg(): SELECT mailbox before FETCH if required.
2112 imap_scan_folder(): set last_num using the value of UIDNEXT.
2113 imap_select(): return immediately if there is no need for SELECT.
2114 preserve the path of currently selected mailbox.
2115 imap_status(): added UIDNEXT.
2119 * src/folder.c: folder_item_scan(): removed the warning.
2120 * src/inputdialog.[ch]: input_dialog_combo(): added an argument for
2121 setting case sensitivity.
2125 * src/mainwindow.c: main_window_create(): restrict the minimum size.
2129 * src/compose.c: merged the new line-wrapping routine.
2130 join_next_line(): fixed a bug that didn't join multibyte
2132 get_indent_length(): modified enums and variable names.
2133 INDENT_CHARS: don't indent ':'.
2135 folderview_rename_folder_cb()
2136 folderview_delete_folder_cb(): support folder identifier.
2137 folderview_rm_imap_folder_cb(): integrated with
2138 folderview_delete_folder_cb().
2142 * src/folder.[ch]: folder_item_scan(): return -1 if scanning failed.
2143 * src/folderview.c: folderview_check_new(): abort checking if
2144 folder_item_scan() failed.
2148 * src/imap.c: imap_create_missing_folders(): create only INBOX and
2150 * src/prefs_folder_item.c: prefs_folder_item_set_dialog(): made the
2151 type of news folders unchangeable.
2152 prefs_folder_item_destroy(): use prefs_dialog_destroy().
2153 * src/prefs.[ch]: prefs_dialog_destroy(): new.
2157 * src/prefs_account.[ch]: added special folder setting to Advanced
2158 tab. Also moved "IMAP server directory" setting to there.
2159 * src/account.[ch]: account_get_special_folder(): new. It returns
2160 the optimal special folder for accounts.
2161 * src/compose.c: use account_get_special_folder().
2162 * src/prefs_folder_item.[ch]: new. Implemented folder property
2163 dialog, and the special folder settings (most of the functions in
2164 claws are not integrated yet, and the structure is slightly
2166 * src/folderview.c: enabled Property menu.
2170 * src/textview.c: IS_RFC822_CHAR(): make email parser also stop
2171 scanning when encountering separators ',' and ';'.
2175 * src/mainwindow.c: reorderd the menu a bit.
2176 * src/compose.c: made 'Ctrl-Enter' ignore some modifiers.
2177 compose_reply_set_entry(): made 'Reply to sender' work for
2182 * src/compose.c: compose_create(): set geometry hints to restrict
2183 the maximum size of window.
2184 * src/imap.c: imap_parse_list(): don't mark INBOX as \Noselect.
2185 imap_get_uncached_messages()
2186 imap_cmd_fetch(): ignore responses which don't include FETCH.
2190 * COPYING: re-licensed (removal of "NO-VIRUS CLAUSE" and addition of
2191 the clause for OpenSSL).
2195 * src/prefs_account.c
2196 src/smtp.[ch]: fixed a bug that didn't complie with OpenSSL enabled.
2202 src/session.[ch]: first reorganization of SMTP protocol handling.
2203 SMTPSession: new class which is a sub class of Session.
2204 smtp_session_new(): moved send_smtp_open() into this function.
2205 smtp_from(): moved SMTP AUTH calls into smtp_auth().
2206 smtp_auth(): use server response for SMTP AUTH method.
2207 smtp_ehlo(): read server response and set auth type flags.
2208 smtp_helo(): separated EHLO command.
2209 smtp_ok(): return the last server response if the buffer is
2211 * src/esmtp.[ch]: merged into smtp.[ch].
2212 * src/imap.c: imap_session_destroy_all(): use session_destroy().
2216 * src/imap.c: imap_open(): show warning message if IMAP4 session
2217 can't be established.
2221 * src/compose.c: made template able to be inserted into the current
2223 * src/mainwindow.c: moved some menu items under the submenu
2224 '/View/Show or hide'.
2229 src/inc.c: changed folder_find_item_from_path() to
2230 folder_find_item_from_identifier().
2232 src/prefs_filter.c: use folder_item_get_identifier() to specify
2237 * src/folder.[ch]: implemented "folder identifier" (and fixed a bug
2238 existed in claws' implementation).
2239 folder_find_from_name(): find Folder from name and type.
2240 folder_get_identifier(): return Folder id.
2241 folder_item_get_identifier(): return FolderItem id.
2242 folder_find_item_from_identifier(): find FolderItem from id.
2243 folder_get_type_string(): return folder type string.
2244 folder_get_type_from_string(): return FolderType from string
2245 (and fixed the wrong g_strcasecmp() usage).
2247 src/import.c: use folder_item_get_identifier() and
2248 folder_find_item_from_identifier().
2252 * src/imap.c: imap_parse_atom(): fixed a bug that cur_pos didn't
2253 point the correct address after reading the continuous line.
2254 imap_scan_folder(): set new number to 0 if unseen number is 0.
2255 imap_parse_flags(): don't add new and unread flag if \Seen flag
2257 * ac/Makefile.am: removed gpgme.m4 from MACROS.
2261 * fixed the old problem that couldn't add flags to currently opened
2264 compose_send(): update outbox after saving.
2266 compose_draft_cb(): use procmsg_add_flags().
2267 * src/folder.[ch]: added "opened" flag and "mark_queue" list to
2269 * src/main.c: send_queue(): send from all queue folders.
2270 * src/mainwindow.c: send_queue_cb(): send from all queue folders.
2272 procmsg_flush_mark_queue(): new. Write all queued flags into file.
2273 procmsg_add_flags(): new. Add specified flags to the folder.
2274 procmsg_send_queue(): added an argument to specify queue folder.
2275 procmsg_save_to_outbox(): use procmsg_add_flags().
2276 * src/summaryview.c:
2277 summary_show(): up the opened flag of FolderItem.
2278 summary_clear_list(): down the opened flag of FolderItem.
2279 summary_write_cache(): call procmsg_flush_mark_queue().
2283 * src/summaryview.[ch]: trim the tail of folder name and selected
2284 number on the status label if the space is not enough.
2288 * src/imap.c: imap_create_special_folder(): fixed a bug that didn't
2289 set SpecialFolderItemType when creating special folders under
2291 * ac/gpgme.m4: removed.
2293 * ac/missing/gdk-pixbuf.m4
2294 ac/missing/gettext.m4
2296 ac/missing/imlib.m4: added for convenience.
2300 * src/esmtp.c: esmtp_auth(): fixed a bug that some garbages are
2301 shown after the decoded challenge string. Fixed a memory leak.
2303 * src/compose.c: compose_draft_cb(): mark draft messages as read.
2304 * src/folderview.c: folderview_update_node(): disable emphasis
2305 for Outbox and Draft folders.
2309 * src/messageview.c: messageview_show(): fixed a memory leak.
2310 * src/summaryview.c: summary_save_as(): show error dialog if copy
2312 * src/about.c: about_show(): make the window active if it is already
2317 * src/compose.c: show confirmation dialog before sending if Subject
2319 compose_check_entries(): new.
2321 compose_send_later_cb(): use compose_check_entries().
2322 * src/imap.c: imap_parse_atom(): more fix for parsing responses.
2326 * src/imap.c: imap_parse_atom(): fixed a bug that didn't parse the
2327 responses with continuous line correctly, and fixed a memory leak.
2331 * src/undo.c: undo_insert_text_cb(): fixed a crash bug if the text
2333 * src/gtkstext.c: gtk_stext_button_press(): cancel current selection
2334 after pasting with middle button to prevent the selection growth.
2339 folderview_rename_folder_cb()
2340 folderview_delete_folder_cb(): modify filter rules only if the
2341 target folder is in the default mailbox.
2342 * src/utils.c: get_abbrev_newsgroup_name(): removed a redundant
2349 src/prefs_common.c: changed 'Tool' menu to 'Tools'.
2350 Moved 'Delete duplicated messages' under 'Tools'.
2354 * src/folderview.c: SET_SPECIAL_FOLDER(): keep the same parent
2356 * src/imap.c: imap_create_special_folder(): fixed a crash bug
2357 when folder creation failed, and re-try to create folders under
2359 imap_scan_tree_recursive(): don't automatically add namespace
2360 prefix if it's INBOX. Search also under the INBOX for special
2362 * src/foldersel.c: SET_SPECIAL_FOLDER(): keep the same parent
2367 * src/utils.[ch]: get_abbrev_newsgroup_name(): new. It returns the
2368 abbreviated newsgroup name.
2369 * src/folderview.c: folderview_update_node(): display newsgroups
2370 with abbreviated name if name and path is the same.
2371 * src/summaryview.c: summary_status_show(): show the newsgroup with
2377 src/folderview.c: changed the label 'Draft' to 'Drafts'.
2378 * src/imap.c: changed the directory name 'Draft' to 'Drafts'.
2379 imap_create_missing_folders(): fixed the wrong assignment of
2380 Queue folder to draft.
2384 * enabled Sent / Draft / Queue folders on IMAP server.
2385 * src/compose.c: compose_queue(), compose_draft_cb(): use account's
2386 queue and draft folder if they exist.
2388 imap_create_trash(): removed.
2389 imap_create_special_folder(): new. Generalized imap_create_trash().
2390 imap_create_missing_folders(): automatically create missing folders.
2391 imap_is_msg_changed(): added the dummy method.
2392 imap_scan_tree_recursive(): search also Sent, Draft and Queue
2393 folders. Minor code cleanups.
2394 imap_parse_envelope(): check for null strings.
2395 src/procmsg.c: procmsg_read_cache(): add F_QUEUE or F_DRAFT flag
2396 for messages on IMAP folder.
2400 * src/compose.c: compose_send(): use account's outbox folder
2402 * src/procmsg.[ch]: procmsg_save_to_outbox(): changed the API so
2403 that the outbox can be specified.
2407 * src/compose.c: don't save to outbox when messages are queued.
2408 compose_save_to_outbox(): moved to procmsg.c.
2409 * src/procmsg.[ch]: procmsg_send_queue(): save to outbox when
2411 procmsg_save_to_outbox(): new. Removes the queueing headers if
2412 needed, and adds the given file to the outbox.
2416 * src/compose.c: compose_wrap_line(): treat '|' also as quote char.
2417 get_indent_length(): treat ':' and '#' also as quote char, and
2418 cleaned up using strchr().
2422 * src/mainwindow.c: modified some menu items.
2426 * src/defs.h: changed OUTBOX_DIR from "outbox" to "sent"
2427 (current "outbox" will be kept until rescan).
2428 * src/folder.c: folder_set_missing_folders(): create the missing
2431 src/folderview.c: changed 'Outbox' to 'Sent'.
2432 * src/main.c: call folder_set_missing_folders().
2433 * src/mh.c: mh_scan_tree(): create missing folders.
2434 * src/summaryview.c: summary_set_menu_sensitive(): fixed a bug that
2435 didn't set the menu sensitivity correctly.
2440 src/imap.[ch]: implemented folder renaming on IMAP (thanks to Mio).
2441 folderview_rename_folder_cb(): reopen the current folder when
2442 the ancestor is renamed.
2443 imap_rename_folder(): new method implementation.
2445 imap_rename_folder_func(): new.
2446 imap_remove_folder(): remove also the cache directory.
2450 * src/imap.c: implemented locale encoding <-> modified utf-7
2451 conversion, and supported i18n of folder name (thanks to Suzuki
2453 imap_path_separator_subst(): handle the escape characters of
2455 imap_modified_utf7_to_locale()
2456 imap_locale_to_modified_utf7(): new.
2457 imap_create_trash(): modified so that it create the Trash folder
2458 to the correct location when imap directory is specified.
2459 imap_get_real_path(): removed debug print.
2463 * src/socket.c: implemented timeout for DNS lookup and connect().
2464 sock_connect_by_hostname(): timeout support and code cleanup.
2465 sock_connect_with_timeout(): new.
2466 sock_peek(): implemented SSL peek.
2470 * src/messageview.c: messageview_show(): display single-part
2471 text/html messages with the normal text view.
2485 src/prefs_customheader.c
2486 src/prefs_display_header.c
2501 src/xml.c: added 'b' to the option of all fopen().
2509 * src/ssl.[ch]: match its coding style.
2510 * src/compose.c: compose_send_later_cb(): fixed a bug that failed
2514 faq/en/sylpheed-faq*.html
2516 faq/es/sylpheed-faq*.html
2518 faq/fr/sylpheed-faq*.html
2524 src/manual.[ch]: added FAQs in English, Spanish and French.
2528 * manual/en/sylpheed*.html: updated to the latest version.
2533 src/mgutils.c: include string.h to remove warning about strlen()
2547 src/summaryview.c: added break to the last label of switch to
2548 prevent the 'deprecated use of label at end of compound statement'
2550 * src/rfc2015.c: passphrase_cb(): fixed the type of r_hd.
2554 * src/inc.[ch]: preserve the pointer to IncProgressDialog to the
2556 inc_cancel_all(): new. It cancels the all current incorporation.
2557 * src/mainwindow.c: added 'Cancel receiving' menu.
2558 * src/textview.c: a minor fix for single-part MIME messages, and
2559 a bit of cleanup for textview_write_body().
2563 * src/inc.c: inc_write_uidl_list(): fixed a bug that lost UIDL
2564 information if any errors occured before issuing UIDL command.
2565 src/inc.h: added uidl_is_valid to Pop3State.
2566 src/pop.c: set uidl_is_valid to TRUE if UIDL becomes valid.
2574 * src/mimeview.c: mimeview_create(): set the initial notebook page
2576 * src/folderview.c: folderview_selected(): scroll the view if the
2577 selected row is hidden.
2578 * src/prefs_filter.c: prefs_filter_register_cb(): scroll the view
2579 and select the added row.
2580 * src/summaryview.c: fix threading for null message ids.
2584 * src/textview.c: textview_show_message(): follow message/rfc822
2586 textview_add_part(): add a caption before the attached text files.
2587 textview_show_header(): don't add the newline.
2588 * src/messageview.c: enabled message search also in MIME mode.
2592 * src/messageview.c: messageview_show(): set header state of
2593 MimeView's TextView, too.
2594 * src/mimeview.c: mimeview_show_message(): call
2595 textview_show_message() to display message.
2596 * src/textview.c: textview_add_part(): new. It adds the content
2597 of message part without clearing the view.
2598 textview_show_message(): display all parts with appropriate
2600 textview_write_body(): separated from textview_show_part().
2605 src/prefs_common.c: added ISO-8859-15 to the codesets for
2606 displaying and sending.
2607 * src/codeconv.c: conv_codeset_strdup(): return NULL if code
2608 conversion failed, and made caller deal with it.
2609 * src/compose.c: compose_write_to_file(): show error dialog when
2610 code conversion failed, and let user select whether to send it
2612 * src/textview.c: textview_write_line(): show the original string
2613 if code conversion failed.
2617 * src/inc.c: get_spool(): fixed a bug that failed to unlock mbox
2618 if copy_mbox() failed (thanks to Alexander Kabaev).
2619 * src/prefs_account.[ch]: added separate user ID / password setting
2621 * src/send.c: send_message_smtp(): use separate user ID / password
2622 for SMTP AUTH if it is specified.
2627 src/pop.[ch]: refactored the UIDL management.
2628 store the information of messages into the array of Pop3MsgInfo
2629 structure, and do full scanning of not retrieved messages.
2635 src/mainwindow.c: set WMCLASS for window/dialog.
2636 * src/codeconv.c: conv_codeset_strdup(): return source string
2637 when jconv_alloc_conv() failed.
2641 * src/mh.c: mh_scan_tree_recursive(): changed the hardcoded directory
2648 src/summaryview.c: implemented the new notebook tab interface for
2650 * src/textview.[ch]: fixed line space related glitches.
2654 * src/prefs_filter.c:
2655 prefs_filter_rename_path()
2656 prefs_filter_delete_path(): fixed a crash when flt->dest was NULL.
2660 * src/recv.[ch]: cancel data receiving if RecvUIFunc returns FALSE.
2661 * src/pop.c: pop3_retr_recv(): fixed false 'No space' when cancelled
2663 * src/inc.c: inc_pop3_recv_func(): abort data receiving when
2664 cancelled, and fixed potential crash bug.
2665 * src/grouplistdialog.c: enabled cancelling of data receiving.
2666 * src/news.c: news_get_group_list(): destroy current session if
2671 * src/manage_window.[ch]: fixed a bug that caused crash when
2672 the main window was hidden.
2673 MANAGE_WINDOW_SIGNALS_CONNECT(): new macro.
2674 Monitor "unmap_event", "destroy" events.
2681 src/grouplistdialog.c
2685 src/message_search.c
2689 src/prefs_customheader.c
2690 src/prefs_display_header.c
2692 src/prefs_template.c
2693 src/summary_search.c
2694 src/summaryview.c: use MANAGE_WINDOW_SIGNALS_CONNECT() macro to
2695 connect signals for window management.
2699 * src/prefs_account.[ch]: added receive size limit option.
2700 * src/pop.c: skip messages larger than the limit size.
2701 LOOKUP_NEXT_MSG(): new macro.
2702 * src/compose.c: compose_attach_append(): check whether the file
2707 * src/rfc2015.c: commented out dump_mimeinfo() and dump_part().
2708 changed g_message()'s to debug_print() and g_warning().
2709 rfc2015_decrypt_message(): fixed a bug that duplicated message
2710 parts when decryption was failed/cancelled. And made some code
2712 * src/passphrase.c: made the dialog transient.
2713 * src/prefs.c: prefs_config_parse_one_line(): removed debug_print().
2718 src/procmsg.[ch]: fixed a bug that failed to parse multipart
2719 messages if GPGME was enabled.
2720 * src/rfc2015.c: commented out copy_gpgmedata_to_temp() which
2722 * src/prefs_account.c: prefs_account_privacy_create(): modified
2723 the vertical spacing.
2727 * src/menu.[ch]: menu_set_sensitive_all(): new.
2728 menu_set_insensitive_all(): made it a wrapper for
2729 menu_set_sensitive_all().
2730 * src/prefs_account.c:
2731 prefs_account_open()
2732 prefs_account_protocol_set_optmenu(): made the protocol type
2733 unchangeable after creating an account.
2734 * src/compose.c: compose_attach_parts(): traverse MIME tree to
2735 extract all attathed files from nested multipart MIME message.
2739 * src/procmsg.[ch]: procmsg_get_mark_sum(): added arguments to
2740 obtain minimum/maximum number, and to specify first number
2743 src/inc.c: enabled new message checking on news folder.
2744 * src/news.c: news_scan_group(): implemented. Guess new/unread
2745 message number from the response of GROUP command and the mark
2747 news_select_group(): return the total/first/last number.
2748 * src/prefs_account.c: prefs_account_receive_create(): modified
2749 the text of the 'Get all' check button.
2753 * src/account.c: made 'Get all' checkbox available for IMAP4 and
2755 * src/inc.c: corrected the argument of folderview_check_new().
2756 * src/prefs_account.c: modification for the "`Get all' checks for
2757 new mail on this account" checkbox.
2761 * src/folderview.[ch]:
2762 folderview_rescan_tree(), folderview_rescan_all(): renamed from
2763 folderview_update_tree() and folderview_update_all().
2764 folderview_update_all_node(): removed.
2765 folderview_check_new(): new. If the argument is NULL, it checks
2766 all local folders. If the arguments is specified, it checks
2767 the (local and remote) folder.
2770 inc_all_account_mail(): check also IMAP4 account.
2775 folderview_rename_folder_cb()
2776 folderview_delete_folder_cb(): modify the filter rules when folder
2778 * src/prefs_filter.[ch]:
2779 prefs_filter_rename_path(): new. It renames the destination paths
2781 prefs_filter_delete_path(): new. It deletes the filter rules if
2782 the destination paths matched.
2783 * thanks to Neill Miller for above.
2787 * src/compose.c: inherit attached files when forwarding or reediting
2788 (rewrote the code in claws branch).
2789 compose_attach_parts(): new. It extracts and attaches the files
2790 in the given message.
2791 compose_attach_append(): chnaged the types of arguments.
2792 * src/messageview.c: messageview_show(): moved the GPG decryption
2794 * src/procmsg.[ch]: procmsg_open_message_decrypted(): new.
2802 * src/summary_search(): summary_search_execute(): scroll the view
2803 when message view is hidden.
2807 * src/foldersel.c: foldersel_set_tree(): made different type of
2808 folders selectable in moving mode.
2809 * src/folderview.[ch]: folderview_update_msg_num(): compare the
2810 numbers with the CTree's labels, and don't update folder_item here.
2811 * src/imap.c: imap_move_msg(), imap_move_msgs_with_dest():
2812 implemented moving between different type of folders.
2813 * src/mh.c: SET_DEST_MSG_FLAGS(): new macro.
2814 mh_do_move(), mh_do_move_msgs_with_dest(): new (renamed previous
2815 mh_move_msg() and mh_move_msgs_with_dest()).
2816 mh_move_msg(), mh_move_msgs_with_dest(): implemented message
2817 moving between different type of folders.
2818 mh_copy_msg(), mh_copy_msgs_with_dest(): some code cleanups.
2819 * src/summaryview.c: summary_status_show(): update folder_item
2821 * po/POTFILES.in: removed reference to headerwindow.c.
2822 * src/summaryview.c: summary_step(): fixed the behavior on the
2823 head and tail of the list.
2827 * src/mainwindow.c: main_window_set_menu_sensitive(): set 'Show
2828 all header' toggle state from the property of the TextView.
2829 * src/summaryview.[ch]: made 'All header' toggle switch.
2830 Prohibited unnecessary menu update.
2831 summary_select_node(): added the argument 'do_refresh'.
2836 * src/utils.c: strsplit_with_quote(): remove quotation characters
2837 in the function (fix composer's external editor problem) (thanks
2838 to Stefaan A Eeckels).
2839 * src/mainwindow.[ch]: made 'Show all header' toggle switch.
2840 main_window_menu_callback_block()
2841 main_window_menu_callback_unblock(): new.
2842 main_window_set_menu_sensitive(): set the toggle status of
2844 show_all_header_cb(): read the status of toggle menu item.
2845 * src/mainwindow.[ch]: made 'Thread view' toggle switch.
2846 * src/prefs_common.c: prefs_keybind_apply_clicked(): removed
2851 * src/imap.c: imap_add_msg(): fixed a bug that didn't replace
2852 the path separator (thanks to Sergey Vlasov).
2853 * src/gtkutils.c: gtkut_editable_get_selection(): return NULL
2854 if the length of selection is zero.
2855 Fixed the assertion.
2856 * src/utils.c: str_open_as_stream(): return immediately if
2857 the length of str is zero.
2858 * src/headerwindow.[ch]: removed.
2860 src/inc.c: removed stale thread support codes.
2864 * src/procmsg.c: procmsg_open_message(): modified so that it
2865 returns the stream of decrypted message file if it exists
2866 (this fixes the failure of gpg decryption in messageview.c).
2876 src/prefs_template.c
2878 src/quote_fmt_parse.y
2880 src/utils.[ch]: if the part of the message text is selected, use
2881 it for quoted text instead of the entire message body (thanks to
2883 src/utils.[ch]: str_open_as_stream(): new. It returns an
2884 temporary stream for the given string.
2885 * src/main.c: added "--send" command line option.
2886 * src/compose.c: compose_reply_set_entry(): add From address to
2887 Cc if Reply-To and to_all are both specified.
2888 * Makefile.am: correct the Source: line in the RPM spec file in
2893 * src/procmsg.c: procmsg_open_message(): fetch message if the cache
2895 * src/foldersel.[ch]: foldersel_folder_sel(): added an argument
2896 that specifies the folder selection type.
2907 src/prefs_customheader.c
2909 src/summaryview.c: made it compile with C compilers other than gcc
2910 (thanks to Shawn Houston).
2914 * src/imap.c: imap_copy_msgs_with_dest(): fixed a bug on traversing
2916 * src/prefs_common.c: made the key binding setting separate dialog.
2917 * src/addressbook.c: addressbook_format_address(): add "" around
2918 the display name if it contains comma (thanks to Satoshi Watanabe).
2919 * src/addr_compl.c: get_complete_address(): add "" around the
2920 display name if it contains comma.
2921 get_address_from_edit(): handle the quotation character correctly.
2922 * src/addr_compl.c: get_complete_address()
2923 src/addressbook.c: addressbook_format_address(): fixed a bug that
2924 caused wrong text processing if the display name is empty.
2929 * src/compose.c: compose_exec_ext_editor_real(): replaced
2930 g_strsplit() with strsplit_with_quote().
2932 src/folderview.c: folderview_drag_motion_cb(): minor code cleanups.
2934 folderview_drag_motion_cb()
2935 folderview_drag_received_cb(): allow dropping into IMAP4 folder.
2936 * src/utils.c: get_file_size_as_crlf(): use fgets() instead of
2940 imap_copy_msgs_with_dest(): use imap_add_msg() if the source
2941 of the message is different from the current mailbox.
2942 Return the correct value.
2943 imap_cmd_append(): properly implemented the APPEND command.
2948 src/messageview.[ch]
2949 src/summaryview.[ch]
2950 src/textview.[ch]: show all headers in the message view, and don't
2951 use the header window anymore.
2953 src/prefs_common.c: changed the default shortcut of 'compose new
2956 src/summaryview.[ch]: summary_display_msg_selected(): new.
2957 Show the selected message if 'Show all header' is selected.
2959 src/sourcewindow.c: changed some procmsg_get_message_file_path()
2960 to procmsg_get_message_file() to be sure the message is
2962 * src/folderview.c: folderview_drag_motion_cb(): allow DnD from
2963 any folder to MH folder.
2964 folderview_drag_received_cb(): copy messages instead of moving
2965 if the source folder is news or IMAP.
2967 src/summaryview.c: allow copy from news folder.
2971 * src/prefs_common.c: prefs_other_create(): modified the design
2972 of the external command settings.
2973 prefs_keybind_apply_clicked(): made the Mew / Wanderlust keybind
2974 preset closer to the original.
2975 Added Mutt keybind preset.
2976 Also change the compose keybinds.
2977 * src/compose.c: modified some menu shortcuts.
2978 * src/codeconv.c: modified the locale_table for Thai encoding.
2982 * src/Makefile.am: added $(GPGME_CFLAGS) to INCLUDES.
2983 * src/prefs_common.c: prefs_interface_create(): modified the
2984 description for menu shortcut.
2988 * src/gtkutils.[ch]: added gtk_stext_clear().
2991 src/summaryview.[ch]: enabled multiple forwarding.
2992 * src/summaryview.c:
2993 summary_set_marks_selected(): set marks for all selected row.
2994 summary_reply(): moved from summary_reply_cb().
2995 * compose.[ch]: compose_forward(): modified so that it receives
2997 * src/mainwindow.c: cleanup for reply processing.
2998 * src/summaryview.c: summary_reply(): fixed a memory leak.
2999 summary_key_pressed(): removed hardcoded mark / mark as unread
3002 src/prefs_common.c: added mark / mark as unread shortcuts to
3007 * src/compose.c: compose_wrap_line_all(): wrap quoted part even
3008 if prefs_common.linewrap_quote is not set (it is only for
3009 auto-wrapping on reply).
3010 * src/prefs_account.c: prefs_account_open(): initialize tmp_ac_prefs
3011 when creating a new account.
3012 * src/mh.c: mh_get_msg_list(): use also st_ctime to detect
3014 * src/prefs_common.c: prefs_interface_create(): modified the
3015 description of key binds selector.
3019 * src/mimeview.c: fixed multiple dialog / moving by correcting
3020 button / key event processing.
3022 src/textview.c: pass some key press events to MimeView in MIME
3024 * src/prefs_filter.c: fixed a bug that didn't set the order of
3026 * src/prefs_common.c: prefs_keybind_apply_clicked(): fixed
3027 empty_menurc string.
3032 src/prefs_common.c: reorganized the menu shortcuts.
3033 Added 'View - Toggle summary view'.
3034 * src/summaryview.[ch]: summary_toggle_view(): made it public
3036 * src/prefs_common.[ch]: swapped the position of 'Shortcut key'
3038 * src/importldif.c: imp_ldif_delete_event(): fixed segfault when
3039 closing the dialog with window manager (in more appropriate way).
3040 * src/imageview.[ch]
3042 src/mimeview.c: fixed wrong scrolling position when switching
3043 between text and image parts. Also free the unrequired image
3044 (thanks to Sergey Vlasov).
3045 * src/prefs_common.c: disabled 'Go to inbox after receiving new mail'
3050 * src/prefs_common.c: implemented shortcut quick changer.
3051 * src/folderview.c: folderview_key_pressed()
3052 src/summaryview.c: summary_key_pressed(): removed some hardcoded
3058 procmime_get_mime_type()
3059 procmime_get_mime_type_table(): made the MIME type search case
3062 gtk_stext_delete_line(): delete newline on empty line.
3063 gtk_stext_delete_to_line_end(): delete newline if cursor is on
3065 (thanks to Yasuzaki Masayoshi.)
3070 src/gtkstext.[ch]: removed the hardcoded shortcuts in GtkSText,
3071 and made them customizable.
3072 * src/utils.[ch]: added get_file_size_as_crlf() which returns
3073 the file size when converting LF to CR+LF.
3077 * src/compose.c: enabled 'Ctrl-Enter' or
3078 'Ctrl-(other modifier keys)-Enter' shortcut that didn't work
3080 * src/gtkstext.c: disabled some Emacs key bindings.
3081 gtk_stext_key_press(): don't extend selection when Shift-Enter
3082 is pressed to prevent the disapperance of cursor.
3083 * src/summaryview.c: summary_select_next_unread(): added the button
3084 to search unread message again from the beginning to the dialog.
3085 * src/folderview.c: folderview_key_pressed(): go to next unread
3086 folder if space key is pressed on the empty folder.
3087 Move CTree focus before selecting row.
3091 * src/defs.h: modified the XLFD of default fonts.
3092 * src/textview.c: textview_create(): fixed a bug that caused
3093 segfault if font couldn't be loaded.
3095 src/grouplistdialog.c: compare subscribed groups with path.
3096 * src/prefs_filter.c: changed 'Operator' to 'Condition'.
3100 * src/compose.c: compose_wrap_line_all(): fixed wrapping crash
3101 when URL is wider than wrapping margin.
3103 src/prefs_filter.[ch]
3104 src/summaryview.[ch]: added "Create filter rule" function based
3105 on the patch from Luca Rosellini.
3106 * src/summaryview.c: summary_filter_open(): added X-List and
3107 X-Mailing-list to the automatically detected headers.
3111 * configure.in: support Mac OS X (Darwin).
3115 * src/prefs_filter.c: use inc_(un)lock() instead of
3116 inc_autocheck_timer_{remove|set}().
3117 * src/summaryview.c: summary_sort(): use gtk_ctree_sort_recursive()
3118 instead of gtk_ctree_sort_node() so that messages within threads
3120 * src/procmsg.c: procmsg_read_mark_file(): fixed a bug that the
3121 target of sizeof was wrong and caused crash on Alpha architecture
3122 (thanks to Motonobu Ichimura).
3127 foldersel_gnode_func(): made the names of special folders
3129 foldersel_set_tree(): move the special folder to the top.
3130 * src/inputdialog.[ch]: input_dialog_query_password(): new.
3134 src/send.c: use input_dialog_query_password() instead of their
3135 own query functions.
3139 * src/defs.h: modified the default font.
3143 src/news.[ch]: moved the class definition and some methods to
3144 the proper location.
3148 * src/mimeview.c: mimeview_save_as()
3149 src/summaryview.c: summary_save_as(): put the default filename
3150 based on the subject.
3151 * src/utils.[ch]: added subst_chars() and subst_for_filename()
3152 which substitute some special characters with underscore.
3153 * src/filesel.c: filesel_select_file(): select the default filename.
3158 INSTALL.jp: added the description and the URL for libjconv.
3159 * src/mainwindow.c: menu entries cleanup.
3165 src/about.c: modified the copyright year.
3166 * src/gtkstext.h: added the notice for modification by the Sylpheed
3172 INSTALL.jp: added the URL for compface.
3180 * src/headerwindow.c
3183 src/sourcewindow.c: set wmclass when creating windows.
3187 * src/compose.c: compose_wrap_line_all(): fixed the bug that
3188 caused infinite loop when wrapping certain patterns of quoted text.
3192 * src/imap.c: imap_parse_envelope(): put the assertion after
3193 imap_parse_address() to prevent segmentation fault.
3198 src/mainwindow.c: modified some labels of menu items.
3199 * src/ldif.c: put the return value of fgetc() in a gint.
3200 * src/importldif.c: don't brace null strings with _().
3201 * src/compose.c: moved the position of Subject entry to the last.
3202 Reorganized the menu.
3203 compose_draft_cb(): added 'keep editing after saving to draft'
3208 * src/mainwindow.c: reorganization of main menu. Removed 'Summary'
3209 menu. Moved 'Help' menu to just the right of 'Configuration'.
3210 Removed 'File - Close' menu item.
3214 * src/mainwindow.c: some menu reorganization.
3215 * AUTHORS: updated. Added more contributors.
3216 * src/account.c: account_row_moved(): new. Moves displayed row to
3217 the appropriate position when up / down button are pressed.
3218 account_clist_set(): move displayed row to the appropriate position.
3220 src/mainwindow.c: set title and wmclass when creating windows.
3224 * src/gtkstext.c: fixed a bug that didn't show block cursor
3225 correctly. Removed unnecessary GdkGC copy. Fixed cursor
3230 src/undo.c: modified to use GtkSText.
3231 * src/menu.h: added #include <gtk/gtkmenu.h>.
3236 configure.in: added XIM checking for GTK+.
3237 * src/gtkstext.[ch]: new. Copied GtkText in GTK+ and renamed.
3241 * src/filter.c: added #include <sys/types.h>.
3245 * src/template.c: template_write_config(): fixed a typo.
3246 * src/compose.c: toolbar_linewrap_cb(): call compose_wrap_line_all().
3248 src/prefs_filter.c: supported regular expression (thanks to
3250 * src/undo.c: undo_paste_clipboard_cb(): fixed a bug that broke
3251 undo state when pasted clipboard was empty.
3252 undo_check_size(): use g_list_last().
3254 undo_redo(): fixed NULL checking and made a bit of optimization.
3256 * src/prefs_common.c: changed the default value of linewrap length
3261 * reorganization of pixmap management.
3262 * src/stock_pixmap.[ch]: new. This module manages all static pixmaps.
3263 * modified every files which directly use pixmaps data to use
3265 * src/undo.[ch]: renamed undo_set_undo_change_funct() to
3266 undo_set_change_state_func(), and changed its argument from
3267 GtkWidget* to gpointer.
3268 undo_merge(): code cleanup.
3269 * src/compose.c: renamed compose_set_undo() to
3270 compose_undo_state_changed().
3274 * src/account.c: account_find_from_address(): made it case
3276 * src/addressbook.c: addressbook_create(): set wmclass.
3277 * src/compose.c: compose_insert_file(): supported DOS/Win/Mac line
3280 src/ldif.[ch]: merged from the claws branch.
3281 * src/importldif.c: removed some warnings.
3282 imp_ldif_field_list_toggle(): fixed button checking.
3283 imp_ldif_dialog_create(): minor layout fix.
3284 * src/ldif.c: removed some warnings.
3286 INSTALL.jp: updated confirmation list.
3289 vcard_test_read_file(): fixed a memory leak of tagtemp.
3290 Some code cleanups (decreasing the indent level).
3293 src/syldap.[ch]: disabled runtime library checking because JPilot
3294 and LDAP libraries are linked on the build time, and the program
3295 doesn't execute without them anyway.
3297 src/addrindex.c: changed "J-Pilot" to "JPilot".
3298 Removed warning for atoi().
3302 * src/procmsg.c: procmsg_empty_trash()
3303 src/mainwindow.c: main_window_empty_trash(): empty trash only if
3304 it contains some messages.
3305 * src/imap.c: search_array_str(): new.
3306 imap_status(): fixed a bug that didn't parse the command response
3311 * merged undo function (by Jens Oberender).
3312 * src/undo.[ch]: new.
3313 undo_insert_text_cb(): fix for multibyte characters (obtain the
3314 number of letters instead of bytes).
3315 * src/compose.[ch]: added the code for undo.
3316 * src/prefs_common.[ch]: added the interface for setting undo level.
3320 * src/compose.c: compose_template_apply()
3321 src/prefs_template.c: prefs_template_clist_set_row()
3322 src/template.c: template_write_config(): don't replace To: and
3323 Subject: entry in composition window if they are empty.
3331 * src/folderview.c: folderview_drag_motion_cb(): fixed a DnD bug.
3332 * src/ldif.c: ldif_get_line(): ignore CR.
3333 * src/mimeview.c: mimeview_show_message(): search also text/html
3334 for first text part.
3338 * src/prefs_account.c: prefs_account_save_config_all(): fixed a bug
3339 that didn't update accountrc if account_list == NULL (thanks to
3344 * src/utils.h: added the macro Xstrcat_a() that concatenates
3345 two strings and return alloca'd string.
3346 * src/imap.c: imap_scan_tree_recursive(): fixed a bug that didn't
3347 handle folder name which includes some spaces correctly
3348 (based on the patch from Willem van Engen (thanks!)).
3349 * src/compose.c: compose_wrap_line_all(): fixed the crash when
3350 wrapping long lines if linewrap quotation is disabled and
3351 a word spanning more than one line.
3355 * applied the Tobias' patch with modification (thanks!).
3357 imap_msg_set_perm_flags()
3358 imap_msg_unset_perm_flags(): new. They set permanent flags to
3361 src/summaryview.c: set flags on IMAP server when flags are changed.
3365 * src/gtkutils.[ch]: gtkut_container_remove(): new. It's a wrapper
3366 of gtk_container_remove() for workaround of a bug in
3367 Gtk{Text,Entry} (thanks to Sergey Vlasov).
3373 src/textview.c: replaced gtk_container_remove() with
3374 gtkut_container_remove(), and removed previous partial fix.
3378 * src/prefs_account.c: prefs_account_apply(): fixed a bug that
3379 checked user ID on "local", but didn't on IMAP4.
3380 * src/imap.c: imap_session_get(): fixed a crash bug when
3381 rfolder->session == NULL.
3382 * Makefile.am: changed the arguments of tar from 'chojf' to
3384 * src/summaryview.c: summary_toggle_view(): disclaim the selection
3385 of textview before removing vpaned.
3389 * src/messageview.c: messageview_change_view_type(): disclaim the
3390 selection before removing textview. This solves the mysterious
3391 copy-paste disability (thanks to Melvin Hadasht).
3392 * src/textview.c: textview_set_font(): use
3393 gtk_editable_claim_selection() instead of
3394 gtk_editable_select_region().
3398 * src/prefs_template.c: prefs_template_window_create(): supported
3399 address completion on the To: entry.
3404 folder_count_total_msgs()
3405 folder_count_total_msgs_func(): use g_node_traverse() to traverse
3410 * src/compose.c: fixed a bug that empty body was refused.
3411 * src/prefs_template.c: fixed a bug that didn't set To: entry
3412 correctly. Display error dialog if format is illegal.
3413 * src/prefs_common.c
3415 src/quote_fmt_parse.y: changed parenthesis "( )" to curly braces
3416 "{ }" to prevent confusion on using parenthesis.
3417 * src/html.c: html_get_parenthesis(): ignore CSS / script stuff.
3421 * src/prefs_template.c: added colon to the header labels.
3426 src/prefs_template.c
3427 src/template.[ch]: added To field to the template.
3431 * src/textview.c: textview_show_part(): use first found
3432 message/rfc822 header.
3433 * src/folderview.c: added "Search messages..." to the context menu.
3434 * src/prefs_common.c: prefs_quote_description_create(): added
3435 description for characters which need to be escaped.
3439 * src/compose.c: compose_wrap_line_all(): more merging from claws.
3440 GET_CHAR(): renamed GET_TEXT() and made it more generic.
3441 Modified compose_wrap_line() and compose_wrap_line_all() to use
3443 * src/textview.c: textview_show_part(): show the header of nested
3444 RFC822 attachment correctly.
3449 src/main.c: added --status option to get new, unread and total
3450 message count from a running Sylpheed (merged from claws).
3451 prohibit_duplicate_launch(): output '\n' only once.
3456 src/gtkutils.[ch]: merged the new wrapping function.
3457 gtkut_text_str_compare_n()
3458 gtkut_text_str_compare()
3459 gtkut_text_is_uri_string(): backport from the GtkSText in the
3460 claws branch, and made modification.
3461 * src/prefs_template.c
3462 src/template.[ch]: added Subject to the template.
3466 * src/compose.c: compose_write_headers(): added missing parenthesis
3467 that generated invalid custom header (thanks to Masaaki Noro).
3468 Allow Sender: custom header.
3472 * src/procheader.c: procheader_date_parse(): workaround for
3473 RFC-incompliant Date header.
3477 * src/addrbook.c: removed redundant functions, and fixed generation
3478 of spurious address book file names.
3479 * src/addrindex.c: V-Card -> vCard.
3483 * src/textview.c: get_email_part(): replaced isalnum() with
3484 the macro IS_ASCII_ALNUM() which restricts the range of
3485 characters to 7bit ASCII (thanks to Shimamoto).
3486 * src/utils.c: remote_tzoffset_sec(): workaround for malformed
3491 * src/textview.c: textview_show_part(): show headers on nested
3496 * src/imap.c: imap_session_get()
3497 src/news.c: news_session_get(): fixed segfault when reconnection
3499 * src/grouplistdialog.c: removed redundant code, and expand nodes
3500 that doesn't match the pattern.
3504 * src/compose.c: modified so that it sends message when any of
3505 To:, Cc:, Bcc:, or Newsgroups: fields have valid recipient.
3506 compose_check_for_valid_recipient(): new.
3507 * src/grouplistdialog.c: improved the UI.
3508 Added appropriate description and search button.
3509 Search doesn't get group list again.
3513 * src/news.[ch]: news_session_get(): update the last access time
3515 news_group_list_free(): new.
3516 * src/grouplistdialog.c: free resources correctly.
3521 src/grouplistdialog.[ch]: more merging of new newsgroup
3522 subscription dialog.
3523 * src/news.[ch]: renamed news_remove_group_list() to
3524 news_remove_group_list_cache().
3528 * src/defs.h: added MAX_ENTRY_LENGTH definition.
3529 * src/compose.c: compose_add_entry_field(): create new entry with
3534 * src/grouplistdialog.c: made non-leaf node selectable.
3535 Give the complete newsgroup name for each nodes.
3539 * src/grouplistdialog.c
3540 src/news.[ch]: merging of new newsgroup subscription dialog
3541 (still in progress. Don't use it yet!).
3545 * src/utils.[ch]: decode_uri(): new. It decodes URL-encoded strings.
3546 * src/compose.[ch]: compose_new_with_recipient(): accept mailto
3548 compose_entries_set(): new. It parses mailto URL and put each
3549 values into the entries.
3553 * src/compose.c: compose_forward(): fixed a bug that forward
3554 quote mark wasn't used (thanks to Hironori IWANE).
3557 src/prefs_common.c: added Thai encodings (thanks to Manrat
3562 * src/socket.c: sock_connect_by_hostname(): removed h_errno.
3566 src/news.c: added last_access_time to Session.
3567 imap_session_get(): check connection only when access interval
3576 * src/socket.c: ssl_gets(): use SSL_peek.
3577 * updated NEWS and AUTHORS.
3578 * Makefile.am: fixed release target.
3582 * src/template.c: changed the format of template file to
3584 * src/compose.c: compose_template_apply(): freeze the text widget
3585 while inserting strings.
3589 * po/POTFILES.in: removed src/template_select.c.
3590 * src/summaryview.c: summary_set_header()
3591 src/address.c: address_parse_str()
3592 src/filter.c: filter_read_str()
3593 src/news.c: news_parse_xover()
3594 src/procheader.c: procheader_get_fromname()
3595 src/utils.c: subject_compare():
3596 replaced Xalloca() + strcpy() with Xstrdup_a().
3597 * src/inputdialog.[ch]: added combo mode.
3598 input_dialog_combo(): new.
3599 * src/prefs_common.[ch]: added MIME open command setting.
3600 prefs_common_{read, save}_config(): read / write command history.
3601 * src/mimeview.c: mimeview_open_with(): use combo input dialog.
3602 * src/utils.[ch]: add_history(): history list management function.
3606 * src/compose.c: select templates from the menu.
3607 compose_set_template_menu(): new.
3608 compose_reflect_prefs_all(): new.
3609 compose_template_apply(): new. Use dummy MsgInfo for parsing.
3610 * src/template.[ch]: store template list to the static heap.
3611 template_get_config(): new.
3612 template_set_config(): new.
3613 * src/prefs_template.c: don't store template list to the global area.
3614 * src/template_select.[ch]: removed.
3615 * src/quote_fmt_parse.y: check folderitem when quoting messages.
3616 * src/mh.c: mh_add_msg(): try to copy file whenever link() failed
3617 (thanks to OSHIRO Naoki).
3621 * src/utils.[ch]: get_template_dir(): new.
3622 * src/template.c: use get_template_dir().
3626 * src/prefs_template.c: modified the dialog layout.
3627 Added symbol description button.
3628 * src/summaryview.c: show an arrow mark to the column of the sort
3630 summary_set_column_titles(): new.
3636 TODO.jp: updated the documents.
3640 * src/Makefile.am: add missing checkbox_{on, off}.xpm.
3641 * src/textview.c: textview_key_pressed()
3642 src/mimeview.c: mimeview_key_pressed()
3643 src/summaryview.c: summary_key_pressed(): delete messages with
3648 * src/socket.c: ssl_gets(): fixed a bug that caused infinite loop
3649 when SSL_read() returned 0.
3650 * src/utils.[ch]: strcrchomp(): new. It removes CR from the tail
3652 * src/quote_fmt_parse.y: convert CRLF to LF when inserting messages.
3653 Add prototype of yylex() to suppress the warning.
3654 * merged the template function.
3655 * src/prefs_template.[ch]
3657 src/template_select.[ch]: new.
3658 Renamed prefs_templates_* -> prefs_template_*.
3659 * src/compose.c: added template menu. Added replyinfo to Compose.
3660 * src/mainwindow.c: added template setting menu.
3661 * src/quote_fmt_lex.l: output literal tab and return as is.
3662 * src/prefs_common.c: changed the pref. name of quote format to
3663 'reply_quote_{mark, format}' and 'fw_quote_{mark, format}'.
3667 * src/prefs_common.[ch]: added Quote tab, and moved the quote
3668 setting from Compose tab.
3669 * merged the new quote format parser.
3670 * src/quote_fmt_lex.h
3673 src/quote_fmt_parse.y: new files for quote format parser.
3674 * configure.in: added checks for lex and yacc.
3675 * src/compose.c: compose_quote_file(), compose_quote_parse_fmt():
3677 compose_quote_fmt(): new.
3678 * src/prefs_common.[ch]: added forward format setting to the
3679 Quote tab. Updated the quote description dialog.
3680 * src/quote_fmt_parse.y: fixed bugs that tried to read file even
3681 if they couldn't get text part.
3685 * src/pixmaps/checkbox_off.xpm
3686 src/pixmaps/checkbox_on.xpm: new.
3687 * src/account.c: display `get all' status with the checkbox pixmaps.
3691 * src/send.c: code cleanup. Pass account prefs structure instead
3693 Query password for SMTP AUTH if not specified (thanks to Mio).
3697 * src/procheader.c: procheader_parse(): fixed a bug that didn't
3698 parse multiple message-id in In-Reply-To: header correctly
3699 (thanks to KAJIWARA).
3703 * src/account.c: enabled 'Get all' setting by clicking the 'G'
3704 column of account list, and added some description.
3705 * src/prefs_common.c: prefs_send_create(): added a description
3706 for outgoing codeset.
3710 * src/prefs_account.[ch]: moved inbox entry to the receive tab,
3711 and added select button and short description.
3712 * src/Makefile.am: added SYSCONFDIR to CPPFLAGS.
3714 procmime_get_mime_type_table()
3715 procmime_get_mime_type_list(): modified so that
3716 $(SYSCONFDIR)/mime.types (or /etc/mime.types if not found) and
3717 $(HOME)/.sylpheed/mime.types are read.
3721 * src/prefs_account.c: moved the address auto-setting to the compose
3723 prefs_account_create(): removed gtk_widget_show_all() for proper
3725 * src/prefs_common.c: changed "Program path" to "Command".
3729 * src/textview.c: textview_set_font(): support Russian charset
3731 * src/summaryview.c: summary_delete(): (hopefully) fixed the crash
3735 prefs_summary_column.c: minor improvements to the English.
3736 * src/main.c: get_queued_message_num(): don't output the warning
3737 when queueing folder is not found.
3745 * src/prefs_summary_column.[ch]:
3746 made prefs_summary_column_get_config() public.
3747 * src/summaryview.c: summary_ctree_create(): some code cleanup.
3748 * configure.in: moved the position of SSL checking after LDAP
3749 for linking problem.
3754 src/summaryview.c: allowed reedit in the outbox.
3755 * src/prefs_summary_column.[ch]: new. UI for setting summary
3757 * src/mainwindow.[ch]: main_window_set_summary_column(): new.
3758 It calls summary_set_column_order().
3759 * src/summaryview.[ch]:
3760 summary_ctree_create(): new. separated from summary_create().
3761 summary_set_column_order(): new. It destroys the current
3762 CTree and replaces it with the new one.
3766 * src/smtp.[ch]: smtp_from(): abort if auth failed.
3767 * changed C++-style comments into C-style in some files, and
3768 removed unnecessary commented out codes.
3769 * src/addrcache.[ch]
3773 src/syldap.[ch]: updated the addressbook code, and fixed the
3776 src/importldif.[ch]: new.
3780 * src/about.c: added some items to compiled-in features.
3781 * src/addr_compl.c: changed LOG_MESSAGE to debug_print.
3782 * src/addressbook.c: changed "V-Card" to "vCard".
3783 addressbook_edit_address_cb(): added
3784 invalidate_address_completion() to the point address is changed.
3785 * src/codeconv.c: changed C++-style comments into C-style.
3789 * src/compose.c: changed "Send" shortcut to Ctrl+Enter.
3793 * src/inc.c: fixed a bug that crashed sylpheed if Cancel button
3798 * src/procmsg.c: procmsg_get_thread_tree(): complete the unfinished
3800 * src/summaryview.c:
3801 summary_thread_init(): separated from summary_thread_build().
3802 summary_thread_build(): removed the codes for initialization.
3803 summary_set_ctree_from_list(): call summary_thread_init() instead
3804 of summary_thread_build().
3805 summary_filter(): fixed a bug that didn't moved messages despite
3806 of immediate execution setting.
3810 * src/procmsg.c: procmsg_get_thread_tree(): new. It generates the
3811 reversed thread tree from message list.
3812 * src/summaryview.c: summary_set_ctree_from_list(): prepend the
3813 node to the head instead of appending to the tail. This prevents
3814 the traverse of node list inside of the GtkCTree, and considerably
3815 speeds up the summary display (the order is O(n^2) -> O(n)).
3819 * src/prefs_common.c
3820 src/summaryview.[ch]: initial modification for reorderable columns.
3824 * src/procmsg.c: procmsg_get_mark_sum(), mark_sum_func(): fixed a
3826 * src/folderview.c: folderview_button_pressed(): code cleanup, and
3827 turn sensitivity off if main window is locked.
3828 * src/syldap.c: syldap_read_data(): removed unnecessary and
3829 unportable sched_yield().
3833 * src/folderview.c: renamed "Update folder tree" context menu to
3834 "Rescan folder tree", and made "Update folder tree" only updates
3836 folderview_update_all_node(): don't show message dialog.
3837 * src/gtkutils.c: gtkut_widget_get_uposition()
3838 src/mainwindow.c: main_window_popup(): clip the coordinate to
3843 * src/utils.c: to_human_readable(): made a bit of optimization.
3844 * src/summaryview.c: summary_delete(): fixed a focus problem.
3845 summary_find_{prev,next}_msg(): new. They find previous/next
3846 message that is not deleted.
3847 * src/prefs_filter.c: scroll CList automatically if moved row
3848 becomes not fully visible.
3852 * updated some autotool scripts.
3853 * src/codeconv.c: conv_encode_header(): fixed a bug that caused
3854 infinite loop when failed to convert encoding.
3855 * src/codeconv.[ch]: a fix for older version of libjconv
3856 (jconv_info_get_current_codeset() returned "EUCJP" instead of
3865 * src/compose.c: compose_write_to_file()
3866 src/codeconv.c: conv_codeset_strdup(): more workaround for
3867 libjconv problem on C locale.
3868 * src/editldap_basedn.c: fixed segfault when opening dialog.
3869 * src/utils.c: is_next_mbs()
3870 src/compose.c: compose_wrap_line(), compose_wrap_line_all():
3871 changed MB_CUR_MAX to MB_LEN_MAX for compliance to ANSI C.
3872 * configure.in: increased the reqired version of GPGME to 0.2.3.
3873 * src/pop.c: pop3_getauth_user_recv(): fixed a bug that closed
3874 the receive dialog when POP3 server refused normal authentication.
3878 * src/prefs_common.c: prefs_receive_create(): correction to English.
3879 * src/compose.c: compose_set_ext_editor_sensitive(): fixed a bug
3880 that didn't set the menu sensitivity correctly (thanks to
3882 * src/summaryview.c: delete messages permanently if the current
3883 folder is trash and 'delete' operation is executed.
3884 Fixed the bug that didn't select the last row correctly (thanks
3885 to Alfons Hoogervorst).
3886 * src/folder.[ch]: folder_item_remove_msgs(): new. It removes
3887 all messages given in the list.
3891 * src/summaryview.c: summary_show(): fixed a bug that didn't show
3892 message even if the 'open unread message on entering folder'
3893 option was turned on.
3897 * src/procmime.c: procmime_get_text_content(): supported HTML.
3901 * src/summaryview.[ch]: implemented new locking mechanism, and
3902 replaced every static locks with summary_lock(), summary_unlock(),
3903 and added locks to some extra functions.
3904 This fixes a bug that caused segfault when 'd' (delete) key
3909 * src/addressbook.c: addressbook_folder_load_person(): fixed a bug
3910 that caused segfault (thanks to Stefaan A Eeckels).
3914 * src/textview.[ch]: added textview_set_position().
3915 * src/messageview.[ch]: added messageview_set_position().
3927 src/editldap_basedn.c
3932 src/vcard.c: converted C++-style comments into C-style one.
3933 * src/imap.c: QUOTE_IF_REQUIRED(): new macro. Copy string into
3934 new buffer and quote with double quotes if required.
3935 imap_status(), imap_cmd_login(), imap_cmd_list(),
3936 imap_cmd_do_select(), imap_cmd_create(), imap_cmd_delete(),
3937 imap_cmd_copy(): use QUOTE_IF_REQUIRED().
3938 * compose.c: compose_write_to_file(): workaround for the problem
3939 when using libjconv and 8bit codes cannot be converted on C
3941 * codeconv.[ch]: added "ANSI_X3.4-1968" to encoding strings.
3942 conv_codeset_strdup(): don't convert if source and destination
3943 codeset are identical.
3947 * src/textview.[ch]: textview_search_string_backward(): new.
3948 Add the new member cur_pos to TextView.
3949 Connect button_press_event with gtk_signal_connect_after() to
3950 obtain the correct editable position.
3954 * src/folder.c: folder_write_list_recursive(): preserve unthreaded
3959 * src/summaryview.c: modified the layout of popup menu.
3966 src/summaryview.c: applied the patch from Alfons that allows
3967 threading setting for each folders (tnanks!).
3971 * src/message_search.[ch]: new. A Dialog for searching in current
3973 * src/gtkutils.[ch]: gtkut_text_match_string(): new. Compare the
3974 text in current position of GtkText and given wide-character
3976 * src/messageview.[ch]: messageview_search_string()
3977 src/textview.[ch]: textview_search_string(): return TRUE if
3979 * src/textview.[ch]: remember the beginning of body.
3983 * src/procmime.c: procmime_get_first_text_content(): modified so
3984 that it search entire MIME structure.
3985 * src/summary_search.c: summary_search_execute(): use
3986 strdup_mbstowcs() instead of macro. Display matched message.
3990 * src/inc.c: fix for background POP3 hangs and crashes (thanks to
3992 * src/summary_search.c: added body searching function.
3993 * src/procmime.[ch]: procmime_find_string(): changed arguments
3994 and return value. Added case sensitivity option.
3998 * src/procmime.[ch]:
3999 procmime_find_string()
4000 procmime_find_string_part(): new. It searchs the string from
4002 Renamed procmime_get_text_part() to
4003 procmime_get_first_text_content().
4004 procmime_get_text_content(): new. It returns the text contents
4005 of the specified MIME part.
4006 procmime_mimeinfo_next(): new. It returns the next node of
4011 * src/procmime.c: procmime_get_text_part(): modified so that it
4012 finds a text part in nested multipart message correctly.
4013 * src/procmime.h: added an example of MimeInfo structure.
4014 * src/mimeview.c: mimeview_show_message(): search the first text
4019 * src/mainwindow.c: ac_menu_popup_closed(): fixed the bug that
4020 caused segfault. Changed 'Preferences per account...' menu item.
4028 * src/addrindex.c: translate the "Common address" and "Personal
4029 address" from old addressbook.
4033 * src/utils.c: get_quote_level(): some optimization and bugfixes.
4034 * src/codeconv.[ch]: conv_get_current_locale(): new.
4035 * src/editaddress.c: edit_person_page_basic(): reverse the order
4036 of first and last name on some locales.
4040 * src/compose.c: applied the patch from Yasumatsu that reformats
4041 the current paragraph (thanks!). Modified so that it doesn't
4042 reformat quoted paragraphs.
4043 compose_create(): don't fill the entry automatically on reedit
4046 src/summaryview.[ch]: added the "Mark all read" option.
4047 summary_mark_all_read(): new.
4055 src/editldap_basedn.c
4057 src/editjpilot.c: removed all warnings.
4059 src/jpilot.[ch]: fixed the problem that failed to detect JPilot
4060 header files on the Debian system.
4062 src/summaryview.[ch]: enabled sorting by mark, unread, attachment,
4063 and color label. Enabled moving to next/prev flagged messages.
4067 * src/pixmaps/dir-close.xpm
4068 src/pixmaps/dir-open.xpm
4070 src/pixmaps/unread.xpm: modified the color balance.
4071 * src/utils.[ch]: execute_sync(): new.
4072 execute_command_line(): added the arg for async mode.
4073 * src/inc.c: inc_mail(): use execute_command_line().
4078 src/prefs_common.[ch]
4079 src/prefs_account.c: modified the layout. Added the option to
4080 launch the external editor automatically.
4081 * src/compose.c: launch the external editor automatically if the
4086 * src/Makefile.am: added extra xpm's.
4090 * src/addressbook.c: fixed a compilation problem when enabling
4092 addressbook_open(): fixed a missing 'else'.
4096 * src/pixmaps/dir-close.xpm
4097 src/pixmaps/dir-open.xpm
4098 src/pixmaps/trash.xpm: replaced with the new blue icons.
4099 * merged Match Grun's new addressbook code.
4100 * src/pixmaps/address.xpm
4101 src/pixmaps/book.xpm
4102 src/pixmaps/category.xpm
4103 src/pixmaps/interface.xpm
4104 src/pixmaps/jpilot.xpm
4105 src/pixmaps/ldap.xpm
4106 src/pixmaps/vcard.xpm: new icons.
4110 src/addressitem.[ch]
4113 src/editaddress.[ch]
4118 src/editldap_basedn.[ch]
4123 src/vcard.[ch]: new. Many fixes to remove the huge amount of
4125 addrbook_build_avail_email_vis(): fixed a memory leak.
4129 * NEWS: brought in the all of the changes previously put on the web.
4134 src/summaryview.c: modified the layout of menus.
4135 * src/mainwindow.c: ac_menu_popup_closed(): fixed a bug that didn't
4136 return a focus to the main window after selecting the account menu.
4144 * src/send.c: send_message_data(): fixed a bug that didn't process
4145 body part correctly.
4149 * src/inc.[ch]: changed inc_autocheck_(un)lock() to inc_(un)lock().
4150 inc_mail(), inc_all_account_mail(): return immediately if locked.
4153 src/prefs_account.c: use inc_lock() and inc_unlock() instead of
4154 inc_autocheck_timer_{remove,set}().
4155 * src/summaryview.c: summary_set_colorlabel_color(): get the average
4156 of label color and selected fg color for visibility.
4160 * src/inc.[ch]: inc_autocheck_lock(), inc_autocheck_unlock(): new.
4161 They increase/decrease the lock count.
4162 inc_autocheck_func(): if locked, delay the autochecking 1 second.
4163 inc_autocheck_timer_set_interval(): set interval by its argument.
4164 * src/summaryview.c: summary_show(): lock the autochecking while
4166 * src/main.c: app_will_exit(): remove autocheck timer.
4168 src/defs.h: removed the definitions of PACKAGE and VERSION to
4169 prevent unnecessary compilation.
4170 * configure.in: changed AC_DEFINE_UNQUOTED of PACKAGE and VERSION
4171 to AC_SUBST, and added src/version.h to AC_OUTPUT.
4172 * src/version.h.in: new.
4173 * src/intl.h: changed dgettext() to gettext().
4177 * po/ja.po: fixed a typo that crashed Sylpheed with older version
4179 * configure.in: fixed a bug that didn't show results correctly.
4180 Fixed a bug that --enable-compface and --enable-jconv disabled
4182 * src/procmsg.c: procmsg_send_queue(): don't abort when sending
4184 * src/compose.c: compose_write_headers(): add Bcc: header to the
4186 * src/send.c: send_message_data(): new. Separated from
4187 send_message_smtp(). Remove Bcc: header before sending.
4195 * src/send.c: implemented sending with local sendmail command.
4196 send_message_local(): new. It executes command with popen()
4197 and send the contents of RFC822 message to the command.
4198 * src/prefs_common.[ch]: enabled the external sending command option.
4199 * src/defs.h: #define DEFAULT_SENDMAIL_CMD /usr/sbin/sendmail -t
4200 * src/account.c: account_edit_create(): widened the protocol column.
4201 * src/summaryview.c: summary_set_colorlabel_color(): cleanup of
4206 * src/folder.c: folder_item_remove_msg(): scan the folder again
4207 if the last message is removed.
4208 * src/compose.c: compose_queue(), compose_draft_cb(): remove the
4209 old reedited message after adding the new message.
4213 * src/compose.c: compose_queue(): added AID: to the queueing header.
4214 * src/send.c: send_message_queue(): look for AID: header, and use
4215 the server specified in the account instead of SSV: header.
4217 src/compose.[ch]: queued messages can be reedited now.
4218 compose_remove_reedit_target(): new. It removes the old reedited
4220 compose_send(), compose_queue(), compose_draft_cb(): if reedit
4221 mode, remove the old message.
4222 * src/procmsg.c: procmsg_msg_exist(): fixed a bug that output
4227 * applied the XML string table patch from Alfons Hoogervorst that
4228 stores strings in a hash table and minimizes memory allocations
4230 * src/stringtable.[ch]: new.
4231 removed all G and g_ prefix from type and function names since
4232 they're not official GLib symbol names.
4233 string_table_insert_string(): fixed a bug that might refer to an
4234 invalid pointer on lookup, and also made a bit of optimization.
4238 * merged the color label feature from the claws branch (thanks to
4239 Satoshi Nagayasu and Alfons Hoogervoost).
4240 * src/colorlabel.[ch]: new. Renamed from labelcolors.[ch].
4241 Renamed labelcolors_*() to colorlabel_*().
4242 * src/summaryview.[ch]: added color label support.
4243 * src/procmsg.h: added color label flags to the permanent flags.
4244 * updated to gettext 0.10.39.
4245 * src/summaryview.[ch]: put the color label menu item to ItemFactory.
4246 * sylpheed.desktop: added for GNOME.
4247 * configure.in: added AC_MSG_CHECKING() for some options.
4248 Output the configuration results when configure is finished.
4252 * src/account.c: account_clist_set_row(): fixed a bug that failed
4253 to compile if SSL was not enabled.
4257 * merged the SSL support from the claws branch (thanks to Christoph
4259 * src/ssl.[ch]: new.
4260 * src/socket.[ch]: added ssl_read(), ssl_write(), ssl_gets(), and
4262 sock_close(): call ssl_done_socket() if SSL is active.
4263 * src/md5.[ch]: removed MD5_CTX typedef and use MD5_CONTEXT to
4264 prevent type confliction.
4265 * src/prefs_account.[ch]: added SSL tab, and modified the expression.
4266 * src/esmtp.[ch]: added esmtp_ehlo(), and esmtp_starttls().
4267 Removed SSL initialization and HELO from esmtp_starttls().
4268 esmtp_auth(): removed use_smtp_auth from its arguments.
4269 * src/send.c: send_smtp_open(): added SSL support.
4270 * src/smtp.c: smtp_helo(): call esmtp_ehlo() if esmtp is true.
4274 * src/mimeview.c: mimeview_open_with(): braced '%s' with single
4279 * src/main.c: open new account dialog if no account is set.
4280 * src/utils.[ch]: log_verbosity_set(): new. It increase/decrease
4281 the verbosity count.
4282 log_print(): put to statusbar only if log_verbosity_count > 0.
4283 log_message(): put to statusbar.
4284 * src/inc.c: inc_pop3_session_do(): set log verbosity.
4285 * src/mainwindow.c: main_window_set_menu_sensitive(): added the
4286 "Compose new message" item.
4287 main_window_show_cur_account(): removed "Current account: " string.
4288 * src/summaryview.c: summary_show(): ignore the current marks if
4289 main window is locked.
4290 * src/compose.c: compose_attach_property(): fixed a bug that caused
4295 * src/mainwindow.c: main_window_get_current_state(): new. It returns
4296 the current state for the sensitivity of UI.
4297 main_window_set_toolbar_sensitive(): use table like
4298 main_window_set_menu_sensitive().
4302 * src/mainwindow.[ch]: added progressbar and status label to the
4304 main_window_close_cb(): don't exit if locked.
4305 * src/inc.c: update the progressbar of main window, too.
4309 * src/mainwindow.[ch]: main_window_set_toolbar_sensitive(): removed
4310 the second argument, and determine the sensitivity with the
4311 state of summary view.
4315 * src/pop.c: pop3_getsize_list_recv(), pop3_retr_recv(),
4316 pop3_delete_recv(): don't try to receive messages which are not
4321 * src/mainwindow.c: main_window_lock(), main_window_unlock():
4322 removed the whole menubar locking.
4323 main_window_set_menu_sensitive(): process the sensitivity change
4324 with a table, and deal with locking.
4328 * src/summaryview.[ch]: summary_get_selection_type(): new.
4329 It returns the current selection state of summary view.
4330 summary_key_pressed(): abort on some commands if main window
4332 * src/mainwindow.[ch]: main_window_lock(), main_window_unlock():
4333 increase/decrease the lock count.
4337 * src/prefs_filter.c: prefs_filter_create(): added List-Id to the
4338 default header list.
4339 * src/prefs_common.[ch]: added the option for receive dialog mode
4340 to the Interface tab.
4341 * src/inc.[ch]: inc_progress_dialog_create(): don't make the dialog
4342 transient, and show dialog only if the setting is
4343 RECV_DIALOG_ALWAYS, or RECV_DIALOG_ACTIVE and a window is active.
4344 * src/mainwindow.[ch]: main_window_lock(), main_window_unlock():
4345 new. Lock / unlock the user-interface.
4346 * src/progressdialog.c: progress_dialog_create(): don't make the
4351 * src/folderview.c: folderview_update_node(): suppressed unnecessary
4353 * src/menu.[ch]: menu_button_position(): new. It calculates the
4354 position of popup menu.
4355 * src/mainwindow.c: toolbar_account_button_pressed(),
4356 ac_label_button_pressed(): put the popup menu to the correct
4357 position. Change the style of the button while opening the menu.
4358 ac_menu_popup_closed(): new function called on selection_done
4360 * src/gtkutils.c: gtkut_ctree_node_next(): fixed a crash bug when
4362 * src/summaryview.c: applied the summary fix patch from Sergey Vlasov
4364 Fixed the bug that didn't select previous message in refresh mode
4365 if threads were not expanded.
4366 summary_select_node(): new.
4367 * src/inc.c: applied the summary view update optimization patch from
4368 Sergey Vlasov (thanks!).
4369 If no new messages are received, don't perform summary refreshing.
4370 In addition to the Vlasov's patch, POP3 receive information is
4372 * src/inc.h: added a new member cur_total_num to Pop3State.
4373 * src/pop.c: pop3_retr_recv(): increase state->cur_total_num.
4381 * src/summaryview.c: summary_set_row_marks(): got the color of
4382 unread row set properly.
4383 * src/folderview.c: foldreview_update_node(): don't use
4384 gtk_style_copy(), and reuse previously allocated styles.
4385 * README, README.jp: modified.
4389 * src/pop.c: pop3_getsize_list_recv(): fixed a remotly exploitable
4390 memory corruption bug (thanks to David Looney).
4391 * src/inc.c: inc_all_account_mail(): call inc_finished() even if
4392 there are no enabled accounts, or local spool only.
4393 * src/summaryview.c: applied the summary update improvement patch
4394 from Sergey Vlasov (thanks!). It keeps the position of the
4395 message displayed. Selected and displayed message are also kept.
4396 summary_get_msgnum(): new.
4397 summary_get_current_msgnum(): removed.
4398 summary_select_by_msgnum(): don't display the message.
4399 * src/account.c: added "Get all" column.
4400 account_clist_set_row(): show default and get-all flags with the
4402 * src/utils.c: to_human_readable(): increased the number of decimals
4407 * implemented the long-awaited :) "Add sender to address book" feature.
4408 * src/address.[ch]: added the argument for remarks to
4410 address_get_folder_list(): new. It traverses the address tree and
4411 returns the folder list.
4412 address_delete_object(): modified so that it removes the node
4414 * src/addressbook.[ch]: addressbook_add_submenu(): new. It creates
4415 a address folder menu and attaches it to the menu item.
4416 addressbook_refresh(): reload the address book folder tree.
4417 * src/summaryview.c: summary_set_add_sender_menu(): new. It attaches
4418 the menu to add sender to address book.
4419 summary_button_pressed(): call summary_set_add_sender_menu()
4420 before popup the menu.
4424 * src/summaryview.c: summary_thread_build(): fixed a bug that locked
4425 up the process. Optimized the initial thread build.
4429 * src/summaryview.c: made many code cleanups.
4430 summary_show(): block/unblock the signal handlers instead of
4431 disconnect/connect them.
4432 summary_set_row_marks(): made the font of collapsed node bold if
4433 it has cnildren marked as unread.
4434 summary_thread_build(): block tree_expand signals while processing.
4435 Use loop instead of the recursive function. Mark collapsed nodes
4437 summary_unthread(): block tree_collapse signals while processing.
4438 Use loop instead of the recursive function.
4439 summary_thread_func(), summary_unthread_func(): removed.
4440 summary_tree_expanded(), summary_tree_collapsed(): new callback
4442 * src/inc.[ch]: inc_pop3_session_do(): don't show alert panel when
4443 failed to connect. Show more detailed status on the dialog.
4447 * src/folderview.c: folderview_update_all_node(): new. It updates
4449 * src/inc.c: update all local folders after incorporation if
4450 scan_all_after_inc option is set.
4451 * src/prefs_common.[ch]: added scan_all_after_inc option.
4452 * src/folder.h: FOLDER_IS_LOCAL(): new macro.
4461 src/prefs_common.h: made bold and small font configurable.
4462 src/summaryview.c: display unread messages with bold font.
4463 * src/prefs_common.c
4465 src/summaryview.c: added an option to enable/disable the
4466 emphasis of unread messages.
4470 * src/pixmaps/mark.xpm: modified.
4471 * src/gtkutils.[ch]: gtkut_ctree_expand_parent_all(): new.
4472 * src/summaryview.c: summary_set_ctree_from_list(): don't expand
4473 the root messages of threads for performance improvement.
4475 summary_select_next_unread()
4476 summary_step(): expand threads when opening messages.
4477 summary_thread_build(): expand threads if the option is turned on.
4478 * src/prefs_common.[ch]: added "Expand threads" option.
4482 * src/prefs_common.c: removed "Emulate the behavior of mouse
4483 operation of Emacs-based mailer".
4484 * src/prefs_common.c
4485 src/prefs_account.c: changed the value of VSPACING_NARROW to 3.
4486 * src/pixmaps/new.xpm
4487 src/pixmaps/unread.xpm: reverted.
4492 address_folder_new()
4494 address_item_new(): changed the return value to AddressObject.
4495 address_build_tree(): don't put assertion for file.
4496 * src/pixmaps/new.xpm
4497 src/pixmaps/unread.xpm: modified a bit.
4501 * src/addressbook.c: fixed some bugs.
4505 * separated the logic part of addressbook into another module
4506 (still in progress).
4507 * src/address.[ch]: new. It contains the logic part of addressbook.
4508 * src/addressbook.[ch]: removed the logic part.
4512 * src/textview.c: textview_show_header(): fixed a bug that a garbage
4513 character was shown after header names.
4517 * src/inc.c: inc_start(): don't abort with non-fatal error.
4525 * src/mimeview.c: mimeview_view_file(): added -x option to the
4526 metamail to prevent the suspention of the main process.
4527 mimeview_button_pressed(): deactivate `Open' menu item if
4528 content-type is application/octet-stream.
4532 * src/imap.c: imap_parse_atom(): parse escaped characters properly.
4533 get_quoted(): new. It handles the escape character '\'.
4534 * src/folder.c: folder_read_list(): don't output warning if
4535 folderlist.xml doesn't exist.
4536 * src/main.c: main(): write folder list after setup.
4537 * src/textview.c: textview_create()
4538 src/compose.c: compose_create(): set default tab width to 8.
4542 * src/prefs_common.c: date_format_select_row(): fixed a bug that
4543 caused segfault when selecting the list with key.
4547 * src/mainwindow.c: main_window_popup(): deiconize the window
4548 when popup (thanks to Henrik Carlqvist).
4549 * src/procmime.c: procmime_scan_mime_type(): new.