8 addressbook_folder_load_person()
9 addressbook_folder_load_group(): sort the ctree after the end of
10 the loop (fixes performance issue when many addresses are in one
11 folder) (thanks to christian mock).
15 * src/folderview.c: folder_init(): code cleanup.
16 * src/summaryview.c: summary_init(): check if boldfont is
18 * src/grouplistdialog.c: use proper callback for delete_event (thanks
20 * src/imap.c: allow zero-length messages.
21 * src/recv.c: recv_bytes_write(): return immediately if size == 0.
25 * src/folderview.c: folderview_init(): if font can't be loaded, fall
26 back to gtk default (fixes crashes on startup). Also removed the
31 * src/compose.c: compose_insert_sig(): insert signature at the
32 current cursor position on manual operation.
36 * src/summaryview.c: summary_key_pressed(): don't ignore delete key
37 even if the main window is locked.
41 * src/action.c: improved synchronous action exit code (fixes long
42 delay after action exit on RH9) (thanks to Melvin).
43 * src/stringtable.[ch]: string_table_insert_string(): modified the
44 code to remove the warning "dereferencing type-punned pointer will
45 break strict-aliasing rules".
46 Use const gchar * instead of gchar * for arguments.
50 * src/utils.[ch]: generate_mime_boundary(): a new function to create
51 MIME boundary (moved from rfc2015.c).
52 Removed more special characters.
53 Use random() instead of lrand48() which is obsolete.
54 Added an argument for prefix to prevent duplication.
55 Always add "=_" as a counter-QP sequence to simplify the code.
57 rfc2015_decrypt_message()
59 rfc2015_sign(): fixed a bug that didn't handle continuous content
62 src/rfc2015.c: use generate_mime_boundary().
67 folderview_delete_folder_cb()
68 folderview_remove_mailbox_cb(): close currently displayed folder
69 before removing FolderItem (fixes crash on deleting folder).
71 src/imap.[ch]: imap_scan_tree()
72 src/mh.[ch]: mh_scan_tree(): return -1 when scanning failed.
73 * src/summaryview.c: summary_clear_all(): also clear the message view.
74 * src/imap.c: imap_close(): fail if the specified folder is not
76 imap_scan_tree(): check if the specified root directory exist, and
77 try creating it if not.
78 imap_parse_list(): output warning if a server returns error.
79 imap_find_namespace_from_list(): support not slash-delimited path.
80 imap_status(): don't return values if they're not specified.
84 * sylpheed.spec.in: fixed a typo.
95 src/prefs_common.[ch]: added the receive dialog's option to
96 display the dialog only on manual receiving, and the
97 RECV_DIALOG_ACTIVE option was removed.
101 * src/compose.c: compose_write_headers(): also replace ':' in the
102 MIME boundary with '_' (as a workaround for broken servers).
106 * src/imap.c: imap_scan_tree_recursive(): fixed compile error.
110 * src/prefs_filter.c: added 'Top' and 'Bottom' button.
114 * src/folder.[ch]: folder_item_remove_children(): new. It removes
115 all children under a FolderItem.
116 * src/folderview.c: folderview_rescan_tree(): modified the message.
117 * src/imap.c: imap_scan_tree(), imap_scan_tree_recursive(): reuse
118 the previous FolderItem objects.
122 * src/folder.[ch]: added a reference to its own GNode in FolderItem.
123 folder_item_remove(): free all FolderItem's.
124 folder_tree_destroy(): use folder_item_remove().
125 * src/folderview.c: folderview_sort_folders(): keep the order even
126 if special folders' parents are different.
127 * src/imap.c: imap_scan_tree_recursive(): fixed a memory leak.
128 * src/mh.c: mh_scan_tree(): preserve the previous FolderItem's.
129 mh_remove_missing_folder_items(): scan the directories and remove
131 mh_scan_tree_recursive(): reuse the previous FolderItem objects.
135 * src/mainwindow.c: always reflect window size changes.
136 * src/folderview.c: folderview_init()
137 src/summaryview.c: summary_init(): realize the widget before
139 * src/prefs_common.[ch]: remember the folder and mesage view's
145 src/prefs_common.[ch]: remember the size and position of
147 main_window_set_widgets(): fixed a bug that the hidden items on
148 the header view were shown when changing the view type.
149 Instead of setting the window size, set the each view's size.
153 * src/compose.c: compose_select_account(): don't append signature
155 compose_insert_sig(): don't insert "\n\n" if signature string
156 doesn't exist. Always insert signature at the end of message.
160 * improved sylpheed.spec.in (thanks to Andre Oliveira da Costa).
164 * minor code cleanups for the folder system.
165 * src/compose.c: compose_queue(), compose_draft_cb(): code cleanup.
166 * src/folder.c: code cleanups.
168 src/mh.c: calculate message numbers inside the functions.
169 * src/procmsg.c: procmsg_set_flags(): calculate message numbers.
170 * src/summaryview.[ch]: don't calculate and preserve message numbers
179 src/summaryview.c: renamed *_msgs_with_dest() to *_msgs().
183 * src/imap.[ch]: use CAPABILITY to use protocol extentions.
184 imap_greeting(): parse initial server greeting. Also support
187 imap_cmd_append(): use APPENDUID responses if UIDPLUS is supported.
191 * src/imap.c: imap_get_flag_str(): fixed a buffer overrun.
199 * src/main.c: main(): don't save config files on startup.
204 imap_get_msg_list(): removed redundant UID SEARCH ALL when not
206 Unset MSG_NEW flag if \Seen is set.
207 imap_get_uncached_messages(): fetch all messages if both first_uid
212 * src/imap.c: revamped the implementation so that it always
213 exactly reflects the state of IMAP4 servers.
214 imap_get_msg_list(): examine the state of messages using
216 imap_delete_cached_message(): removes single message cache.
217 imap_get_uid(): removed.
218 imap_cmd_search(): new. It issues UID SEARCH command and returns
220 imap_cmd_gen_recv(): made the length of strings unrestricted.
221 imap_get_uid_table(): returns a hash table from UID array.
228 src/news.[ch]: added Folder::close() method.
229 * src/summaryview.c: summary_clear_list(): call folder_item_close().
233 * flags are now taken over when copying messages into IMAP folders
240 mh_add_msgs(): flags can be also specified when adding files.
241 * src/folder.[ch]: added assertions for virtual functions.
242 * src/procmsg.[ch]: procmsg_get_message_file_list(): return the list
244 procmsg_message_file_list_free(): new.
248 * src/procmsg.h: changed MsgPermFlags and MsgTmpFlags from enum to
249 guint32 for portability (thanks to Alfons).
250 * src/imap.c: imap_add_msgs(): removed redundant unlink().
255 session_read_msg_cb()
256 session_read_data_cb(): fixed a bug that ran into infinite loop
257 if connection was closed by remote host (thanks to Yoichi Imai).
258 Added SESSION_EOF state to SessionState.
259 session_is_connected(): new.
260 * src/inc.[ch]: inc_put_error()
261 src/send_message.c: send_put_error(): also put log messages.
265 * more optimization of IMAP4.
266 * src/folder.[ch]: added a method add_msgs() that adds multiple files
268 Removed redundant scan() for the operations of FolderItem.
269 * src/imap.[ch]: implemented Folder::add_msgs() and optimized move
270 and copy from other Folder instances.
271 * src/mh.[ch]: implemented Folder::add_msgs() and cleaned up the code.
272 mh_fetch_msg(): scan folder if required.
273 * src/procmsg.[ch]: procmsg_get_message_file_list(): returns file
274 list from message list.
275 * src/summaryview.c: don't remove MSG_MARKED flags on
276 delete/move/copy operation.
277 summary_display_msg_full(): removed redundant message fetching.
281 * optimized move/copy/delete/mark operations of IMAP4 by using
282 sequence set when issuing commands (adopted claws' implementation
283 with cleaning it up).
285 imap_set_message_flags()
288 imap_cmd_store(): take sequence set string instead of UID number.
289 imap_do_copy_msgs_with_dest(): optimized by using sequence set.
290 imap_cmd_fetch(): use BODY.PEEK instead of BODY.
291 imap_remove_all_msg()
292 imap_set_message_flags(): use FLAGS.SILENT instead of FLAGS.
294 src/summaryview.c: use imap_msg_list_{set,unset}_perm_flags()
295 instead of issuing commands for each message.
300 src/prefs_account.[ch]
302 src/session.[ch]: added an option to enable/disable non-blocking
307 * src/compose.c: compose_attach_append(): display message's subject
308 when attaching message/rfc822 file.
315 session_read_msg_cb()
316 session_read_data_cb(): optimized by removing sock_peek() and
317 buffering received data in user space (correctly implemented
322 * src/session.c: reverted the previous change because it couldn't
323 handle data receiving after messages correctly.
329 session_read_msg_cb(): optimized by removing sock_peek() and
330 buffering messages in user space.
334 * src/imap.[ch]: refactored.
335 Changed all functions that have SockInfo arguments to take
337 Made imap_cmd_count an instance variable: IMAPSession::cmd_count.
338 imap_open(): only establish TCP (or SSL) connection.
339 imap_session_new(): process greeting and authentication here.
343 * src/imap.[ch]: implemented CRAM-MD5 authentication, and made code
345 * src/prefs_account.[ch]: added option menu for IMAP4 authentication
346 type in Receive tab, and hide other protocols' frames.
350 * src/mainwindow.c: send_queue_cb(): don't scan folder twice if
352 * src/procmsg.c: procmsg_send_queue(): return number of sent
358 main_window_set_toolbar_sensitive()
359 main_window_set_menu_sensitive(): removed the locking of file
360 operations while receiving mail.
364 * src/folder.[ch]: folder_item_remove_msg(): take MsgInfo as an
365 argument instead of message number.
366 * src/imap.[ch]: imap_remove_msg(): reimplemented using
368 * src/mh.[ch]: mh_do_move(): reimplemented using
369 mh_do_move_msgs_with_dest().
370 mh_copy_msg(): reimplemented using mh_copy_msgs_with_dest().
371 * src/procmsg.c: procmsg_send_queue(): modified to use message list.
375 * src/rfc2015.c: rfc2015_is_encrypted(): check MimeInfo::mime_type
376 to suppress some warnings.
377 * src/logwindow.c: log_window_append(): don't scroll up when trimming
382 * src/compose.c: add 'Content-Disposition: inline' to a text/plain
383 part when using PGP/MIME signing.
391 * src/defs.h: changed UI_REFRESH_INTERVAL from 40msec to 50msec.
392 * src/session.c: session_read_msg_cb(): make it always fail if
393 sock_read() returns by error.
394 * src/socket.[ch]: sock_check(): handle exceptional SSL condition.
395 sock_has_pending_data(): removed.
396 Removed debug output.
397 * src/send_message.c: send_recv_message(): display messages to
402 * src/inc.[ch]: update received message number on CList while
404 * src/session.c: session_read_data_cb(): optimized by removing
405 g_malloc() and memcpy().
409 * src/socket.[ch]: sock_add_watch(): new. It monitors SSL by original
410 watch functions (otherwise uses g_io_add_watch()).
411 * src/session.[ch]: removed previous workarounds, and replaced
412 g_io_add_watch() with sock_add_watch().
416 * src/socket.[ch]: added sock_has_pending_data() which returns TRUE
417 if socket has pending data.
418 * src/session.c: session_recv_msg(), session_recv_data(): check if
419 socket has pending data and call the callbacks immediately in that
420 case (fixes the hang at ESMTP EHLO on SSL).
424 * src/socket.c: check return value in SSL functions.
428 * src/mimeview.c: mimeview_init(): initialize TextView to prevent
429 slowdown caused by GTK+ themes (thanks to Yuri Arapov).
433 * src/session.c: session_read_data_cb(): clear Session::read_data_buf
434 before calling callbacks.
438 * src/socket.c: made socket connection protocol independent.
439 * src/session.c: removed debug g_print().
440 * src/inc.c: made status bar output less verbose, and show counter
441 on main window's progressbar.
445 * src/session.c: added missing #include <errno.h>.
449 * src/session.[ch]: reimplemented the Session system with non-blocking
450 I/O to solve the performance and the code design issue.
451 * src/socket.[ch]: added sock_connect_async() and
452 sock_connect_async_cancel() to enable asynchronous connection.
453 sock_peek(): modified the implementation.
454 * src/pop.c: optimized the receiving of the responses of
459 * src/procmsg.c: procmsg_get_thread_tree(): prevent threading problems
460 when a node is an ancestor (parent / great parent), which mostly
461 happens with circular references (thanks to Phillipe Gramoulle
462 for finding an sample set of messages, and Alfons for the patch).
466 * src/pop3.c: pop3_get_uidl_table(): return empty hash table even if
467 UIDL list is not found (fixes inability of initial retrieval).
471 * src/main.c: added the option '--status-full' which shows the status
472 of each folder specified. The option '--status' also takes
473 following arguments for folders (thanks to Yuri Arapov).
474 * src/folder.[ch]: folder_get_status(): new. it takes the array of
475 folders as the argument and returns their status.
476 folder_count_total_msgs(): removed.
486 src/inputdialog.c: use gtk_main_iteration() instead of gtk_main()
487 to prevent abort when a button is double-clicked.
491 * src/addr_compl.c: invalidate_address_completion(): check if
492 g_completion_list is NULL (thanks to Kazuhiro NISHIYAMA).
496 * src/pop.c: pop3_session_recv_data_finished(): fixed a bug that
497 deleted messages that is to be kept on server (thanks to Tristan
507 sock_set_io_timeout(): new. It sets the timeout interval.
508 sock_gdk_input_add(): removed since it's not used anymore.
509 * src/prefs_common.[ch]: added an option to set the timeout parameter.
513 * src/action.c: fixed a bug that didn't hide user string in
514 create_io_dialog() (thanks to Markus Amersdorfer).
515 Removed ChildInfo::type and added Children::action_type.
519 * src/inc.c: inc_start(): ask every password before retrieving.
520 Don't popup the redundant error dialog.
522 inc_all_account_mail()
523 inc_progress_dialog_set_list(): separated account list display
525 inc_progress_dialog_set_label()
526 inc_recv_data_finished()
527 inc_recv_message(): properly update the dialog when RETR finished.
532 imap_modified_utf7_to_locale()
533 imap_locale_to_modified_utf7(): fixed compilation failure when not
538 * src/procmime.c: procmime_scan_multipart_message(): fixed parsing
539 of message/rfc822 parts.
543 * src/pop.c: pop3_ok(): detect timeout error.
547 * src/imap.c: imap_locale_to_modified_utf7(): fixed the encoding bug
548 when locale strings include '+'.
549 imap_modified_utf7_to_locale()
550 imap_locale_to_modified_utf7(): at least escape/unescape '&' even
551 if iconv() is not supported.
557 compose_get_signature_str(): include separator in signature string.
558 Don't insert separator if signature file is not found.
559 Disabled use of implicit default signature path (~/.signature) when
569 src/quote_fmt_parse.y
570 src/smtp.c: suppress warnings that gcc-3.3 issues.
571 src/stringtable.c: use string_entry_free().
575 * src/compose.c: compose_insert_sig(): fixed the bug that always
576 appended signature separator if signature file was not found.
577 compose_get_signature_str(): fixed the bug that caused crash if
578 signature file cannot be opened.
586 * src/session.c: session_recv_msg(): removed debug print.
593 imap_cmd_fetch(): check for data size that servers return (fixes
594 vulnerability found in BugTraq).
598 * src/addr_compl.c: get_complete_address()
599 src/addressbook.c: addressbook_format_address()
600 src/compose.c: QUOTE_IF_REQUIRED(): quote if name contains
601 characters that is not defined in atext (RFC 2822, 3.2.4. Atom).
602 * src/main.c: main(): set colormap and visual to solve color problem
603 in Solaris (thanks to Markus Schwarzenberg).
611 * src/prefs_account.c: temporarily removed POP before SMTP option.
615 * src/prefs_common.[ch]: changed the description of "Open message when
616 cursor keys are pressed on summary".
617 * src/summaryview.c: summary_show(): open message when always_show_msg
622 * src/logwindow.[ch]: restrict the maximum lines of the log messages
623 to reduce the memory usage.
627 * src/compose.c: compose_insert_sig(): fixed a crash when signature
628 string contains illegal sequence.
629 * src/utils.[ch]: changed get_wcs_len() to get_mbs_len() for accuracy.
633 * major refactoring of MIME structure.
634 * src/procmime.c: procmime_scan_message(): decrypt message if
635 gpgme is enabled. Create multipart tree only if content-type is
636 multipart/* or message/rfc822.
637 procmime_scan_multipart_message(): fixed the scanning of
639 * src/action.c: parse_append_msgpart()
640 src/messageview.c: messageview_show()
641 src/mimeview.c: mimeview_show_message(): use procmime_scan_message()
642 instead of procmsg_open_message() and procmime_scan_mime_header().
643 mimeview_set_multipart_tree(): conform to the new MIME structure.
644 * src/textview.c: textview_show_part(): removed unnecessary check.
645 * src/procmsg.c: procmsg_open_message_decrypted(): fixed the file
646 pointer when decryption failed.
650 * src/ssl.c: ssl_init_socket_with_method(): replaced log_warning()
651 by g_warning(), and log_print() by debug_print().
652 * src/pop.[ch]: added an error code PS_NOTSUPPORTED, and retry with
653 LAST if UIDL is not supported.
657 * src/codeconv.c: conv_get_code_conv_func(): convert to EUC-JP only
658 if it is the current locale encoding when dest_charset_str is NULL.
662 * src/action.c: execute_actions(): fixed crash when no text widget
663 is selected (thanks to Paul and Melvin).
665 src/prefs_actions.c: added missing reference to Claws team in the
672 session_send_data(): fixed a memory leak and data sending bug.
673 * src/send_message.c:
674 send_message_smtp(): fixed focus management.
678 * src/smtp.[ch]: set the response string to SMTPSession::error_msg
680 * src/send_message.c: show error dialog if error occurred.
681 * src/main.c: send_queue()
682 src/mainwindow.c: send_queue_cb(): don't show error dialog here.
686 * src/session.c: session_close(): kill child process only if
687 state is not SESSION_DISCONNECTED.
688 * src/send_message.c: send_cancel_button_cb()
689 src/inc.c: inc_cancel(): don't set Session::state to
690 SESSION_DISCONNECTED.
691 * src/prefs.[ch]: modified the names of prefs_write_*().
692 * src/address.[ch]: removed.
696 * src/compose.c: compose_template_apply(): overwrite recipients.
700 * src/procheader.c: procheader_date_parse(): removed debug print.
701 * src/session.c: changed every g_print to debug_print.
702 session_child_input(): removed unrequired session_close() (it'll
703 be closed anyway after returning FALSE).
704 * src/send_message.c: send_message_smtp(): changed g_print to
709 * src/procheader.c: procheader_procheader_date_parse(): don't add
710 local timezone offset if timezone is unknown.
711 Made the Y2K workaround code to follow RFC 2822.
712 procheader_scan_date_string(): workaround for date strings which
713 don't have timezone specification.
714 * src/utils.c: remote_tzoffset_sec(): return -1 if timezone is
719 * src/action.[ch]: refactored. Also fixed a bug on MIME mode, and
720 some memory leaks on error.
721 action_update_msgview_menu(): new.
722 * src/messageview.[ch]: added "Tools/Actions" menu. Keep window list.
723 messageview_get_selected_mime_part(): returns MimeInfo of selected
724 part when MessageView is in MIME mode.
725 * src/mimeview.[ch]: mimeview_get_selected_part(): returns MimeInfo
727 * src/summaryview.[ch]: summary_get_selected_msg_list(): returns
728 MsgInfo list of selected messages.
732 * src/prefs_filter.[ch]: include original message's headers as
733 the preset keywords. Modified the sizes of the widgets.
734 * src/utils.[ch]: added str_case_equal() and str_case_hash() for
735 case-insensitive hash.
739 * src/procmsg.c: procmsg_get_filter_keyword(): added X-Sequence to
740 auto-detected headers.
744 src/mainwindow.c: modified function names.
745 get_user_string(): Use input_dialog() instead of its own
750 * src/codeconv.[ch]: conv_encode_header(): don't include '(' and ')'
751 in encoded strings if addr_field is TRUE.
752 * src/compose.c: compose_convert_header(): added a flag 'addr_field'.
756 * src/prefs_actions.[ch]: separated action execution routine into
761 * src/prefs_actions.c: minor code cleanup.
765 * src/codeconv.[ch]: conv_iconv_strdup(): fixed the handling of
771 inc_recv_data_progressive()
772 inc_recv_data_finished()
775 send_send_data_progressive()
776 send_send_data_finished(): added assertion.
780 * src/codeconv.[ch]: conv_iconv_strdup(): fixed potential memory
785 * src/codeconv.[ch]: conv_iconv_strdup(): don't include nul character
786 in source buffer since it messed up some encoding conversion (like
791 * src/procmsg.c: procmsg_get_filter_keyword(): unfold headers and
792 extract ID from List-Id header.
793 * src/utils.[ch]: extract_one_parenthesis_with_skip_quote(): removed.
794 extract_list_id_str(): extract ID string from List-Id header.
798 * src/prefs_actions.c: merged from the claws branch. Fixes several
799 bugs and adds some features.
803 * src/compose.c: compose_parse_header(): fixed a bug that unnecessary
804 linebreaks were included on reediting.
806 src/pop.c: fixed typos: 'occured'.
810 * src/compose.[ch]: implemented auto signature replacement on
812 compose_insert_sig(): added a flag to replace current signature.
813 compose_get_signature_str(): new. It returns signature string.
814 compose_insert_command_output(): removed.
815 compose_select_account(): call compose_insert_sig() on account
817 compose_destroy(): fixed a memory leak of UndoMain object.
818 Compose::sig_str: new. It stores current signature string.
819 * src/gtkutils.[ch]: gtkut_stext_find(): new.
820 Renamed gtk_stext_clear() to gtkut_stext_clear().
821 * src/utils.[ch]: get_wcs_len(): returns wide-character length of
823 normalize_newlines(): converts CR+LF and CR into LF.
824 get_command_output(): returns command output.
828 * src/procmsg.[ch]: procmsg_get_filter_keyword(): new. It returns
829 filter keyword for messages.
830 * src/summaryview.c: summary_filter_open(): use
831 procmsg_get_filter_keyword().
832 * src/messageview.c: create_filter_cb(): implemented.
838 inc_put_error(): display server responses on error.
839 * src/pop.[ch]: added Pop3Session::error_msg, and set server responses
844 * src/messageview.[ch]: separated the forced charset of message view
845 in separate window from the main window.
847 textview_show_message()
849 textview_add_part(): use MessageView::forced_charset if specified.
853 * src/mainwindow.c: modified File menu a bit.
854 * src/menu.[ch]: added functions to handle item factory rc strings.
855 * src/messageview.[ch]: added a menu, and made it take over main
856 window's menu shortcuts.
857 added msginfo which is duplicated on display to MessageView.
858 * src/prefs_common.c: prefs_keybind_apply_clicked(): use
859 menu_factory_clear_rc().
863 * send_message.c: send_message_smtp():
864 re-enabled forcing of SMTP AUTH method.
865 Clear temporary password if authentication failed.
866 * smtp.c: output warning to log and set SMTPSession::error_val
868 * smtp.h: changed error value to enum. Added SMTPSession::error_val.
869 * src/mbox.c: proc_mbox(): force updating of folder.
873 * src/pop.h: changed error value to enum.
874 * src/pop.c: pop3_retr_recv(): return PS_IOERR when inc_drop_message()
876 pop3_ok(): return appropriate error value based on current state.
877 Output warning to log if error occurs.
882 src/news.[ch]: refactored. Remove NNTPSockInfo and use NNTPSession
887 * src/inc.c: inc_pop3_session_do(): retrun appropriate error if
888 Session::state == SESSION_ERROR.
889 * po/POTFILES.in: removed src/automaton.c and src/send.c.
890 Added src/send_message.c.
895 src/session.c: fixed breakage of POP3 retrieval.
896 session_recv_data_from_sock_unescape(): read until terminator
897 appears and also return the actual size.
901 * src/automaton.[ch]: removed.
902 * src/session.c: removed some of the debug output.
903 * src/smtp.c: smtp_session_recv_msg(): workaround in case server
904 returns EHLO-style response to HELO command.
905 Ignore all multiline responses except for EHLO since they are
906 allowed for any command.
911 src/pop.c: fixed retrieval of messages which contain dot-escaped
913 session_recv_data(): added a flag for unescape.
914 session_recv_data_from_sock_unescape(): new. It receives message
915 for each line and unescapes dot-escaped lines.
916 Removed the previous workaround.
917 * src/defs.h: decreased UI_REFRESH_INTERVAL to 40 msec.
921 * src/pop.[ch]: workaround for brekage of retrieval when given size
922 and actual one is different.
926 * src/pop.c: pop3_retr_eom_recv(): ignore invalid end of message
927 since some servers sometimes return incorrect message size.
928 * src/news.c: news_session_new(): zero clear NNTPSession object.
929 Don't initialize Session::sock with nntp_sock->sock to prevent
930 double-free of SockInfo.
931 * src/imap.c: zero clear IMAPSession object.
932 imap_cmd_append(): don't close SockInfo.
936 * src/pop.c: pop3_session_recv_msg(): fixed STLS.
941 src/pop.[ch]: reimplemented using new I/O system.
942 * src/session.[ch]: session_recv_data(): new.
943 session_send_data_to_sock()
944 session_recv_data_from_sock(): decreased the frequency of progress
949 * src/smtp.c: smtp_auth_recv(): fixed CRAM-MD5 authentication.
953 * src/session.[ch]: session_start_tls(): new.
954 session_recv_msg(): made it static.
958 * implemented asynchronous network I/O.
959 * src/session.[ch]: the interface to communicate with servers through
962 src/send_message.[ch]: rewrote using new I/O system.
963 * src/socket.[ch]: renamed *_write() to *_write_all(), and made
964 *_write() as just a simple wrapper for write().
965 * src/utils.c: get_outgoing_rfc2822_str(): new. It modifies the
966 message to send with SMTP or NNTP.
967 file_read_stream_to_str(): new.
971 * src/textview.c: textview_button_pressed(): corrected the range of
973 * src/compose.c: compose_wrap_line_all_full(): treat UTF-8 characters
974 represented with more than 2 bytes as 2 character width and 2 bytes
975 one as a single character width as a workaround for wrapping problem.
979 * src/utils.c: subject_compare_for_sort(): allow null strings (fixes
984 * implemented HTML link correctly.
985 * src/html.[ch]: HTMLAttr, HTMLTag: new structure for attributes /
987 html_get_tag(): new. It parses tag and returns HTMLTag object.
988 html_parse_tag(): also parses <a> tags and 'href' attributes.
989 * src/textview.c: textview_write_link(): new. It creates link string.
993 * src/compose.c: compose_wrap_line_all_full(): fixed an infinite
994 loop / crash bug (thanks to Darko Koruga).
995 compose_write_to_file(): put correct charset element when
996 conversion failed but want to send anyway.
1000 * src/headerview.c: headerview_show()
1001 src/textview.c: textview_write_line(): remove unreadable characters
1002 from displayed strings to prevent crashes on multi-byte
1004 * src/codeconv.[ch]: conv_unreadable_locale(): new. It was separated
1005 from conv_localetodisp().
1009 * src/procmsg.c: procmsg_cmp_by_subject()
1010 src/summaryview.c: summary_cmp_by_subject(): ignore Re: when
1013 subject_compare_for_sort()
1014 trim_subject_for_sort(): new.
1022 * src/defs.h: added -i option to the default sendmail command.
1026 * src/codeconv.[ch]: added missing character encodings and locales.
1031 procmsg_get_mark_sum()
1032 procmsg_open_mark_file()
1033 procmsg_read_mark_file(): take FolderItem instead of directory
1038 * src/codeconv.c: conv_encode_header(): fixed a bug that spaces
1039 which is on the wrap boundary would be lost when encoding long
1040 non-ascii strings (thanks to Sergey Vlasov).
1041 Don't force wrapping within a long word until it reaches hard line
1042 length limit (998 characters) (workaround for the breakage of
1043 long address list with no spaces).
1047 * src/prefs_account.c: fixed compile failure when using neither
1052 * src/codeconv.c: fixed UTF-8 locale support.
1053 conv_get_code_conv_func(): return conv_noconv if locale encoding
1054 is UTF-8. Return conv_latintodisp on ISO-8859-* to locale encoding
1056 conv_convert(): call conv_iconv_strdup() instead of
1057 conv_codeset_strdup().
1058 conv_codeset_strdup(): moved some codes into conv_iconv_strdup().
1062 * src/prefs_account.[ch]: added an option to use command output for
1064 * src/compose.c: compose_insert_sig(): use command output if
1066 compose_insert_command_output(): new.
1070 * src/main.c: main(): remove lock socket if sylpheed is not running
1071 when --status command is executed.
1072 lock_socket_remove(): new.
1076 * src/codeconv.c: conv_codeset_strdup(): don't convert if current
1077 codeset is US-ASCII (or POSIX).
1081 * src/codeconv.c: conv_iconv_strdup(): try to skip invalid characters
1082 and continue conversion.
1086 * src/summaryview.c: summary_selected(): always update widget
1091 * src/utils.c: tzoffset_sec(): fixed a bug that displayed wrong
1092 date in timezones more than GMT+12 or less than GMT-12.
1096 * src/prefs_common.[ch]
1097 src/sourcewindow.c: remember the size of source window.
1098 * src/md5.c: fixed a compile problem with gcc 3.3.
1102 * src/about.c: about_create(): modified the copyright notice.
1106 * src/colorlabel.c: don't use pixmaps for label color rect but draw
1107 rectangles so we can respect the color map of palette based visuals
1108 (fixes the long time crashes on Solaris - thanks to Alfons
1113 * src/procheader.c: procheader_date_parse(): made month string case
1115 * src/prefs_filter.c: prefs_filter_close(): fixed the crash when the
1116 selection list is empty.
1120 * src/quote_fmt_parse.y: removed gettext translatable strings.
1121 * src/unmime.c: unmime_header(): remove broken characters when
1122 code conversion failed.
1123 * src/codeconv.c: conv_encode_header(): fixed a bug that broken
1124 headers if long words more than 75 characters are entered.
1128 * src/prefs_account.c: prefs_account_receive_create()
1129 src/utils.c: to_human_readable(): made units translatable.
1133 * src/codeconv.c: isprintableeuckanji(): don't allow more than 0xf4
1134 at first byte (fixes abort() problem of glibc).
1135 * src/html.c: html_read_line(): remove characters which can't be
1136 displayed on the current locale.
1141 trim_subject_for_compare(): renamed from trim_subject().
1142 trim_subject(): new. It removes [...] or (...) at the beginning
1144 * src/prefs_folder_item.c
1146 added options for trimming summary / compose subject.
1147 * src/summaryview.c: summary_set_header(): trim subject if the folder
1149 * src/compose.c: compose_reply_set_entry(): trim subject if the folder
1155 LBREAK_IF_REQUIRED(): don't break lines before first word (fixes
1156 X-Face header problem).
1157 conv_encode_header(): allow up to 97 characters for one word.
1161 * src/filter.c: filter_match_condition(): fixed the bug that
1162 second condition ignored regex.
1163 * src/news.h: NewsGroupInfo: use guint for message numbers
1164 (fix count in grouplist dialog) (thanks to Thorsten Maerz).
1168 * src/codeconv.c: conv_encode_header(): fixed a segfault bug
1169 on code conversion failure.
1170 conv_get_charset_str()
1171 conv_get_charset_from_str(): optimized using hash table.
1175 * src/quote_fmt_parse.y:
1176 SHOW_MESSAGE_NO_SIGNATURE, SHOW_QUOTED_MESSAGE_NO_SIGNATURE:
1177 treat only "\n-- \n" as a signature separator.
1181 * src/gtkutils.[ch]: gtkut_ctree_node_prev(): new.
1182 * src/summary_search.c: summary_search_execute(): search collapsed
1188 conv_unreadable_latin(): include 0x7f as an unreadable character.
1189 conv_localetodisp(): don't remove 8bit characters by default.
1190 conv_get_current_charset()
1191 conv_get_outgoing_charset(): return ISO-8859-15 if "@euro" is
1192 appended at the last of locale name.
1193 * src/compose.c: compose_write_to_file(): show from and to encoding
1194 when code conversion failed.
1202 * src/procmsg.h: WRITE_CACHE_DATA(): little speed improvement
1203 (thanks to Colin Leroy).
1204 * src/mh.c: mh_get_msginfo(): added NULL check (thanks to Thorsten
1209 * src/textview.c: textview_write_line(): don't convert if conv is
1214 * src/codeconv.[ch]:
1215 renamed conv_guess_encoding() to conv_guess_ja_encoding().
1216 conv_localetodisp(): new. It removes unreadable characters from
1217 (assumed) current locale string.
1218 conv_codeset_strdup(): convert into ISO-8859-1 if dest_code is
1219 NULL and current locale encoding is US-ASCII.
1220 conv_get_code_conv_func(): return conv_ustodisp if US-ASCII is
1221 specified for destination charset.
1222 * src/textview.c: textview_write_line(): use conv_localetodisp()
1223 instead of strncpy2() if conversion failed.
1227 * src/codeconv.c: conv_iconv_strdup()
1229 imap_modified_utf7_to_locale()
1230 imap_locale_to_modified_utf7(): use ICONV_CONST macro to remove
1231 a warning on some systems.
1232 * src/codeconv.c: conv_iconv_strdup(): flush iconv() output and
1234 Return NULL instead of incomplete string if conversion failed.
1238 * src/summaryview.c: summary_execute(): select appropriate node
1239 if currently selected node is to be deleted.
1240 * src/gtkutils.[ch]: gtkut_ctree_node_is_selected(): new. Returns
1241 TRUE if the specified node is selected.
1245 * src/summaryview.c: summary_status_show(): fixed a occasional crash
1246 on deleting or moving.
1250 * src/codeconv.c: conv_unreadable_eucjp(): made the validity check
1251 of EUC-JP more accurate.
1252 isprintableeuckanji(): new. Use table for validity check of EUC-JP.
1264 * src/quoted-printable.c: qp_encode_line(): fixed linebreak
1265 duplication bug if the source string has CRLF.
1267 canonicalize_str(): new. Returns newly allocated canonicalized
1269 uncanonicalize_file(): new. Uncanonicalize (CRLF -> LF) text.
1270 uncanonicalize_file_replace(): new.
1271 * src/compose.c: always canonicalize body before processing, and
1272 uncanonicalize before returning.
1276 * src/procmime.c: procmime_get_encoding_for_charset(): prefer
1277 ENC_8BIT for Russian charsets.
1278 * src/compose.c: compose_write_to_file(): use base64 when signing
1283 * src/prefs_common.c: prefs_send_create(): added a description for
1284 the setting of Content-Transfer-Encoding.
1288 * src/codeconv.c: fixed locale_table for Russian locales (thanks to
1290 * src/procmime.c: procmime_get_encoding_for_charset(): return
1291 ENC_BASE64 for ISO-8859-5, KOI8-* and Windows-1251.
1292 * src/compose.c: compose_attach_append(): set correct Content-
1293 Transfer-Encoding for message/rfc822.
1294 compose_write_to_file(): enabled user-definable Content-Transfer-
1296 * src/prefs_common.[ch]: added an option for user-defined Content-
1301 * src/quoted-printable.[ch]: qp_encode_line(): fixed a bug if the
1302 line doesn't end with linebreak.
1306 * implemented quoted-printable encoding.
1307 * src/quoted-printable.[ch]: qp_encode_line(): new.
1309 compose_write_to_file()
1310 compose_write_attach(): implemented quoted-printable encoding.
1311 compose_attach_property_create(): enabled quoted-printable menu
1313 * src/procmime.c: procmime_get_encoding_for_charset(): return
1314 ENC_QUOTED_PRINTABLE for ISO-8859-* and CP125* charset.
1315 * src/Makefile.am: added $(LIBICONV) to sylpheed_LDADD for libiconv
1322 src/utils.[ch]: get_abbrev_newsgroup_name(): improved the way
1323 of abbreviation of newsgroup name.
1327 * configure.in: show the result of iconv detection.
1331 * src/codeconv.[ch]: made the transition from libjconv to iconv().
1332 conv_iconv_strdup(): new.
1336 src/prefs_common.c: replaced HAVE_LIBJCONV to HAVE_ICONV.
1342 src/prefs_folder_item.c: English fix (property -> properties).
1343 * src/prefs_filter.c: alert if entry is not saved.
1344 prefs_filter_dialog_to_filter(): new.
1348 * src/codeconv.c: conv_encode_header(): fixed a bug which output raw
1349 strings after linefeed.
1354 * src/codeconv.[ch]: code cleanup and optimization.
1355 conv_code_converter_new()
1356 conv_convert(): use functions obtained by conv_get_code_conv_func()
1357 when using libjconv.
1358 conv_codeset_strdup(): code cleanup.
1359 conv_get_code_conv_func(): added an argument for destination
1360 character set, and generalized.
1364 * src/codeconv.c: LBREAK_IF_REQUIRED(): break line only if some
1366 * src/compose.c: compose_convert_header(): remove trailing spaces.
1367 * src/customheader.c: custom_header_read_str(): strip the spaces
1369 * src/prefs_customheader.c: prefs_custom_header_clist_set_row():
1370 strip the spaces of name and value.
1378 * src/codeconv.c: conv_encode_header(): fixed a bug which will run
1379 into infinite loop when encountering invalid characters.
1383 * src/procmsg.[ch]: procmsg_sort_msg_list(): new. It sorts message
1385 * src/summaryview.c: summary_show(): removed summary_sort() because
1386 it is done inside folder_item_get_msg_list(). This will improve
1387 the performance of summary display.
1388 Sorted out the summary sort functions using macros.
1392 src/folder.[ch]: folder_item_get_msg_list(): return pre-sorted
1393 list if FolderItem::sort_key is set.
1394 Added SORT_BY_TO to FolderSortKey enum.
1395 * src/mainwindow.c: added "View/Sort/by recipient".
1403 * src/codeconv.c: conv_encode_header(): fix for redundant space on
1405 * src/compose.c: compose_convert_header(): always pass string to
1406 conv_encode_header() for line-breaking.
1410 * src/textview.c: textview_make_clickable_parts(): fixed incorrect
1411 parsing of email addresses.
1415 * src/defs.h: added DEFAULT_BROWSER_CMD.
1416 * src/mimeview.c: mimeview_view_file()
1417 src/prefs_common.c: prefs_other_create()
1418 src/utils.c: open_uri(): changed the default web browser to
1419 mozilla, and changed 'raise' command (which is undocumented)
1420 to 'new-window' in 'netscape -remote'.
1424 * src/compose.c: compose_send_control_enter(): fixed crash on
1425 Ctrl-Enter when Message/Send has no accelerator key (thanks to
1433 sort_summary_type_cb(): prevent unwanted processing on unchecking
1438 * src/main.c: process command line option before gtk_init() to
1439 enable remote operation without X (thanks to Ruslan N. Balkin).
1440 * src/codeconv.c: conv_encode_header(): fixed a potential buffer
1445 * src/Makefile.am: changed $(target_alias) to $(target_triplet)
1446 (the spec of autotools seems to be changed).
1450 * src/imap.c: get path separator using LIST command if server
1451 doesn't support NAMESPACE (based on the patch by Brian Sammon).
1452 imap_parse_list(): added an argument to return path separator.
1453 imap_get_namespace_by_list(): new.
1457 * src/addr_compl.c: add_address(): removed the debug print.
1458 * src/gtkutils.[ch]: gtkut_window_popup()
1459 src/mainwindow.c: main_window_popup(): applied the patch to fix
1460 the behavior of window popup from Sergey Vlasov (thanks!)
1461 * src/account.c: account_edit_create(): use signal_connect_after
1462 for row_move signal to fix the row position bug.
1463 account_row_moved(): scroll the CList half page.
1464 * src/prefs_filter.c: prefs_filter_row_move(): scroll the CList
1466 * src/summaryview.c: summary_reply(): use selection text only if
1467 the displayed message is selected (thanks to Sergey Vlasov).
1471 * src/codeconv.c: conv_encode_header(): reimplemented the routine
1472 of MIME header encoding. And use Q-encoding method if the current
1473 locale is single-byte one.
1474 * src/utils.[ch]: is_next_nonascii(): take multi-byte string instead
1475 of wide-character string. Consider control codes as non-ASCII.
1476 get_next_word_len(): new. It returns the length of next word.
1477 is_next_mbs(), find_wspace(): removed.
1478 * src/quoted-printable.[ch]: new.
1479 qp_decode_line(): decodes one QP line.
1480 qp_decode_q_encoding(): decodes Q-encoded string in MIME header.
1481 qp_get_q_encoding_len(): returns the length when a string is
1483 qp_q_encode(): Q-encode a string (RFC 2047).
1484 * src/unmime.c: moved the functions for quoted-printable to
1489 * src/send.c: send_message_local(): escape line that only have one
1490 dot character (postfix's sendmail command will stop there).
1494 * src/send.c: send_message_local(): don't escape first-dot line
1495 (thanks to Sergey Vlasov).
1499 * autogen.sh: added 'libtoolize --force --copy' to override the
1501 * acconfig.h: removed.
1502 * configure.in: increased minimal version of GPGME to 0.3.10.
1503 Fixed checking of XIM.
1505 ac/gnupg-check-typedef.m4: added an argument for comment.
1509 * src/imageview.[ch]: fixed conflicting declarations of
1510 imageview_show_image() (thanks to Thorsten Maerz).
1514 * src/compose.c: compose_entry_append(): don't add ", " on subject
1516 * src/codeconv.c: conv_get_outgoing_charset(): obtain outgoing
1517 charset from the table (currently disabled for non-Japanese locales).
1518 conv_get_current_locale(): also refer to LC_CTYPE.
1522 * README: added a description about hidden settings.
1526 * src/prefs_common.[ch]: reorganized the common prefs dialog.
1527 Made enable_hscrollbar and bold_unread hidden options.
1531 * src/quote_fmt_parse.y: fixed a parse error (thanks to Andreas Hinz).
1536 account_find_from_message_file()
1537 account_find_from_msginfo(): new. They find an account from the
1538 headers like 'From:', 'X-Sylpheed-Account-Id:', and 'AID:' in the
1541 compose_reedit(): restore messages' previous account on composition.
1542 compose_write_headers(): add 'X-Sylpheed-Account-Id:' header
1547 * src/compose.c: cleaned up the code using compose_entry_set()
1548 (don't use gtk_entry_set_text() directly).
1552 * src/imap.c: imap_parse_namespace(): fixed a memory leak.
1556 * updated autotools and libtool to the latest version.
1557 * configure.in: added AC_PREREQ(2.50).
1561 * src/textview.c: textview_set_font(): fix for message display in
1562 UTF-8 locales (thanks to Sergey Vlasov).
1566 * src/imageview.[ch]: imageview_show_image(): resize images to fit
1567 the window size if specified.
1568 * src/prefs_common.[ch]: added an option 'Resize attached images'.
1572 * refactoring for SMTP implementation.
1573 * src/session.h: added ui_func to Session.
1574 * src/smtp.[ch]: separated the connection routine from
1575 smtp_session_new() to smtp_connect().
1576 Changed the argument of every function other than smtp_ok() from
1577 SockInfo to SMTPSession.
1578 Call UI callback from each functions.
1579 * src/send.c: send_message_smtp(): separated the code for UI update
1580 into send_progress_dialog_update().
1584 * src/smtp.[ch]: separated smtp_auth() from smtp_from().
1585 * src/send.c: send_message_smtp(): call smtp_auth() and display
1586 the state to the dialog.
1590 * src/filter.c: strmatch_regex(): use extended regex (thanks to
1592 * src/main.c: main(): removed the code for assortrc -> filterrc
1594 * src/gtkutils.c: gtkut_font_load(): only use gdk_font_load() if
1595 current locale is C or POSIX.
1596 gtkut_stext_is_uri_string(): include "www." for URI string.
1597 * src/textview.c: textview_make_clickable_parts(): include "www."
1606 * src/textview.c: textview_add_part(): indicate signature status
1607 using different colors.
1611 * src/folder.c: folder_write_list_recursive(): escape
1612 To/Cc/Bcc/Reply-To strings.
1616 * src/codeconv.c: conv_encode_header(): enabled B-encoding of
1617 headers on locales other than Japanese when not using libjconv.
1621 * src/inc.[ch]: added INC_IO_ERROR to IncState. Also added its
1622 corresponding error message.
1623 inc_pop3_session_do(): set INC_IO_ERROR instead of INC_NOSPACE
1628 * src/prefs_account.[ch]: removed prefs_account_save_config() since
1630 * src/procmime.[ch]: removed procmime_mimeinfo_free() since
1631 procmime_mimeinfo_free_all() can be used in every case.
1635 * src/account.c: account_get_special_folder(): support F_INBOX, and
1640 * src/compose.[ch]: ComposeEntryType: changed COMPOSE_* to
1641 COMPOSE_ENTRY_*, and added
1642 COMPOSE_ENTRY_{REPLY_TO,SUBJECT,FOLLOWUP_TO}.
1645 compose_redirect(): added FolderItem to the arguments, and reflect
1646 settings in the item.
1647 compose_entry_set(): new.
1648 compose_entry_append(): code cleanup.
1649 compose_entries_set_from_item(): take ComposeMode in its arguments,
1650 and enabled FolderItem::use_auto_to_on_reply.
1651 * src/summaryview.c: summary_reply(): pass folder_item to
1652 compose_{reply,forward,redirect}().
1656 * src/gtkutils.[ch]:
1657 gtkut_font_load(): new. It automatically choose font or fontset
1659 gtkut_font_load_from_fontset(): new. It tries to load single font
1660 instead of fontset from a fontset string.
1664 src/summaryview.c: workaround for the problem that couldn't display
1665 8-bit characters in C or POSIX locale (use font instead of fontset).
1668 src/textview.c: made code cleanup using gtkut_font_load*().
1672 * src/mh.c: mh_get_msginfo(): set correct message number.
1676 * src/folder.[ch]: added a new virtual method Folder::get_msginfo().
1677 It returns a new MsgInfo associated to a message number.
1678 folder_item_get_msginfo(): new.
1679 * src/imap.[ch]: imap_get_msginfo(): new.
1680 * src/mh.[ch]: mh_get_msginfo(): new.
1681 * src/news.[ch]: news_get_msginfo(): new.
1685 * src/codeconv.c: conv_euctojis(): fixed a bug which will cause
1686 infinite loop if an invalid code appeared.
1690 * src/codeconv.c: conv_codeset_strdup()
1691 src/html.[ch]: html_read_line(): don't output conversion failure
1693 Added HTML_CONV_FAILED to the enum HTMLState.
1697 * implemented per-folder auto-set address (still in progress).
1698 * src/compose.[ch]: compose_new(): added FolderItem to its arguments,
1699 and set entries from it (if mailto is empty).
1700 compose_entry_append(): activate menu if required.
1701 compose_entries_set_from_item(): new.
1702 * src/folder.[ch]: added auto_to, use_auto_to_on_reply, auto_cc,
1703 auto_bcc, and auto_replyto to FolderItem, and renamed apply_sub to
1705 folder_build_tree(), folder_read_folder_func(),
1706 folder_write_list_recursive(): added the above members.
1707 * src/prefs_folder_item.[ch]: added auto-set addresses.
1708 * src/pop.[ch]: removed Pop3State::prev_folder.
1712 * src/compose.c: allow dropping files by also "moving" files from a
1713 file manager (thanks to Alfons).
1717 * compose_reply_set_entry(): made Reply-To have priority over
1718 List-Post on ML reply.
1722 * src/gtksctree.[ch]: gtk_sctree_set_anchor_row(): new.
1723 * src/summaryview.c: summary_step(): fixed a bug that lost the
1724 correct selection anchor.
1725 summary_key_pressed(): use gtk_sctree_select() instead of
1729 src/recv.c: differentiate disk full and socket errors
1730 (thanks to Colin Leroy).
1734 * src/account.c: account_edit_prefs(): removed unused variables.
1735 * src/compose.[ch]: separated WITH_QUOTE/WITHOUT_QUOTE flags in
1738 compose_reply_set_entry(): receive reply type with one argument.
1739 * src/summaryview.c: summary_reply(): reduced conditional branches.
1743 * src/compose.c: compose_redirect(), compose_reedit(): strip CR
1744 from line ends (thanks to Sergey Vlasov).
1745 * src/folderview.c: renamed 'Rescan folder tree' to 'Rebuild
1750 * src/folder.[ch]: added a virtual method Folder::remove_msgs().
1751 * src/imap.[ch]: implemented imap_remove_msgs() which expunges
1752 messages all at once.
1756 * src/account.[ch]: account_open(): new. It opens account prefs
1757 dialog and reflects to UI when finished.
1759 folderview_button_pressed()
1760 folderview_property_cb(): open account prefs dialog when the
1761 property of the root folder of remote account is requested.
1765 * src/account.c: account_destroy(): unref account information in
1767 * src/folder.[ch]: folder_unref_account_all(): new. It unref the
1768 specified account information in all folders.
1770 folderview_rm_imap_server_cb()
1771 folderview_rm_news_server_cb(): destroy Folder first because
1772 folder_destroy() refers to account information.
1776 * src/account.c: account_find_from_item(): fixed a bug which didn't
1777 select the correct account.
1778 * inc_pop3_session_do():
1779 fixed the resource leak when SSL initialization failed.
1780 Immediately break from temporary event loop if cancelled.
1784 * src/account.[ch]: account_find_from_item(): new.
1786 compose_reply(), compose_forward(), compose_redirect()
1787 src/mainwindow.c: compose_cb(): select optimal account when
1789 * src/folder.[ch]: added FolderItem::apply_sub.
1790 * src/menu.[ch]: menu_find_option_menu_index(): new. It finds the
1791 index of option menu which contains the specified data.
1792 * src/prefs_folder_item(): added Compose tab, and the setting of
1797 * configure.in: added $LDAP_LIBS for lber library detection.
1805 * src/procmsg.c: procmsg_msginfo_get_full_info(): fixed a memory
1806 leak, and added error checking.
1810 * src/compose.[ch]: added a flag Compose::use_newsgroups, and
1811 removed Compose::orig_account.
1812 compose_check_for_valid_recipient(): check only enabled entries.
1813 compose_write_headers()
1814 compose_redirect_write_headers(): add Newsgroups header only
1815 when the entry is enabled.
1816 compose_send(): modified the method of finding a mail account
1817 from a news account so that it tries to match the From address.
1818 * src/send.c: send_message_queue(): enabled the queueing of news
1820 * src/news.[ch]: news_post_stream(): new.
1824 * configure.in: check lber first and use $LDAP_LIBS on the check
1829 * po/*.po: fixed many typos of format strings which will lead to
1830 crash (thanks to Sergey Vlasov).
1834 * src/procheader.c: procheader_parse_stream(): added Cc header
1835 to the target for full parsing.
1836 * src/procmsg.[ch]: procmsg_msginfo_get_full_info(): new. It
1837 returns the full message information from the given information.
1838 * src/compose.c: compose_reply(), compose_forward(): get full
1839 message information for Cc header.
1843 * src/inc.c: inc_account_mail(), inc_all_account_mail(): update
1844 IMAP4 and NNTP folder summary after checking those accounts.
1852 * src/prefs_common.c: prefs_compose_create(): modified the label
1853 of the option for Reply button.
1854 * configure.in: add -lldap and -llber to the 5th argument of
1855 AC_CHECK_LIB() for LDAP library detection.
1860 INSTALL.jp: updated.
1864 * src/mainwindow.c: toggle the behavior of Reply button between
1865 normal reply and reply-to-list.
1866 * src/prefs_common.[ch]: added an option to switch the function
1871 * src/compose.c: compose_new(): removed the workaround for XIM
1872 because it doesn't have any effect and only seems to cause
1877 * src/compose.[ch]: compose_reply(): added a flag for reply-to-ML.
1878 compose_parse_header(): parse also List-Post header.
1879 compose_reply_set_entry(): support reply-to-ML (fall back to
1880 normal reply if ML address is not found).
1883 src/summaryview.c: reorganized Reply menu and added 'Reply to
1885 * src/utils.[ch]: scan_mailto_url(): new. It scans mailto URL and
1886 returns newly allocated parameters.
1890 * src/account.c: account_read_config_all(): set account information
1891 to default before initializing with configuration file.
1892 * src/prefs_account.[ch]: prefs_account_new(): new. It returns a
1893 newly created account information structure initialized by
1894 the default settings.
1899 replace_address_in_edit(): check if newtext is NULL.
1900 completion_window_button_press(): fixed a memory leak.
1901 * src/pop.c: LOOKUP_NEXT_MSG(): don't expire messages whose
1902 recv_time is RECV_TIME_KEEP.
1903 pop3_getrange_uidl_recv(): only set get_all flag if
1904 ac_prefs->getall is set.
1905 pop3_retr_recv(): don't delete messages which are not received
1906 by filter, and set recv_time to RECV_TIME_KEEP in the case.
1907 * src/pop.h: added an enum RecvTime.
1908 * src/inc.c: inc_drop_message(): unlink temporary message file if
1909 not received by filter.
1913 * src/mainwindow.c: added 'Edit/Select thread' menu.
1914 * src/summaryview.[ch]: added 'Select thread' to the context menu.
1915 summary_select_thread(): new. It selects all messages of current
1920 * src/rfc2015.c: check_signature(): corrected error handling and
1925 * src/rfc2015.c: check_signature(): correctly remove the last empty
1926 line, and canonicalize the file part before verifying (this should
1927 fix incompatibility with Evolution or some other MUAs).
1928 * src/utils.[ch]: copy_file_part(): new. It copies the specified
1929 range of file stream to another file.
1933 * src/compose.c: compose_write_to_file(): force BASE64 encoding for
1934 8-bit text when signing (thanks to Colin Leroy).
1938 * src/prefs_common.c: prefs_send_create(): fixed the charset string
1939 for Cyrillic (Windows-1251).
1947 * src/codeconv.c: changed the charset for ru_RU.CP1251 to
1948 Windows-1251. Added bg_BG locale.
1952 * src/compose.c: account_activated(): change the state of menu items
1953 and entries according to the selected account.
1954 compose_select_account(): new. It changes the state of title bar,
1955 menu items and entries.
1959 * src/inc.c: inc_mail(): correct new_msgs when inc_spool() returned
1961 Don't refresh summary view on fetching when open_inbox_on_inc is
1966 * src/summaryview.c: summary_show(): refresh even if open_inbox_on_inc
1967 is set (to avoid summary refresh problem).
1968 * src/imap.c: removed warnings by checking the existence of directory
1969 before calling remove*_numbered_files().
1973 * src/prefs_common.c: corrected English.
1977 * src/prefs_common.[ch]: added an option: "Mark messages as read
1978 only when opened in new window".
1983 folder_tree_destroy()
1984 folder_write_list_recursive(): added sanity check.
1985 * src/imap.c: imap_scan_tree(): if folder->node is NULL and
1986 can't get session, create empty folder node (based on the
1987 Alfons' suggestion).
1991 * src/textview.c: textview_key_pressed(): pass GDK_Delete event to
1993 * src/summaryview.c: summary_key_pressed(): scroll correct TextView
1998 * src/news.c: news_scan_group(): fixed wrong message number
2003 * major refactoring for POP3.
2004 * src/inc.[ch]: moved Pop3State, inc_pop3_state_new(),
2005 inc_pop3_state_destroy(), inc_get_uidl_table(), and
2006 inc_write_uidl_list() into pop.c.
2007 Moved Pop3State::folder_table and Pop3State::inc_state into
2010 inc_put_error(): added lockbusy state.
2011 inc_pop3_session_do(): obtain inc_state from Pop3State::error_val.
2012 inc_cancel(): don't terminate the automaton here but just set
2013 the flags to prevent crash.
2015 pop3_getauth_pass_recv()
2016 pop3_getauth_apop_recv(): check lockbusy state.
2017 pop3_retr_recv(): check Pop3State::cancelled flag.
2018 * src/automaton.[ch]: added 'cancelled' flag to Automaton.
2019 automaton_input_cb(): terminate if cancelled flag is true.
2020 * sylpheed.desktop: changed Type=Internet to Type=Application.
2021 Added Categories=Application;Network;.
2027 src/progressdialog.c: show detailed information to the status
2029 Added cur_total_recv_bytes to Pop3State.
2030 * src/prefs_common.[ch]: added an option to specify whether to
2031 close receive dialog when finished.
2035 * src/folder.[ch]: folder_get_path(): new. It returns the root path
2039 imap_folder_destroy()
2041 imap_remove_all_msg()
2042 news_folder_destroy(): remove cache directories / files when
2043 deleting Folder / messages.
2047 is_file_entry_exist(): check if the argument is NULL.
2049 remove_numbered_files()
2050 remove_expired_files(): fixed memory leaks on error.
2059 src/smtp.[ch]: made Folder and Session destructor virtual method.
2063 * src/compose.c: do joining of normal lines only when auto-wrapping.
2064 * src/main.c: modified the warning message for GnuPG.
2065 * src/about.c: about_create(): modified the compiled-in features
2067 * configure.in: improved LDAP library checking (thanks to Alfons).
2077 compose_wrap_line_all(): backed out the change to join lines that
2082 * configure.in: require at least gpgme-0.3.5.
2086 * src/alertpanel.c: alertpanel_create(): minor modification.
2095 * src/alertpanel.c: alertpanel_create(): modified the layout.
2096 * src/rfc2015.c: check_signature(): don't abort on error.
2100 * src/compose.c: compose_wrap_line_all(): freeze widget only if
2101 required to repress flickers.
2105 * src/compose.c: improved line wrapping.
2107 compose_wrap_line_all(): also join lines that are not indented.
2108 dump_text(): handle multi-byte strings correctly.
2112 * src/compose.c: compose_wrap_line_all(): fix for auto-wrapping
2113 (go to next line when space is entered at line limit).
2117 * src/inc.c: inc_get_uidl_table(): fixed a memory leak reported by
2122 * src/mh.c: mh_scan_tree_recursive(): disabled Maildir folder
2123 checking to prevent confusion.
2127 * src/folder.[ch]: folder_item_get_msg_list(): added a wrapper for
2128 method Folder::get_msg_list().
2129 * src/account.c: account_edit_prefs(), account_delete(): use
2130 folderview_set_all() instead of folderview_rescan_all().
2131 * src/folderview.[ch]:
2132 folderview_check_new_all(): new. Updates all folders.
2133 folderview_rescan_tree(): confirm before executing.
2134 folderview_rescan_all(): commented out since it's not used anymore.
2135 folderview_update_item_foreach(): added a flag for summary update.
2136 * src/inc.c: inc_finished(): update summary only when
2137 prefs_common.scan_all_after_inc is set.
2138 inc_drop_message(): set mtime of target folder to 0 to force
2139 the updating of summary.
2140 inc_start(), get_spool(): update also summary when updating
2142 * src/mainwindow.c: changed 'File - Rescan folder tree' to
2143 'File - Check for new messages in all folders'.
2147 * src/compose.c: compose_write_to_file(): clearsign message body
2149 compose_clearsign_text(): new. Replaces the string with clearsigned
2151 * src/prefs_account.c: added an option for clearsign.
2152 * src/rfc2015.c: rfc2015_clearsign(): new.
2153 pgp_sign(): added a flag for clearsign.
2154 * src/utils.[ch]: get_tmp_file(): return newly allocated unique file
2155 name (needs to be freed by caller).
2156 str_write_to_file(), file_read_to_str(): new.
2160 * src/procmsg.c: procmsg_read_mark_file(): check key duplication
2161 to avoid memory leak.
2165 * src/base64.c: include string.h for memcpy().
2166 * src/gtksctree.c: use macro ABS() instead of function abs().
2167 * src/prefs_account.c
2168 src/prefs_common.c: renamed 'send' to 'p_send' so as not to
2169 conflict with the function send() in sys/socket.h.
2170 * src/mainwindow.c: commented out the unnecessary functions.
2171 * src/utils.c: canonicalize_file_replace(): correct warning message.
2175 * src/utils.[ch]: get_tmp_file(): new. Returns the directory for
2176 temporary files in ~/.sylpheed/.
2177 * src/main.c: create temporary directory in ~/.sylpheed/.
2179 src/inc.c: create temporary files in ~/.sylpheed/, and modified
2181 compose_exec_ext_editor(): fixed a bug that failed to create the
2182 temporary file if g_get_tmp_dir() returned directory other than
2187 * src/utils.c: copy_file(): check if dest_bak != NULL when unlinking.
2191 * src/utils.[ch]: canonicalize_file_replace(): fixed a bug that fails
2192 to replace the file when the given file and temporary file are not
2193 on the same filesystem.
2194 copy_file(): added a flag whether to keep backup.
2195 move_file(): added a flag whether to overwrite the destination file.
2199 * src/socket.[ch]: fixed the linking failure when IPv6 is enabled.
2200 * src/select-keys.c: modified key selection dialog.
2204 * src/socket.[ch]: my_gethostbyname(): new.
2205 * src/utils.c: get_domain_name(): return FQDN instead of short
2206 hostname (thanks to Bob Woodside).
2207 * src/template.c: made the debug messages less verbose.
2211 * src/prefs_common.[ch]: removed obsolete default sign key setting.
2212 * src/utils.c: canonicalize_file(): correct the error check of
2217 * src/compose.c: compose_write_to_file():
2218 canonicalize line endings before encrypting/signing (this will fix
2219 interoperability with other MUAs).
2220 Removed unnecessary strdup.
2221 Don't encrypt/sign draft message.
2223 canonicalize_file(), canonicalize_file_replace(): new.
2225 src/select-keys.c: changed g_message() to debug_print() and
2227 * src/mimeview.c: mimeview_check_signature(): removed unnecessary
2228 MIME structure scanning.
2229 * src/textview.c: textview_add_part(): show signature status in
2232 src/sigstatus.c: modified translatable strings and some MIME
2237 * src/procmsg.c: procmsg_save_to_outbox(): don't forget to remove
2238 the temporary file when saving from queue.
2244 src/prefs_account.[ch]
2245 src/prefs_common.[ch]: merged GnuPG stuff from the claws branch.
2246 Modified some messages.
2250 * src/textview.c: textview_scan_header(): fixed a memory leak
2255 * src/prefs_actions.c: execute_actions(): put create_io_dialog()
2256 in right conditional block.
2260 * src/compose.c: compose_wrap_line_all(): fixed character buffer
2266 log_error(): add time stamp to log messages.
2271 corrected a typo (HAVE_SYS_SELECT -> HAVE_SYS_SELECT_H)
2275 * src/socket.c: implemented socket I/O timeout.
2277 * src/pop.c: check errors and return error value correctly.
2281 * src/prefs_actions.c: made the action's input/output dialog display
2282 without delay. Made the dialog modal instead of making window
2283 insensitive. Also cleaned up its UI.
2287 * implemented --attach command line option.
2289 Cmd::attach_files: new member to store file paths.
2290 parse_cmd_opt(): added --attach option. --compose option is implied.
2291 prohibit_duplicate_launch()
2292 lock_socket_input_cb(): added "compose_attach" message.
2295 src/textview.c: renamed compose_new_with_recipient() to
2296 compose_new(), and added an argument for attachment files.
2300 * src/logwindow.c: freeze GtkText widget while hidden.
2301 log_window_append(): changed the header for message and warning.
2305 * src/news.c: implement automatic cache expiration.
2306 news_delete_expired_caches(): new.
2307 news_get_article_list(): fixed a bug that nonexistent messages
2308 were not removed from list.
2309 * src/procmsg.[ch]: procmsg_get_last_num_in_msg_list(): renamed
2310 procmsg_get_last_num_in_cache().
2311 * src/utils.[ch]: remove_expired_files(): new.
2316 inc_mail(): force summary refresh when using external command for
2318 inc_all_account_mail(): fixed a bug on spool checking failure.
2329 src/editldap_basedn.c
2331 src/prefs_common.c: fixed memory leaks which didn't free strings
2332 gtk_editable_get_chars() returned. And minor code cleanups.
2334 src/vcard.h: removed C++-style comments.
2338 * src/codeconv.c: conv_encode_header(): fixed a problem in encoding
2339 strings which include both multi-byte and us-ascii characters.
2343 * src/utils.c: remove_numbered_files(): don't try to unlink()
2346 conv_get_code_conv_func(): return conv_anytodisp() if charset is
2348 conv_unmime_header_overwrite()
2349 conv_unmime_header(): do conv_anytodisp() before decoding header.
2357 * src/compose.c: added 'Tools/Actions' menu.
2361 * src/base64.c: a minor fix for BASE64VAL() macro.
2365 * src/base64.c: base64_decode(): fixed a buffer overrun bug.
2373 src/base64.[ch]: rewrote the BASE64 encode / decode routines.
2374 base64_encode(), base64_decode(): new.
2375 * src/rfc822.[ch]: removed.
2377 src/about.c: removed the copyright notice for fetchmail.
2383 src/unmime.[ch]: rewrote the MIME decode routines.
2385 unmime_quoted_printable_line(): new.
2387 procheader_get_one_field()
2388 procheader_get_unfolded_line(): remove also CR.
2392 * libkcc: removed from the source tree.
2394 src/about.c: removed the copyright notice for libkcc.
2395 * src/codeconv.c: conv_guess_encoding(): check for ASCII code first
2397 * src/prefs_actions.c: removed unnecessary spaces/tabs.
2401 * src/prefs_actions.c: comply with the coding style.
2402 Modified the UI design.
2403 * src/mainwindow.c: main_window_set_menu_sensitive(): enable Actions
2404 menu when multiple messages are selected.
2408 * src/prefs_actions.[ch]: merged the 'Actions' feature from claws.
2409 update_actions_menu(): simplified the menu deletion.
2410 * src/mainwindow.c: added 'Actions' menu to Tools and Configuration.
2414 * src/codeconv.[ch]: implemented conv_jistoeuc(), conv_euctojis(),
2415 conv_sjistoeuc(), and conv_guess_encoding(). Removed the dependency
2420 * configure.in: added check for strchr.
2424 * src/prefs_common.[ch]
2425 src/inc.c: added an option to inhibit receive error dialog.
2429 * src/account.c: account_find_from_address(): support multiple
2430 addresses in header.
2434 * src/gtksctree.[ch]: changed GtkSCTree::anchor_row from gint to
2435 GtkCTreeNode* so that it won't become invalid after the row move.
2436 Removed dependency to gtkutils.c.
2437 * src/prefs_common.[ch]
2438 src/summaryview.c: summary_selected(): added an option to show
2439 message when cursor keys are pressed on summary view.
2445 src/compose.c: changed "host_alias" to "target_alias" so that it
2446 shows the correct system name on cross-compiling (thanks to
2451 * src/prefs_account.[ch]: added the option menu to force an
2452 authentication method for SMTP AUTH.
2454 src/smtp.[ch]: smtp_from(), smtp_auth(): added an argument to
2455 specify the authentication method for SMTP AUTH.
2456 smtp_ehlo(): allow AUTH responses that don't comply with the RFC.
2460 * src/prefs_common.[ch]
2461 src/compose.c: enabled "Wrap on input".
2465 * src/summaryview.[ch]
2466 src/mainwindow.c: added "Go to/{Prev,Next} new message" menu.
2467 Made some code cleanups.
2472 src/prefs_common.[ch]: added the hidden option to specify the
2473 policy of the vertical scrollbar on folder view.
2477 * src/messageview.[ch]:
2478 messageview_copy_clipboard(): fixed a bug that couldn't copy text
2480 messageview_get_current_textview(): new.
2481 messageview_get_text_widget(): removed.
2482 * src/quote_fmt_parse.y: quote message even if msginfo is empty.
2483 * src/compose.[ch]: implemented the "Paste as quotation" feature.
2484 text_inserted(): new callback for "insert_text" signal.
2485 Add quote mark to the pasted text if Compose::paste_as_quotation
2490 * src/compose.c: if the Content-Type of a file is text/*, check
2491 its content and set the optimal Content-Transfer-Encoding (thanks
2496 * src/textview.c: textview_key_pressed(): pass key press event to
2497 main window to activate menu shortcuts (thanks to Alfons).
2501 * src/folder.c: folder_build_tree(): use strtoul() instead of atoi()
2502 for mtime to prevent flooring.
2505 imap_move_msgs_with_dest()
2506 imap_copy_msgs_with_dest(): fixed a bug that prevented multiple
2508 imap_parse_envelope()
2509 imap_cmd_envelope(): use RFC822.HEADER instead of ENVELOPE to get
2510 full information of messages and simplify the parser. Also fixed
2511 the bug that References header was ignored on threading.
2512 imap_parse_one_address()
2513 imap_parse_address(): removed.
2514 imap_get_header(): new. It reads the RFC822 header and returns
2515 a newly allocated string.
2516 * src/procheader.[ch]: changed procheader_parse() to
2517 procheader_parse_stream() and added different interfaces for it.
2521 * po/zh_TW.Big5.po: fixed a mistake that caused a crash.
2529 * src/inc.c: inc_get_uidl_table(): fixed a bug that garbage time
2530 could be inserted into the hash table.
2531 inc_write_uidl_list(): a minor code cleanup.
2532 * src/mainwindow.c: main_window_get_current_state():
2533 make the state unexecutable on an empty folder.
2534 * src/summaryview.c: summary_sort(): don't sort on an empty folder.
2535 * src/pop.c: minor code cleanups.
2539 * src/prefs_account.c: CREATE_RADIO_BUTTONS(): fixed a typo and
2540 corrected the behavior of the radio buttons.
2544 * implemented 'Delete messages after N days' feature for POP3.
2546 inc_get_uidl_table()
2547 inc_write_uidl_list(): moved the location of UIDL list file from
2548 RC_DIR/uidl-* to RC_DIR/uidl/*.
2549 Added received time for each UIDLs.
2550 src/main.c: main(): create RC_DIR/uidl/ directory.
2551 src/pop.[ch]: LOOKUP_NEXT_MSG(): delete expired messages here.
2552 Added recv_time to Pop3MsgInfo.
2553 src/prefs_account.[ch]: added an option for the number of days for
2562 * src/folder.c: folder_set_missing_folders(): fixed a bug that
2563 caused multiplication of special folders on startup if their
2565 * src/folderview.c: folderview_remove_mailbox_cb(): modified the
2570 * src/compose.c: compose_reply(), compose_forward(): reverted the
2571 last change since it causes lockup problem.
2575 * src/compose.c: compose_reply(), compose_forward(): don't autowrap
2577 compose_new_with_recipient(): workaround for initial XIM problem.
2581 * src/mainwindow.c: sort ascending / descending order can be
2582 specified with separated menu items.
2583 Added "View/Sort/Don't sort" menu item.
2584 * src/summaryview.[ch]: summary_sort(): added an argument for
2589 * implemented persistent sort order.
2591 folder_build_tree(): read 'sort_key' and 'sort_type' attributes.
2592 folder_write_list_recursive(): write sorting state.
2594 src/summaryview.[ch]: summary_show(): sort if required.
2595 select the top node on descending sort.
2596 Removed SummarySortType and sorting state variables from
2604 src/prefs_account.[ch]: enabled NNTP over SSL.
2605 * src/nntp.c: nntp_group(): issue MODE READER command and retry
2606 when GROUP command once failed (this seems to avoid problems on
2607 some broken news servers).
2611 * faq/it/*.html: corrected DOS linebreaks.
2612 * faq/*/*.html: changed ">" to ".
2616 * src/prefs_account.c: prefs_account_protocol_activated(): hide
2617 unnecessary frames in SSL tab.
2623 src/prefs_account.[ch]: enabled STLS command in POP3.
2624 * src/account.c: account_clist_set_row(): display TLS setting.
2628 * src/compose.c: compose_send_later_cb(): support redirect function.
2631 src/prefs_account.[ch]: enabled STARTTLS command in IMAP4.
2633 src/smtp.[ch]: use SSLType instead of SSLSMTPType.
2637 * src/utils.[ch]: make_dir(): wrapper for mkdir() and chmod().
2638 * src/compose.c: compose_create(): removed unrequired lines.
2642 * src/news.c: news_scan_group(): fixed a bug that set the wrong
2643 values in some cases.
2644 * src/prefs_account.c: corrected English in Advanced - Folder
2649 * src/textview.c: textview_show_message(), textview_show_part():
2650 fixed a bug that GtkSText *text pointed the incorrect object.
2651 textview_add_part(): freeze GtkSText while adding RFC822 headers.
2652 textview_show_part(): fixed a bug that couldn't display single
2653 part MIME message as text.
2657 * src/compose.c: compose_redirect_write_to_file(): correct the target
2658 for change_file_mode_rw(). Check if fclose() succeeded. Unlink
2659 incomplete file when an error occured.
2664 compose_create(): disable menus for draft on redirection mode.
2665 compose_redirect_write_to_file(): correct the error handling of
2667 * src/prefs_common.c: turned off the "Display recipient on `From'
2668 column if sender is yourself" option by default.
2672 * src/compose.[ch]: implemented 'Redirect' (aka Bounce) feature.
2673 Based on the implementation of the claws branch.
2674 compose_redirect(): create a new window and make it uneditable.
2675 compose_redirect_write_to_file(): copy headers and body of
2676 original message except for some.
2677 compose_redirect_write_headers(): add extra "Resent-*" headers.
2678 compose_create(): set menu sensitivity for redirection mode.
2682 * src/codeconv.c: conv_encode_header(): fixed a bug that unnecessary
2683 space is inserted between encoded string and the following folded
2684 one (thanks to Masahiro Tomita).
2688 * src/mainwindow.[ch]: some refactoring has been made.
2689 main_window_toggle_message_view(): moved summary_toggle_view_real()
2691 * src/messageview.[ch]: messageview_is_visible(): new.
2692 * src/summary_search.c
2693 src/summaryview.[ch]: SummaryView::msg_is_toggled_on: removed.
2694 Instead use messageview_is_visible().
2698 * src/mainwindow.c: added 'Expand/Collapse all threads' menu.
2699 * src/summaryview.[ch]:
2700 summary_expand_threads(), summary_collapse_threads(): new.
2704 * src/mainwindow.c: Fixed the behavior of
2705 '/View/Show or hide/Folder tree' and
2706 '/View/Show or hide/Message view' toggle menu.
2707 Removed '/View/Toggle summary view' menu and integrated the
2708 function into '/View/Show or hide/Message view'.
2709 main_window_set_widgets(): change the state of toggle menu items.
2710 * src/prefs_common.c: prefs_keybind_apply_clicked(): updated menurc
2715 * src/mimeview.c: mimeview_set_multipart_tree(): show single part
2716 MIME contents other than text as children of message/rfc822 part.
2718 procmime_mimeinfo_next(): modified for message/rfc822 part which
2719 content-type is single part MIME.
2720 procmime_scan_multipart_message(): fix for nested message/rfc822
2721 part. Corrected the size of the contents of message/rfc822.
2722 * src/textview.c: textview_show_part(): extract the contents of
2723 multipart/* and message/rfc822. Some code cleanups.
2724 textview_add_parts(): new. It adds the all parts under a part to
2726 textview_clear(): reset body_pos and cur_pos.
2730 * src/addr_compl.c: modified so that it behaves better.
2731 get_address_from_edit(): ignore comma inside of brackets.
2732 completion_window_apply_selection(): new. Only apply the current
2734 completion_window_accept_selection(): removed.
2735 address_completion_complete_address_in_entry(): minor code cleanup.
2736 don't replace address in entry here.
2737 completion_window_select_row(): always apply clist selection to
2739 completion_window_key_press(): don't apply selection here.
2743 * src/imap.c: imap_create_folder(): keep trailing directory separator
2744 to create a folder that contains sub folder.
2748 * src/foldersel.c: sort tree with case insensitive.
2749 * src/mainwindow.c: allsel_cb()
2750 src/messageview.c: messageview_select_all(): fixed 'Select all'
2752 * src/mainwindow.c: removed common and account prefs button from
2757 * src/compose.c: compose_account_option_menu_create(): check if
2766 * manual/ja/*: updated the Japanese manual (thanks to Yoichi Imai).
2767 manual/en/*: updated the English manual.
2769 faq/it/*: added German and Italian FAQ.
2772 faq/fr/*: updated FAQs.
2774 src/mainwindow.c: added German and Italian language.
2778 * src/prefs_account.c: turn off "receive at get all" option by default
2779 when creating an IMAP or News account.
2783 * src/imap.c: imap_scan_tree(): don't use namespace for prefix.
2784 * src/prefs_folder_item.c: show also identifier path.
2785 Made layout using table. Show uneditable entry using background
2787 * src/procmime.c: procmime_get_tmp_file_name(): generate safe
2792 * src/automaton.[ch]: added UI callback to Automaton.
2794 src/pop.c: use callback instead of calling inc_progress_update()
2796 pop3_getrange_uidl_recv(): don't fall back to LAST when 'get all'
2801 * src/folderview.c: properly sort abbreviated newsgroups.
2806 src/prefs_common.[ch]
2807 src/summaryview.c: added an option to specify the minimum length
2808 for abbreviated newsgroups name.
2812 * src/folderview.c: folderview_check_new(): skip unselectable folders.
2813 * src/summaryview.c: added 'Create filter rule' to the context menu.
2814 * src/imap.c: some code cleanups.
2815 imap_scan_tree_recursive(): get path separator for each calls.
2816 imap_get_path_separator(): new.
2820 * src/imap.[ch]: supported namespace for others/shared folders
2822 imap_parse_namespace(): parse also others/shared namespace.
2823 imap_find_namespace(): search also others/shared namespace.
2825 strchr_parenthesis_close(): return pointer to closing parenthesis.
2826 strsplit_parenthesis(): split parenthetic list into array of
2831 * src/procheader.c: procheader_date_parse(): fixed a bug that didn't
2832 parse date string like "Mon,6 May 2002 20:31:12 +0800".
2833 procheader_scan_date_string(): new. Separated string scanning
2834 part from procheader_date_parse().
2838 * src/summary_search.c: summary_search_execute(): unlock while
2839 selecting summary row (thanks to Martin Schaaf).
2840 * src/summaryview.c: summary_set_column_titles(): reversed the
2841 direction of the arrow so that it matches with Win/Mac style.
2845 * src/compose.c: compose_write_headers(): quote self address name
2846 if required. Some code cleanups. Don't override Newsgroups and
2847 Cc with custom headers.
2848 * src/imap.c: imap_add_msg(): return UID for appended message.
2849 * src/compose.c: compose_queue(): check if queue folder exists.
2850 * src/imap.c: QUOTE_IF_REQUIRED(): quote also other IMAP special
2852 imap_open(): removed an unrequired argument.
2856 * src/utils.[ch]: trim_string(): new. It trim characters longer than
2857 the specified length and adds "...".
2858 * src/folderview.c: trim folder name when displaying dialog.
2862 * src/imap.c: imap_create_folder(): don't add prefix for root INBOX
2864 * src/folderview.c: folderview_select()
2865 src/summary_search.c: summary_search_execute(): lock summary view
2866 while searching (thanks to Martin Schaaf).
2874 * sylpheed*.png: added new app icons by WAKAI Kazunao (thanks!).
2878 * src/summaryview.c: summary_show(): fixed a bug that didn't process
2880 * src/account.c: account_edit_prefs(): fixed a crash bug when account
2882 * src/prefs_account.c: prefs_account_apply(): display error dialog
2883 if account name is empty.
2884 * src/imap.c: changed some log_print() to debug_print() to reduce
2889 * src/mh.c: mh_get_new_msg_filename(): new. It returns the filename
2893 mh_do_move_msgs_with_dest()
2895 mh_copy_msgs_with_dest(): use mh_get_new_msg_filename().
2896 * src/utils.[ch]: added is_file_entry_exist() which returns TRUE
2897 if stat() succeeded.
2899 imap_fetch_msg(): SELECT mailbox before FETCH if required.
2900 imap_scan_folder(): set last_num using the value of UIDNEXT.
2901 imap_select(): return immediately if there is no need for SELECT.
2902 preserve the path of currently selected mailbox.
2903 imap_status(): added UIDNEXT.
2907 * src/folder.c: folder_item_scan(): removed the warning.
2908 * src/inputdialog.[ch]: input_dialog_combo(): added an argument for
2909 setting case sensitivity.
2913 * src/mainwindow.c: main_window_create(): restrict the minimum size.
2917 * src/compose.c: merged the new line-wrapping routine.
2918 join_next_line(): fixed a bug that didn't join multibyte
2920 get_indent_length(): modified enums and variable names.
2921 INDENT_CHARS: don't indent ':'.
2923 folderview_rename_folder_cb()
2924 folderview_delete_folder_cb(): support folder identifier.
2925 folderview_rm_imap_folder_cb(): integrated with
2926 folderview_delete_folder_cb().
2930 * src/folder.[ch]: folder_item_scan(): return -1 if scanning failed.
2931 * src/folderview.c: folderview_check_new(): abort checking if
2932 folder_item_scan() failed.
2936 * src/imap.c: imap_create_missing_folders(): create only INBOX and
2938 * src/prefs_folder_item.c: prefs_folder_item_set_dialog(): made the
2939 type of news folders unchangeable.
2940 prefs_folder_item_destroy(): use prefs_dialog_destroy().
2941 * src/prefs.[ch]: prefs_dialog_destroy(): new.
2945 * src/prefs_account.[ch]: added special folder setting to Advanced
2946 tab. Also moved "IMAP server directory" setting to there.
2947 * src/account.[ch]: account_get_special_folder(): new. It returns
2948 the optimal special folder for accounts.
2949 * src/compose.c: use account_get_special_folder().
2950 * src/prefs_folder_item.[ch]: new. Implemented folder property
2951 dialog, and the special folder settings (most of the functions in
2952 claws are not integrated yet, and the structure is slightly
2954 * src/folderview.c: enabled Property menu.
2958 * src/textview.c: IS_RFC822_CHAR(): make email parser also stop
2959 scanning when encountering separators ',' and ';'.
2963 * src/mainwindow.c: reorderd the menu a bit.
2964 * src/compose.c: made 'Ctrl-Enter' ignore some modifiers.
2965 compose_reply_set_entry(): made 'Reply to sender' work for
2970 * src/compose.c: compose_create(): set geometry hints to restrict
2971 the maximum size of window.
2972 * src/imap.c: imap_parse_list(): don't mark INBOX as \Noselect.
2973 imap_get_uncached_messages()
2974 imap_cmd_fetch(): ignore responses which don't include FETCH.
2978 * COPYING: re-licensed (removal of "NO-VIRUS CLAUSE" and addition of
2979 the clause for OpenSSL).
2983 * src/prefs_account.c
2984 src/smtp.[ch]: fixed a bug that didn't complie with OpenSSL enabled.
2990 src/session.[ch]: first reorganization of SMTP protocol handling.
2991 SMTPSession: new class which is a sub class of Session.
2992 smtp_session_new(): moved send_smtp_open() into this function.
2993 smtp_from(): moved SMTP AUTH calls into smtp_auth().
2994 smtp_auth(): use server response for SMTP AUTH method.
2995 smtp_ehlo(): read server response and set auth type flags.
2996 smtp_helo(): separated EHLO command.
2997 smtp_ok(): return the last server response if the buffer is
2999 * src/esmtp.[ch]: merged into smtp.[ch].
3000 * src/imap.c: imap_session_destroy_all(): use session_destroy().
3004 * src/imap.c: imap_open(): show warning message if IMAP4 session
3005 can't be established.
3009 * src/compose.c: made template able to be inserted into the current
3011 * src/mainwindow.c: moved some menu items under the submenu
3012 '/View/Show or hide'.
3017 src/inc.c: changed folder_find_item_from_path() to
3018 folder_find_item_from_identifier().
3020 src/prefs_filter.c: use folder_item_get_identifier() to specify
3025 * src/folder.[ch]: implemented "folder identifier" (and fixed a bug
3026 existed in claws' implementation).
3027 folder_find_from_name(): find Folder from name and type.
3028 folder_get_identifier(): return Folder id.
3029 folder_item_get_identifier(): return FolderItem id.
3030 folder_find_item_from_identifier(): find FolderItem from id.
3031 folder_get_type_string(): return folder type string.
3032 folder_get_type_from_string(): return FolderType from string
3033 (and fixed the wrong g_strcasecmp() usage).
3035 src/import.c: use folder_item_get_identifier() and
3036 folder_find_item_from_identifier().
3040 * src/imap.c: imap_parse_atom(): fixed a bug that cur_pos didn't
3041 point the correct address after reading the continuous line.
3042 imap_scan_folder(): set new number to 0 if unseen number is 0.
3043 imap_parse_flags(): don't add new and unread flag if \Seen flag
3045 * ac/Makefile.am: removed gpgme.m4 from MACROS.
3049 * fixed the old problem that couldn't add flags to currently opened
3052 compose_send(): update outbox after saving.
3054 compose_draft_cb(): use procmsg_add_flags().
3055 * src/folder.[ch]: added "opened" flag and "mark_queue" list to
3057 * src/main.c: send_queue(): send from all queue folders.
3058 * src/mainwindow.c: send_queue_cb(): send from all queue folders.
3060 procmsg_flush_mark_queue(): new. Write all queued flags into file.
3061 procmsg_add_flags(): new. Add specified flags to the folder.
3062 procmsg_send_queue(): added an argument to specify queue folder.
3063 procmsg_save_to_outbox(): use procmsg_add_flags().
3064 * src/summaryview.c:
3065 summary_show(): up the opened flag of FolderItem.
3066 summary_clear_list(): down the opened flag of FolderItem.
3067 summary_write_cache(): call procmsg_flush_mark_queue().
3071 * src/summaryview.[ch]: trim the tail of folder name and selected
3072 number on the status label if the space is not enough.
3076 * src/imap.c: imap_create_special_folder(): fixed a bug that didn't
3077 set SpecialFolderItemType when creating special folders under
3079 * ac/gpgme.m4: removed.
3081 * ac/missing/gdk-pixbuf.m4
3082 ac/missing/gettext.m4
3084 ac/missing/imlib.m4: added for convenience.
3088 * src/esmtp.c: esmtp_auth(): fixed a bug that some garbages are
3089 shown after the decoded challenge string. Fixed a memory leak.
3091 * src/compose.c: compose_draft_cb(): mark draft messages as read.
3092 * src/folderview.c: folderview_update_node(): disable emphasis
3093 for Outbox and Draft folders.
3097 * src/messageview.c: messageview_show(): fixed a memory leak.
3098 * src/summaryview.c: summary_save_as(): show error dialog if copy
3100 * src/about.c: about_show(): make the window active if it is already
3105 * src/compose.c: show confirmation dialog before sending if Subject
3107 compose_check_entries(): new.
3109 compose_send_later_cb(): use compose_check_entries().
3110 * src/imap.c: imap_parse_atom(): more fix for parsing responses.
3114 * src/imap.c: imap_parse_atom(): fixed a bug that didn't parse the
3115 responses with continuous line correctly, and fixed a memory leak.
3119 * src/undo.c: undo_insert_text_cb(): fixed a crash bug if the text
3121 * src/gtkstext.c: gtk_stext_button_press(): cancel current selection
3122 after pasting with middle button to prevent the selection growth.
3127 folderview_rename_folder_cb()
3128 folderview_delete_folder_cb(): modify filter rules only if the
3129 target folder is in the default mailbox.
3130 * src/utils.c: get_abbrev_newsgroup_name(): removed a redundant
3137 src/prefs_common.c: changed 'Tool' menu to 'Tools'.
3138 Moved 'Delete duplicated messages' under 'Tools'.
3142 * src/folderview.c: SET_SPECIAL_FOLDER(): keep the same parent
3144 * src/imap.c: imap_create_special_folder(): fixed a crash bug
3145 when folder creation failed, and re-try to create folders under
3147 imap_scan_tree_recursive(): don't automatically add namespace
3148 prefix if it's INBOX. Search also under the INBOX for special
3150 * src/foldersel.c: SET_SPECIAL_FOLDER(): keep the same parent
3155 * src/utils.[ch]: get_abbrev_newsgroup_name(): new. It returns the
3156 abbreviated newsgroup name.
3157 * src/folderview.c: folderview_update_node(): display newsgroups
3158 with abbreviated name if name and path is the same.
3159 * src/summaryview.c: summary_status_show(): show the newsgroup with
3165 src/folderview.c: changed the label 'Draft' to 'Drafts'.
3166 * src/imap.c: changed the directory name 'Draft' to 'Drafts'.
3167 imap_create_missing_folders(): fixed the wrong assignment of
3168 Queue folder to draft.
3172 * enabled Sent / Draft / Queue folders on IMAP server.
3173 * src/compose.c: compose_queue(), compose_draft_cb(): use account's
3174 queue and draft folder if they exist.
3176 imap_create_trash(): removed.
3177 imap_create_special_folder(): new. Generalized imap_create_trash().
3178 imap_create_missing_folders(): automatically create missing folders.
3179 imap_is_msg_changed(): added the dummy method.
3180 imap_scan_tree_recursive(): search also Sent, Draft and Queue
3181 folders. Minor code cleanups.
3182 imap_parse_envelope(): check for null strings.
3183 src/procmsg.c: procmsg_read_cache(): add F_QUEUE or F_DRAFT flag
3184 for messages on IMAP folder.
3188 * src/compose.c: compose_send(): use account's outbox folder
3190 * src/procmsg.[ch]: procmsg_save_to_outbox(): changed the API so
3191 that the outbox can be specified.
3195 * src/compose.c: don't save to outbox when messages are queued.
3196 compose_save_to_outbox(): moved to procmsg.c.
3197 * src/procmsg.[ch]: procmsg_send_queue(): save to outbox when
3199 procmsg_save_to_outbox(): new. Removes the queueing headers if
3200 needed, and adds the given file to the outbox.
3204 * src/compose.c: compose_wrap_line(): treat '|' also as quote char.
3205 get_indent_length(): treat ':' and '#' also as quote char, and
3206 cleaned up using strchr().
3210 * src/mainwindow.c: modified some menu items.
3214 * src/defs.h: changed OUTBOX_DIR from "outbox" to "sent"
3215 (current "outbox" will be kept until rescan).
3216 * src/folder.c: folder_set_missing_folders(): create the missing
3219 src/folderview.c: changed 'Outbox' to 'Sent'.
3220 * src/main.c: call folder_set_missing_folders().
3221 * src/mh.c: mh_scan_tree(): create missing folders.
3222 * src/summaryview.c: summary_set_menu_sensitive(): fixed a bug that
3223 didn't set the menu sensitivity correctly.
3228 src/imap.[ch]: implemented folder renaming on IMAP (thanks to Mio).
3229 folderview_rename_folder_cb(): reopen the current folder when
3230 the ancestor is renamed.
3231 imap_rename_folder(): new method implementation.
3233 imap_rename_folder_func(): new.
3234 imap_remove_folder(): remove also the cache directory.
3238 * src/imap.c: implemented locale encoding <-> modified utf-7
3239 conversion, and supported i18n of folder name (thanks to Suzuki
3241 imap_path_separator_subst(): handle the escape characters of
3243 imap_modified_utf7_to_locale()
3244 imap_locale_to_modified_utf7(): new.
3245 imap_create_trash(): modified so that it create the Trash folder
3246 to the correct location when imap directory is specified.
3247 imap_get_real_path(): removed debug print.
3251 * src/socket.c: implemented timeout for DNS lookup and connect().
3252 sock_connect_by_hostname(): timeout support and code cleanup.
3253 sock_connect_with_timeout(): new.
3254 sock_peek(): implemented SSL peek.
3258 * src/messageview.c: messageview_show(): display single-part
3259 text/html messages with the normal text view.
3273 src/prefs_customheader.c
3274 src/prefs_display_header.c
3289 src/xml.c: added 'b' to the option of all fopen().
3297 * src/ssl.[ch]: match its coding style.
3298 * src/compose.c: compose_send_later_cb(): fixed a bug that failed
3302 faq/en/sylpheed-faq*.html
3304 faq/es/sylpheed-faq*.html
3306 faq/fr/sylpheed-faq*.html
3312 src/manual.[ch]: added FAQs in English, Spanish and French.
3316 * manual/en/sylpheed*.html: updated to the latest version.
3321 src/mgutils.c: include string.h to remove warning about strlen()
3335 src/summaryview.c: added break to the last label of switch to
3336 prevent the 'deprecated use of label at end of compound statement'
3338 * src/rfc2015.c: passphrase_cb(): fixed the type of r_hd.
3342 * src/inc.[ch]: preserve the pointer to IncProgressDialog to the
3344 inc_cancel_all(): new. It cancels the all current incorporation.
3345 * src/mainwindow.c: added 'Cancel receiving' menu.
3346 * src/textview.c: a minor fix for single-part MIME messages, and
3347 a bit of cleanup for textview_write_body().
3351 * src/inc.c: inc_write_uidl_list(): fixed a bug that lost UIDL
3352 information if any errors occured before issuing UIDL command.
3353 src/inc.h: added uidl_is_valid to Pop3State.
3354 src/pop.c: set uidl_is_valid to TRUE if UIDL becomes valid.
3362 * src/mimeview.c: mimeview_create(): set the initial notebook page
3364 * src/folderview.c: folderview_selected(): scroll the view if the
3365 selected row is hidden.
3366 * src/prefs_filter.c: prefs_filter_register_cb(): scroll the view
3367 and select the added row.
3368 * src/summaryview.c: fix threading for null message ids.
3372 * src/textview.c: textview_show_message(): follow message/rfc822
3374 textview_add_part(): add a caption before the attached text files.
3375 textview_show_header(): don't add the newline.
3376 * src/messageview.c: enabled message search also in MIME mode.
3380 * src/messageview.c: messageview_show(): set header state of
3381 MimeView's TextView, too.
3382 * src/mimeview.c: mimeview_show_message(): call
3383 textview_show_message() to display message.
3384 * src/textview.c: textview_add_part(): new. It adds the content
3385 of message part without clearing the view.
3386 textview_show_message(): display all parts with appropriate
3388 textview_write_body(): separated from textview_show_part().
3393 src/prefs_common.c: added ISO-8859-15 to the codesets for
3394 displaying and sending.
3395 * src/codeconv.c: conv_codeset_strdup(): return NULL if code
3396 conversion failed, and made caller deal with it.
3397 * src/compose.c: compose_write_to_file(): show error dialog when
3398 code conversion failed, and let user select whether to send it
3400 * src/textview.c: textview_write_line(): show the original string
3401 if code conversion failed.
3405 * src/inc.c: get_spool(): fixed a bug that failed to unlock mbox
3406 if copy_mbox() failed (thanks to Alexander Kabaev).
3407 * src/prefs_account.[ch]: added separate user ID / password setting
3409 * src/send.c: send_message_smtp(): use separate user ID / password
3410 for SMTP AUTH if it is specified.
3415 src/pop.[ch]: refactored the UIDL management.
3416 store the information of messages into the array of Pop3MsgInfo
3417 structure, and do full scanning of not retrieved messages.
3423 src/mainwindow.c: set WMCLASS for window/dialog.
3424 * src/codeconv.c: conv_codeset_strdup(): return source string
3425 when jconv_alloc_conv() failed.
3429 * src/mh.c: mh_scan_tree_recursive(): changed the hardcoded directory
3436 src/summaryview.c: implemented the new notebook tab interface for
3438 * src/textview.[ch]: fixed line space related glitches.
3442 * src/prefs_filter.c:
3443 prefs_filter_rename_path()
3444 prefs_filter_delete_path(): fixed a crash when flt->dest was NULL.
3448 * src/recv.[ch]: cancel data receiving if RecvUIFunc returns FALSE.
3449 * src/pop.c: pop3_retr_recv(): fixed false 'No space' when cancelled
3451 * src/inc.c: inc_pop3_recv_func(): abort data receiving when
3452 cancelled, and fixed potential crash bug.
3453 * src/grouplistdialog.c: enabled cancelling of data receiving.
3454 * src/news.c: news_get_group_list(): destroy current session if
3459 * src/manage_window.[ch]: fixed a bug that caused crash when
3460 the main window was hidden.
3461 MANAGE_WINDOW_SIGNALS_CONNECT(): new macro.
3462 Monitor "unmap_event", "destroy" events.
3469 src/grouplistdialog.c
3473 src/message_search.c
3477 src/prefs_customheader.c
3478 src/prefs_display_header.c
3480 src/prefs_template.c
3481 src/summary_search.c
3482 src/summaryview.c: use MANAGE_WINDOW_SIGNALS_CONNECT() macro to
3483 connect signals for window management.
3487 * src/prefs_account.[ch]: added receive size limit option.
3488 * src/pop.c: skip messages larger than the limit size.
3489 LOOKUP_NEXT_MSG(): new macro.
3490 * src/compose.c: compose_attach_append(): check whether the file
3495 * src/rfc2015.c: commented out dump_mimeinfo() and dump_part().
3496 changed g_message()'s to debug_print() and g_warning().
3497 rfc2015_decrypt_message(): fixed a bug that duplicated message
3498 parts when decryption was failed/cancelled. And made some code
3500 * src/passphrase.c: made the dialog transient.
3501 * src/prefs.c: prefs_config_parse_one_line(): removed debug_print().
3506 src/procmsg.[ch]: fixed a bug that failed to parse multipart
3507 messages if GPGME was enabled.
3508 * src/rfc2015.c: commented out copy_gpgmedata_to_temp() which
3510 * src/prefs_account.c: prefs_account_privacy_create(): modified
3511 the vertical spacing.
3515 * src/menu.[ch]: menu_set_sensitive_all(): new.
3516 menu_set_insensitive_all(): made it a wrapper for
3517 menu_set_sensitive_all().
3518 * src/prefs_account.c:
3519 prefs_account_open()
3520 prefs_account_protocol_set_optmenu(): made the protocol type
3521 unchangeable after creating an account.
3522 * src/compose.c: compose_attach_parts(): traverse MIME tree to
3523 extract all attathed files from nested multipart MIME message.
3527 * src/procmsg.[ch]: procmsg_get_mark_sum(): added arguments to
3528 obtain minimum/maximum number, and to specify first number
3531 src/inc.c: enabled new message checking on news folder.
3532 * src/news.c: news_scan_group(): implemented. Guess new/unread
3533 message number from the response of GROUP command and the mark
3535 news_select_group(): return the total/first/last number.
3536 * src/prefs_account.c: prefs_account_receive_create(): modified
3537 the text of the 'Get all' check button.
3541 * src/account.c: made 'Get all' checkbox available for IMAP4 and
3543 * src/inc.c: corrected the argument of folderview_check_new().
3544 * src/prefs_account.c: modification for the "`Get all' checks for
3545 new mail on this account" checkbox.
3549 * src/folderview.[ch]:
3550 folderview_rescan_tree(), folderview_rescan_all(): renamed from
3551 folderview_update_tree() and folderview_update_all().
3552 folderview_update_all_node(): removed.
3553 folderview_check_new(): new. If the argument is NULL, it checks
3554 all local folders. If the arguments is specified, it checks
3555 the (local and remote) folder.
3558 inc_all_account_mail(): check also IMAP4 account.
3563 folderview_rename_folder_cb()
3564 folderview_delete_folder_cb(): modify the filter rules when folder
3566 * src/prefs_filter.[ch]:
3567 prefs_filter_rename_path(): new. It renames the destination paths
3569 prefs_filter_delete_path(): new. It deletes the filter rules if
3570 the destination paths matched.
3571 * thanks to Neill Miller for above.
3575 * src/compose.c: inherit attached files when forwarding or reediting
3576 (rewrote the code in claws branch).
3577 compose_attach_parts(): new. It extracts and attaches the files
3578 in the given message.
3579 compose_attach_append(): chnaged the types of arguments.
3580 * src/messageview.c: messageview_show(): moved the GPG decryption
3582 * src/procmsg.[ch]: procmsg_open_message_decrypted(): new.
3590 * src/summary_search(): summary_search_execute(): scroll the view
3591 when message view is hidden.
3595 * src/foldersel.c: foldersel_set_tree(): made different type of
3596 folders selectable in moving mode.
3597 * src/folderview.[ch]: folderview_update_msg_num(): compare the
3598 numbers with the CTree's labels, and don't update folder_item here.
3599 * src/imap.c: imap_move_msg(), imap_move_msgs_with_dest():
3600 implemented moving between different type of folders.
3601 * src/mh.c: SET_DEST_MSG_FLAGS(): new macro.
3602 mh_do_move(), mh_do_move_msgs_with_dest(): new (renamed previous
3603 mh_move_msg() and mh_move_msgs_with_dest()).
3604 mh_move_msg(), mh_move_msgs_with_dest(): implemented message
3605 moving between different type of folders.
3606 mh_copy_msg(), mh_copy_msgs_with_dest(): some code cleanups.
3607 * src/summaryview.c: summary_status_show(): update folder_item
3609 * po/POTFILES.in: removed reference to headerwindow.c.
3610 * src/summaryview.c: summary_step(): fixed the behavior on the
3611 head and tail of the list.
3615 * src/mainwindow.c: main_window_set_menu_sensitive(): set 'Show
3616 all header' toggle state from the property of the TextView.
3617 * src/summaryview.[ch]: made 'All header' toggle switch.
3618 Prohibited unnecessary menu update.
3619 summary_select_node(): added the argument 'do_refresh'.
3624 * src/utils.c: strsplit_with_quote(): remove quotation characters
3625 in the function (fix composer's external editor problem) (thanks
3626 to Stefaan A Eeckels).
3627 * src/mainwindow.[ch]: made 'Show all header' toggle switch.
3628 main_window_menu_callback_block()
3629 main_window_menu_callback_unblock(): new.
3630 main_window_set_menu_sensitive(): set the toggle status of
3632 show_all_header_cb(): read the status of toggle menu item.
3633 * src/mainwindow.[ch]: made 'Thread view' toggle switch.
3634 * src/prefs_common.c: prefs_keybind_apply_clicked(): removed
3639 * src/imap.c: imap_add_msg(): fixed a bug that didn't replace
3640 the path separator (thanks to Sergey Vlasov).
3641 * src/gtkutils.c: gtkut_editable_get_selection(): return NULL
3642 if the length of selection is zero.
3643 Fixed the assertion.
3644 * src/utils.c: str_open_as_stream(): return immediately if
3645 the length of str is zero.
3646 * src/headerwindow.[ch]: removed.
3648 src/inc.c: removed stale thread support codes.
3652 * src/procmsg.c: procmsg_open_message(): modified so that it
3653 returns the stream of decrypted message file if it exists
3654 (this fixes the failure of gpg decryption in messageview.c).
3664 src/prefs_template.c
3666 src/quote_fmt_parse.y
3668 src/utils.[ch]: if the part of the message text is selected, use
3669 it for quoted text instead of the entire message body (thanks to
3671 src/utils.[ch]: str_open_as_stream(): new. It returns an
3672 temporary stream for the given string.
3673 * src/main.c: added "--send" command line option.
3674 * src/compose.c: compose_reply_set_entry(): add From address to
3675 Cc if Reply-To and to_all are both specified.
3676 * Makefile.am: correct the Source: line in the RPM spec file in
3681 * src/procmsg.c: procmsg_open_message(): fetch message if the cache
3683 * src/foldersel.[ch]: foldersel_folder_sel(): added an argument
3684 that specifies the folder selection type.
3695 src/prefs_customheader.c
3697 src/summaryview.c: made it compile with C compilers other than gcc
3698 (thanks to Shawn Houston).
3702 * src/imap.c: imap_copy_msgs_with_dest(): fixed a bug on traversing
3704 * src/prefs_common.c: made the key binding setting separate dialog.
3705 * src/addressbook.c: addressbook_format_address(): add "" around
3706 the display name if it contains comma (thanks to Satoshi Watanabe).
3707 * src/addr_compl.c: get_complete_address(): add "" around the
3708 display name if it contains comma.
3709 get_address_from_edit(): handle the quotation character correctly.
3710 * src/addr_compl.c: get_complete_address()
3711 src/addressbook.c: addressbook_format_address(): fixed a bug that
3712 caused wrong text processing if the display name is empty.
3717 * src/compose.c: compose_exec_ext_editor_real(): replaced
3718 g_strsplit() with strsplit_with_quote().
3720 src/folderview.c: folderview_drag_motion_cb(): minor code cleanups.
3722 folderview_drag_motion_cb()
3723 folderview_drag_received_cb(): allow dropping into IMAP4 folder.
3724 * src/utils.c: get_file_size_as_crlf(): use fgets() instead of
3728 imap_copy_msgs_with_dest(): use imap_add_msg() if the source
3729 of the message is different from the current mailbox.
3730 Return the correct value.
3731 imap_cmd_append(): properly implemented the APPEND command.
3736 src/messageview.[ch]
3737 src/summaryview.[ch]
3738 src/textview.[ch]: show all headers in the message view, and don't
3739 use the header window anymore.
3741 src/prefs_common.c: changed the default shortcut of 'compose new
3744 src/summaryview.[ch]: summary_display_msg_selected(): new.
3745 Show the selected message if 'Show all header' is selected.
3747 src/sourcewindow.c: changed some procmsg_get_message_file_path()
3748 to procmsg_get_message_file() to be sure the message is
3750 * src/folderview.c: folderview_drag_motion_cb(): allow DnD from
3751 any folder to MH folder.
3752 folderview_drag_received_cb(): copy messages instead of moving
3753 if the source folder is news or IMAP.
3755 src/summaryview.c: allow copy from news folder.
3759 * src/prefs_common.c: prefs_other_create(): modified the design
3760 of the external command settings.
3761 prefs_keybind_apply_clicked(): made the Mew / Wanderlust keybind
3762 preset closer to the original.
3763 Added Mutt keybind preset.
3764 Also change the compose keybinds.
3765 * src/compose.c: modified some menu shortcuts.
3766 * src/codeconv.c: modified the locale_table for Thai encoding.
3770 * src/Makefile.am: added $(GPGME_CFLAGS) to INCLUDES.
3771 * src/prefs_common.c: prefs_interface_create(): modified the
3772 description for menu shortcut.
3776 * src/gtkutils.[ch]: added gtk_stext_clear().
3779 src/summaryview.[ch]: enabled multiple forwarding.
3780 * src/summaryview.c:
3781 summary_set_marks_selected(): set marks for all selected row.
3782 summary_reply(): moved from summary_reply_cb().
3783 * compose.[ch]: compose_forward(): modified so that it receives
3785 * src/mainwindow.c: cleanup for reply processing.
3786 * src/summaryview.c: summary_reply(): fixed a memory leak.
3787 summary_key_pressed(): removed hardcoded mark / mark as unread
3790 src/prefs_common.c: added mark / mark as unread shortcuts to
3795 * src/compose.c: compose_wrap_line_all(): wrap quoted part even
3796 if prefs_common.linewrap_quote is not set (it is only for
3797 auto-wrapping on reply).
3798 * src/prefs_account.c: prefs_account_open(): initialize tmp_ac_prefs
3799 when creating a new account.
3800 * src/mh.c: mh_get_msg_list(): use also st_ctime to detect
3802 * src/prefs_common.c: prefs_interface_create(): modified the
3803 description of key binds selector.
3807 * src/mimeview.c: fixed multiple dialog / moving by correcting
3808 button / key event processing.
3810 src/textview.c: pass some key press events to MimeView in MIME
3812 * src/prefs_filter.c: fixed a bug that didn't set the order of
3814 * src/prefs_common.c: prefs_keybind_apply_clicked(): fixed
3815 empty_menurc string.
3820 src/prefs_common.c: reorganized the menu shortcuts.
3821 Added 'View - Toggle summary view'.
3822 * src/summaryview.[ch]: summary_toggle_view(): made it public
3824 * src/prefs_common.[ch]: swapped the position of 'Shortcut key'
3826 * src/importldif.c: imp_ldif_delete_event(): fixed segfault when
3827 closing the dialog with window manager (in more appropriate way).
3828 * src/imageview.[ch]
3830 src/mimeview.c: fixed wrong scrolling position when switching
3831 between text and image parts. Also free the unrequired image
3832 (thanks to Sergey Vlasov).
3833 * src/prefs_common.c: disabled 'Go to inbox after receiving new mail'
3838 * src/prefs_common.c: implemented shortcut quick changer.
3839 * src/folderview.c: folderview_key_pressed()
3840 src/summaryview.c: summary_key_pressed(): removed some hardcoded
3846 procmime_get_mime_type()
3847 procmime_get_mime_type_table(): made the MIME type search case
3850 gtk_stext_delete_line(): delete newline on empty line.
3851 gtk_stext_delete_to_line_end(): delete newline if cursor is on
3853 (thanks to Yasuzaki Masayoshi.)
3858 src/gtkstext.[ch]: removed the hardcoded shortcuts in GtkSText,
3859 and made them customizable.
3860 * src/utils.[ch]: added get_file_size_as_crlf() which returns
3861 the file size when converting LF to CR+LF.
3865 * src/compose.c: enabled 'Ctrl-Enter' or
3866 'Ctrl-(other modifier keys)-Enter' shortcut that didn't work
3868 * src/gtkstext.c: disabled some Emacs key bindings.
3869 gtk_stext_key_press(): don't extend selection when Shift-Enter
3870 is pressed to prevent the disapperance of cursor.
3871 * src/summaryview.c: summary_select_next_unread(): added the button
3872 to search unread message again from the beginning to the dialog.
3873 * src/folderview.c: folderview_key_pressed(): go to next unread
3874 folder if space key is pressed on the empty folder.
3875 Move CTree focus before selecting row.
3879 * src/defs.h: modified the XLFD of default fonts.
3880 * src/textview.c: textview_create(): fixed a bug that caused
3881 segfault if font couldn't be loaded.
3883 src/grouplistdialog.c: compare subscribed groups with path.
3884 * src/prefs_filter.c: changed 'Operator' to 'Condition'.
3888 * src/compose.c: compose_wrap_line_all(): fixed wrapping crash
3889 when URL is wider than wrapping margin.
3891 src/prefs_filter.[ch]
3892 src/summaryview.[ch]: added "Create filter rule" function based
3893 on the patch from Luca Rosellini.
3894 * src/summaryview.c: summary_filter_open(): added X-List and
3895 X-Mailing-list to the automatically detected headers.
3899 * configure.in: support Mac OS X (Darwin).
3903 * src/prefs_filter.c: use inc_(un)lock() instead of
3904 inc_autocheck_timer_{remove|set}().
3905 * src/summaryview.c: summary_sort(): use gtk_ctree_sort_recursive()
3906 instead of gtk_ctree_sort_node() so that messages within threads
3908 * src/procmsg.c: procmsg_read_mark_file(): fixed a bug that the
3909 target of sizeof was wrong and caused crash on Alpha architecture
3910 (thanks to Motonobu Ichimura).
3915 foldersel_gnode_func(): made the names of special folders
3917 foldersel_set_tree(): move the special folder to the top.
3918 * src/inputdialog.[ch]: input_dialog_query_password(): new.
3922 src/send.c: use input_dialog_query_password() instead of their
3923 own query functions.
3927 * src/defs.h: modified the default font.
3931 src/news.[ch]: moved the class definition and some methods to
3932 the proper location.
3936 * src/mimeview.c: mimeview_save_as()
3937 src/summaryview.c: summary_save_as(): put the default filename
3938 based on the subject.
3939 * src/utils.[ch]: added subst_chars() and subst_for_filename()
3940 which substitute some special characters with underscore.
3941 * src/filesel.c: filesel_select_file(): select the default filename.
3946 INSTALL.jp: added the description and the URL for libjconv.
3947 * src/mainwindow.c: menu entries cleanup.
3953 src/about.c: modified the copyright year.
3954 * src/gtkstext.h: added the notice for modification by the Sylpheed
3960 INSTALL.jp: added the URL for compface.
3968 * src/headerwindow.c
3971 src/sourcewindow.c: set wmclass when creating windows.
3975 * src/compose.c: compose_wrap_line_all(): fixed the bug that
3976 caused infinite loop when wrapping certain patterns of quoted text.
3980 * src/imap.c: imap_parse_envelope(): put the assertion after
3981 imap_parse_address() to prevent segmentation fault.
3986 src/mainwindow.c: modified some labels of menu items.
3987 * src/ldif.c: put the return value of fgetc() in a gint.
3988 * src/importldif.c: don't brace null strings with _().
3989 * src/compose.c: moved the position of Subject entry to the last.
3990 Reorganized the menu.
3991 compose_draft_cb(): added 'keep editing after saving to draft'
3996 * src/mainwindow.c: reorganization of main menu. Removed 'Summary'
3997 menu. Moved 'Help' menu to just the right of 'Configuration'.
3998 Removed 'File - Close' menu item.
4002 * src/mainwindow.c: some menu reorganization.
4003 * AUTHORS: updated. Added more contributors.
4004 * src/account.c: account_row_moved(): new. Moves displayed row to
4005 the appropriate position when up / down button are pressed.
4006 account_clist_set(): move displayed row to the appropriate position.
4008 src/mainwindow.c: set title and wmclass when creating windows.
4012 * src/gtkstext.c: fixed a bug that didn't show block cursor
4013 correctly. Removed unnecessary GdkGC copy. Fixed cursor
4018 src/undo.c: modified to use GtkSText.
4019 * src/menu.h: added #include <gtk/gtkmenu.h>.
4024 configure.in: added XIM checking for GTK+.
4025 * src/gtkstext.[ch]: new. Copied GtkText in GTK+ and renamed.
4029 * src/filter.c: added #include <sys/types.h>.
4033 * src/template.c: template_write_config(): fixed a typo.
4034 * src/compose.c: toolbar_linewrap_cb(): call compose_wrap_line_all().
4036 src/prefs_filter.c: supported regular expression (thanks to
4038 * src/undo.c: undo_paste_clipboard_cb(): fixed a bug that broke
4039 undo state when pasted clipboard was empty.
4040 undo_check_size(): use g_list_last().
4042 undo_redo(): fixed NULL checking and made a bit of optimization.
4044 * src/prefs_common.c: changed the default value of linewrap length
4049 * reorganization of pixmap management.
4050 * src/stock_pixmap.[ch]: new. This module manages all static pixmaps.
4051 * modified every files which directly use pixmaps data to use
4053 * src/undo.[ch]: renamed undo_set_undo_change_funct() to
4054 undo_set_change_state_func(), and changed its argument from
4055 GtkWidget* to gpointer.
4056 undo_merge(): code cleanup.
4057 * src/compose.c: renamed compose_set_undo() to
4058 compose_undo_state_changed().
4062 * src/account.c: account_find_from_address(): made it case
4064 * src/addressbook.c: addressbook_create(): set wmclass.
4065 * src/compose.c: compose_insert_file(): supported DOS/Win/Mac line
4068 src/ldif.[ch]: merged from the claws branch.
4069 * src/importldif.c: removed some warnings.
4070 imp_ldif_field_list_toggle(): fixed button checking.
4071 imp_ldif_dialog_create(): minor layout fix.
4072 * src/ldif.c: removed some warnings.
4074 INSTALL.jp: updated confirmation list.
4077 vcard_test_read_file(): fixed a memory leak of tagtemp.
4078 Some code cleanups (decreasing the indent level).
4081 src/syldap.[ch]: disabled runtime library checking because JPilot
4082 and LDAP libraries are linked on the build time, and the program
4083 doesn't execute without them anyway.
4085 src/addrindex.c: changed "J-Pilot" to "JPilot".
4086 Removed warning for atoi().
4090 * src/procmsg.c: procmsg_empty_trash()
4091 src/mainwindow.c: main_window_empty_trash(): empty trash only if
4092 it contains some messages.
4093 * src/imap.c: search_array_str(): new.
4094 imap_status(): fixed a bug that didn't parse the command response
4099 * merged undo function (by Jens Oberender).
4100 * src/undo.[ch]: new.
4101 undo_insert_text_cb(): fix for multibyte characters (obtain the
4102 number of letters instead of bytes).
4103 * src/compose.[ch]: added the code for undo.
4104 * src/prefs_common.[ch]: added the interface for setting undo level.
4108 * src/compose.c: compose_template_apply()
4109 src/prefs_template.c: prefs_template_clist_set_row()
4110 src/template.c: template_write_config(): don't replace To: and
4111 Subject: entry in composition window if they are empty.
4119 * src/folderview.c: folderview_drag_motion_cb(): fixed a DnD bug.
4120 * src/ldif.c: ldif_get_line(): ignore CR.
4121 * src/mimeview.c: mimeview_show_message(): search also text/html
4122 for first text part.
4126 * src/prefs_account.c: prefs_account_save_config_all(): fixed a bug
4127 that didn't update accountrc if account_list == NULL (thanks to
4132 * src/utils.h: added the macro Xstrcat_a() that concatenates
4133 two strings and return alloca'd string.
4134 * src/imap.c: imap_scan_tree_recursive(): fixed a bug that didn't
4135 handle folder name which includes some spaces correctly
4136 (based on the patch from Willem van Engen (thanks!)).
4137 * src/compose.c: compose_wrap_line_all(): fixed the crash when
4138 wrapping long lines if linewrap quotation is disabled and
4139 a word spanning more than one line.
4143 * applied the Tobias' patch with modification (thanks!).
4145 imap_msg_set_perm_flags()
4146 imap_msg_unset_perm_flags(): new. They set permanent flags to
4149 src/summaryview.c: set flags on IMAP server when flags are changed.
4153 * src/gtkutils.[ch]: gtkut_container_remove(): new. It's a wrapper
4154 of gtk_container_remove() for workaround of a bug in
4155 Gtk{Text,Entry} (thanks to Sergey Vlasov).
4161 src/textview.c: replaced gtk_container_remove() with
4162 gtkut_container_remove(), and removed previous partial fix.
4166 * src/prefs_account.c: prefs_account_apply(): fixed a bug that
4167 checked user ID on "local", but didn't on IMAP4.
4168 * src/imap.c: imap_session_get(): fixed a crash bug when
4169 rfolder->session == NULL.
4170 * Makefile.am: changed the arguments of tar from 'chojf' to
4172 * src/summaryview.c: summary_toggle_view(): disclaim the selection
4173 of textview before removing vpaned.
4177 * src/messageview.c: messageview_change_view_type(): disclaim the
4178 selection before removing textview. This solves the mysterious
4179 copy-paste disability (thanks to Melvin Hadasht).
4180 * src/textview.c: textview_set_font(): use
4181 gtk_editable_claim_selection() instead of
4182 gtk_editable_select_region().
4186 * src/prefs_template.c: prefs_template_window_create(): supported
4187 address completion on the To: entry.
4192 folder_count_total_msgs()
4193 folder_count_total_msgs_func(): use g_node_traverse() to traverse
4198 * src/compose.c: fixed a bug that empty body was refused.
4199 * src/prefs_template.c: fixed a bug that didn't set To: entry
4200 correctly. Display error dialog if format is illegal.
4201 * src/prefs_common.c
4203 src/quote_fmt_parse.y: changed parenthesis "( )" to curly braces
4204 "{ }" to prevent confusion on using parenthesis.
4205 * src/html.c: html_get_parenthesis(): ignore CSS / script stuff.
4209 * src/prefs_template.c: added colon to the header labels.
4214 src/prefs_template.c
4215 src/template.[ch]: added To field to the template.
4219 * src/textview.c: textview_show_part(): use first found
4220 message/rfc822 header.
4221 * src/folderview.c: added "Search messages..." to the context menu.
4222 * src/prefs_common.c: prefs_quote_description_create(): added
4223 description for characters which need to be escaped.
4227 * src/compose.c: compose_wrap_line_all(): more merging from claws.
4228 GET_CHAR(): renamed GET_TEXT() and made it more generic.
4229 Modified compose_wrap_line() and compose_wrap_line_all() to use
4231 * src/textview.c: textview_show_part(): show the header of nested
4232 RFC822 attachment correctly.
4237 src/main.c: added --status option to get new, unread and total
4238 message count from a running Sylpheed (merged from claws).
4239 prohibit_duplicate_launch(): output '\n' only once.
4244 src/gtkutils.[ch]: merged the new wrapping function.
4245 gtkut_text_str_compare_n()
4246 gtkut_text_str_compare()
4247 gtkut_text_is_uri_string(): backport from the GtkSText in the
4248 claws branch, and made modification.
4249 * src/prefs_template.c
4250 src/template.[ch]: added Subject to the template.
4254 * src/compose.c: compose_write_headers(): added missing parenthesis
4255 that generated invalid custom header (thanks to Masaaki Noro).
4256 Allow Sender: custom header.
4260 * src/procheader.c: procheader_date_parse(): workaround for
4261 RFC-incompliant Date header.
4265 * src/addrbook.c: removed redundant functions, and fixed generation
4266 of spurious address book file names.
4267 * src/addrindex.c: V-Card -> vCard.
4271 * src/textview.c: get_email_part(): replaced isalnum() with
4272 the macro IS_ASCII_ALNUM() which restricts the range of
4273 characters to 7bit ASCII (thanks to Shimamoto).
4274 * src/utils.c: remote_tzoffset_sec(): workaround for malformed
4279 * src/textview.c: textview_show_part(): show headers on nested
4284 * src/imap.c: imap_session_get()
4285 src/news.c: news_session_get(): fixed segfault when reconnection
4287 * src/grouplistdialog.c: removed redundant code, and expand nodes
4288 that doesn't match the pattern.
4292 * src/compose.c: modified so that it sends message when any of
4293 To:, Cc:, Bcc:, or Newsgroups: fields have valid recipient.
4294 compose_check_for_valid_recipient(): new.
4295 * src/grouplistdialog.c: improved the UI.
4296 Added appropriate description and search button.
4297 Search doesn't get group list again.
4301 * src/news.[ch]: news_session_get(): update the last access time
4303 news_group_list_free(): new.
4304 * src/grouplistdialog.c: free resources correctly.
4309 src/grouplistdialog.[ch]: more merging of new newsgroup
4310 subscription dialog.
4311 * src/news.[ch]: renamed news_remove_group_list() to
4312 news_remove_group_list_cache().
4316 * src/defs.h: added MAX_ENTRY_LENGTH definition.
4317 * src/compose.c: compose_add_entry_field(): create new entry with
4322 * src/grouplistdialog.c: made non-leaf node selectable.
4323 Give the complete newsgroup name for each nodes.
4327 * src/grouplistdialog.c
4328 src/news.[ch]: merging of new newsgroup subscription dialog
4329 (still in progress. Don't use it yet!).
4333 * src/utils.[ch]: decode_uri(): new. It decodes URL-encoded strings.
4334 * src/compose.[ch]: compose_new_with_recipient(): accept mailto
4336 compose_entries_set(): new. It parses mailto URL and put each
4337 values into the entries.
4341 * src/compose.c: compose_forward(): fixed a bug that forward
4342 quote mark wasn't used (thanks to Hironori IWANE).
4345 src/prefs_common.c: added Thai encodings (thanks to Manrat
4350 * src/socket.c: sock_connect_by_hostname(): removed h_errno.
4354 src/news.c: added last_access_time to Session.
4355 imap_session_get(): check connection only when access interval
4364 * src/socket.c: ssl_gets(): use SSL_peek.
4365 * updated NEWS and AUTHORS.
4366 * Makefile.am: fixed release target.
4370 * src/template.c: changed the format of template file to
4372 * src/compose.c: compose_template_apply(): freeze the text widget
4373 while inserting strings.
4377 * po/POTFILES.in: removed src/template_select.c.
4378 * src/summaryview.c: summary_set_header()
4379 src/address.c: address_parse_str()
4380 src/filter.c: filter_read_str()
4381 src/news.c: news_parse_xover()
4382 src/procheader.c: procheader_get_fromname()
4383 src/utils.c: subject_compare():
4384 replaced Xalloca() + strcpy() with Xstrdup_a().
4385 * src/inputdialog.[ch]: added combo mode.
4386 input_dialog_combo(): new.
4387 * src/prefs_common.[ch]: added MIME open command setting.
4388 prefs_common_{read, save}_config(): read / write command history.
4389 * src/mimeview.c: mimeview_open_with(): use combo input dialog.
4390 * src/utils.[ch]: add_history(): history list management function.
4394 * src/compose.c: select templates from the menu.
4395 compose_set_template_menu(): new.
4396 compose_reflect_prefs_all(): new.
4397 compose_template_apply(): new. Use dummy MsgInfo for parsing.
4398 * src/template.[ch]: store template list to the static heap.
4399 template_get_config(): new.
4400 template_set_config(): new.
4401 * src/prefs_template.c: don't store template list to the global area.
4402 * src/template_select.[ch]: removed.
4403 * src/quote_fmt_parse.y: check folderitem when quoting messages.
4404 * src/mh.c: mh_add_msg(): try to copy file whenever link() failed
4405 (thanks to OSHIRO Naoki).
4409 * src/utils.[ch]: get_template_dir(): new.
4410 * src/template.c: use get_template_dir().
4414 * src/prefs_template.c: modified the dialog layout.
4415 Added symbol description button.
4416 * src/summaryview.c: show an arrow mark to the column of the sort
4418 summary_set_column_titles(): new.
4424 TODO.jp: updated the documents.
4428 * src/Makefile.am: add missing checkbox_{on, off}.xpm.
4429 * src/textview.c: textview_key_pressed()
4430 src/mimeview.c: mimeview_key_pressed()
4431 src/summaryview.c: summary_key_pressed(): delete messages with
4436 * src/socket.c: ssl_gets(): fixed a bug that caused infinite loop
4437 when SSL_read() returned 0.
4438 * src/utils.[ch]: strcrchomp(): new. It removes CR from the tail
4440 * src/quote_fmt_parse.y: convert CRLF to LF when inserting messages.
4441 Add prototype of yylex() to suppress the warning.
4442 * merged the template function.
4443 * src/prefs_template.[ch]
4445 src/template_select.[ch]: new.
4446 Renamed prefs_templates_* -> prefs_template_*.
4447 * src/compose.c: added template menu. Added replyinfo to Compose.
4448 * src/mainwindow.c: added template setting menu.
4449 * src/quote_fmt_lex.l: output literal tab and return as is.
4450 * src/prefs_common.c: changed the pref. name of quote format to
4451 'reply_quote_{mark, format}' and 'fw_quote_{mark, format}'.
4455 * src/prefs_common.[ch]: added Quote tab, and moved the quote
4456 setting from Compose tab.
4457 * merged the new quote format parser.
4458 * src/quote_fmt_lex.h
4461 src/quote_fmt_parse.y: new files for quote format parser.
4462 * configure.in: added checks for lex and yacc.
4463 * src/compose.c: compose_quote_file(), compose_quote_parse_fmt():
4465 compose_quote_fmt(): new.
4466 * src/prefs_common.[ch]: added forward format setting to the
4467 Quote tab. Updated the quote description dialog.
4468 * src/quote_fmt_parse.y: fixed bugs that tried to read file even
4469 if they couldn't get text part.
4473 * src/pixmaps/checkbox_off.xpm
4474 src/pixmaps/checkbox_on.xpm: new.
4475 * src/account.c: display `get all' status with the checkbox pixmaps.
4479 * src/send.c: code cleanup. Pass account prefs structure instead
4481 Query password for SMTP AUTH if not specified (thanks to Mio).
4485 * src/procheader.c: procheader_parse(): fixed a bug that didn't
4486 parse multiple message-id in In-Reply-To: header correctly
4487 (thanks to KAJIWARA).
4491 * src/account.c: enabled 'Get all' setting by clicking the 'G'
4492 column of account list, and added some description.
4493 * src/prefs_common.c: prefs_send_create(): added a description
4494 for outgoing codeset.
4498 * src/prefs_account.[ch]: moved inbox entry to the receive tab,
4499 and added select button and short description.
4500 * src/Makefile.am: added SYSCONFDIR to CPPFLAGS.
4502 procmime_get_mime_type_table()
4503 procmime_get_mime_type_list(): modified so that
4504 $(SYSCONFDIR)/mime.types (or /etc/mime.types if not found) and
4505 $(HOME)/.sylpheed/mime.types are read.
4509 * src/prefs_account.c: moved the address auto-setting to the compose
4511 prefs_account_create(): removed gtk_widget_show_all() for proper
4513 * src/prefs_common.c: changed "Program path" to "Command".
4517 * src/textview.c: textview_set_font(): support Russian charset
4519 * src/summaryview.c: summary_delete(): (hopefully) fixed the crash
4523 prefs_summary_column.c: minor improvements to the English.
4524 * src/main.c: get_queued_message_num(): don't output the warning
4525 when queueing folder is not found.
4533 * src/prefs_summary_column.[ch]:
4534 made prefs_summary_column_get_config() public.
4535 * src/summaryview.c: summary_ctree_create(): some code cleanup.
4536 * configure.in: moved the position of SSL checking after LDAP
4537 for linking problem.
4542 src/summaryview.c: allowed reedit in the outbox.
4543 * src/prefs_summary_column.[ch]: new. UI for setting summary
4545 * src/mainwindow.[ch]: main_window_set_summary_column(): new.
4546 It calls summary_set_column_order().
4547 * src/summaryview.[ch]:
4548 summary_ctree_create(): new. separated from summary_create().
4549 summary_set_column_order(): new. It destroys the current
4550 CTree and replaces it with the new one.
4554 * src/smtp.[ch]: smtp_from(): abort if auth failed.
4555 * changed C++-style comments into C-style in some files, and
4556 removed unnecessary commented out codes.
4557 * src/addrcache.[ch]
4561 src/syldap.[ch]: updated the addressbook code, and fixed the
4564 src/importldif.[ch]: new.
4568 * src/about.c: added some items to compiled-in features.
4569 * src/addr_compl.c: changed LOG_MESSAGE to debug_print.
4570 * src/addressbook.c: changed "V-Card" to "vCard".
4571 addressbook_edit_address_cb(): added
4572 invalidate_address_completion() to the point address is changed.
4573 * src/codeconv.c: changed C++-style comments into C-style.
4577 * src/compose.c: changed "Send" shortcut to Ctrl+Enter.
4581 * src/inc.c: fixed a bug that crashed sylpheed if Cancel button
<