summaryrefslogtreecommitdiff
path: root/mail/sylpheed-devel
AgeCommit message (Collapse)AuthorFilesLines
2005-07-22Update sylpheed-devel to 2.0rc, main changes are:chris2-6/+6
* The IMAP4rev1 code conversion was fixed so that it can handle folder names that include '+' correctly. * The correct row is selected after moving or deleting a message now when sorting is enabled. * The line-wrap of composition was modified so that it doesn't break line after '/' (slash) to protect file path etc. * The duplicated insertion when a text file is dragged onto the composition window was fixed. * The cache discrepancy problem of the draft folder was fixed. * Temporary files are now cleaned up also on startup.
2005-07-14Update sylpheed-devel to 2.0.0beta6, main changes are:chris2-6/+6
* A new application icon was added, and it is now used as a default window icon. * A margin was added for the summary view when scrolling. * The folder selection dialog now displays new/unread information for each folders. * The displayed file size of attachments became more accurate. * The filter rules are now modified after folders are moved. * Several alert dialogs were modified. * The line-wrap of composition was modified so that it doesn't break line after '-' (hyphen) to protect e-mail address etc. * UTF-8 text file is now properly inserted in composition window. * The Content-Type's charset is used as a fallback encoding of broken header strings on reply. * The problem was fixed that signature was not switched properly by the account selection in re-edit mode or after editing with external editor. * Attached files without text/* as the Content-Type is not uncanonicalized anymore. * The URI parser of the text view was modified. * The cache discrepancy problem of the queue folder was fixed.
2005-07-09Update Sylpheed to 2.0.0beta5, lots of changes since 1.9.12:chris3-8/+9
* 2.0.0beta5 * The order of the buttons of dialogs now complies with GNOME Human Interface Guidelines (configurable with 'Common preferences/Interface/ Make the order of buttons comply with GNOME HIG'). * Existing window is put in front when trying to re-edit draft/queue messages which are already open. * The toolbar and special folder icons are replaced with new png images which are based on GNOME icon theme. * The Sylpheed logo of the about dialog was replaced with new one. * The crash when cancelling the file selection dialog of vCard/JPilot by Escape key was fixed. * 2.0.0beta4 * The feature to move folders within the same mailbox was implemented. * The flag changes by manual filtering on IMAP4 folders are now reflected to IMAP4 server. * A warning is displayed on the first run if the locale encoding is not UTF-8 but the environmental variable G_FILENAME_ENCODING is not set. * A warning is displayed when sending message if it exceeds the hard line length limit (998 bytes). * Other minor bugs were fixed. * 2.0.0beta3 * The strict checking of the integrity of summary caches was disabled by default, and the performance of displaying summary was improved. * The columns of the summary view became reorderable by drag and drop. * An option to execute command when new messages arrive was added. * 'Compose new message', 'Add to address book' and 'Open with Web browser' was added to the context menu of the text view. * Encryption is enabled by default when replying to encrypted messages. * GPGME and OpenSSL support are now enabled by default. * The bug that caused failure of parsing IMAP4 response if embedded null characters appeared in message headers. * Selected text is used on reply even if the Attachment tab is selected. * The quote color setting dialog works properly now. * 2.0.0beta2 * The junk mail filter setting was integrated into the common preferences, and 'Tools/Filter junk mails' menus were added. * The behavior of the flag search was modified. * The bug that the change of color labels was not saved was fixed. * The 'Insert signature' on the composition window now replaces the current signature, or add a new one to the buttom. * The bug that MIME headers were not properly parsed on some locales (such as Turkish) was fixed. * A possible crash when moving/deleting messages while the summary is sorted was fixed. * Wrong display of unread message number on some condition was fixed. * The scroll position of the summary when opening folders was fixed. * Sending messages by external command now checks for its exit status. * 2.0.0beta1 * A feature to assist junk mail control was added. * An option to apply filter rules to sent messages was added. * The progress dialog was reimplemented using GtkTreeView. * The selection handling of the summary view was optimized a bit. * The drag and drop from the summary view was improved. * The Japanese auto-detection is always enabled if the locale string begins with "ja". * Hebrew encodings support was added. * Lithuanian translation was added. * The scanning of folders right after an IMAP4 account is created was disabled for performance issue. * Currently selected messages are skipped now when searching unread messages. * The typeahead search of the summary view was disabled. * The sylpheed.spec file was updated. * Several bugs were fixed.
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+1
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-05-29Update Sylpeed-devel to 1.9.12chris2-6/+6
Main changes are: * The MIME view and the attachment list of the compose window were reimplemented using GtkTreeView. * An option to toggle cursor in the message view was added. * The backward search button was added to the summary and message search dialog. * The PGP Sign and Encrypt check button were added to the compose window. * The drag and drop of messages in the summary view to external applications was enabled. * The writing of summary cache and mark was optimized so that it will be written only if it is required. * The ~/.sylpheed-2.0/tmp/ directory is cleaned up on exit now. * Errors are detected now when messages are sent with sendmail command. * The phishing URL checking was modified so that it works even if non-ascii space is put at the head of link strings. * Several bugs of the summary view were fixed. * The column width of the folder view is now remembered. * The drag and drop of attached files with non-ascii filename was fixed. * The attaching of files with locale-encoded filename by drag and drop was fixed. * A bug that caused crash when timeout happened while scanning IMAP4 folder tree was fixed. * On IMAP4, a bug that only the first response of the SEARCH command was recognized was fixed. * Bcc header fields in mailto URL are no longer interpreted to conform to RFC 2368.
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-05-18Update Sylpheed-devel to 1.9.11:chris2-6/+6
* The bug that Return, Space and Delete key were ignored when multiple messages were selected was fixed. * A compile error was fixed. * The selection problem after the change of the contents of the summary was fixed. * The bug that prohibited the resizing of the summary columns was fixed. * The bug that the summary view couldn't be scrolled after expanding a thread at the bottom of the view was fixed. This seems to fix most of the issues in 1.9.10
2005-05-15Update sylpheed-devel to 1.9.10, main changes are:chris2-6/+6
* The summary view was reimplemented using GtkTreeView. * The performance of the update of the statusbar was improved. * The CRAM-MD5 is preferred now on IMAP4 automatic authentication. * Messages selected with 'View/Go to' will not open now if the message view is hidden. * The default message font was changed to Monospace 12. * A redraw problem of the text view on smooth scroll was fixed. * Several bugs of the folder view were fixed. Note that there are a few issues with this release (as reported on the sylpheed list, eg columns in the summary view aren't resizable)
2005-04-19Update Sylpheed to 1.9.9, main changes are:chris2-6/+6
* The memory usage when sending messages was reduced. * The crash when ~/.gnupg not exist was fixed. * A compile error with GTK+ 2.4 was fixed. * Some bugs of the folder view were fixed. * A problem that the Emacs gtk-key-theme didn't work on composition was fixed.
2005-04-12Update Sylpheed-devel to 1.9.8. Note quite a few things have changed withchris2-6/+7
1.9.8, some quite noticable, eg the folder view. I've also commented out the sylpheed-claws sourceforge mirror until it's caught up. Main changes: * The filter preferences dialog, the edit account dialog, and the folderview were reimplemented using GtkTreeView. * Auto-scroll on DnD was implemented. * GBK encoding is supported. * The broken PLAIN authentication for SMTP AUTH was fixed. * A workaround for some SMTP servers, which terminate connection right after QUIT command was sent, was made. (specifically Gmail server) * Clear-signed messages are not MIME-encoded anymore. * The line-wrapping of composition window was modified not to screw up itemized lines.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-29Update to 1.9.7xtraeme2-6/+7
Changes: * The outgoing encoding can be changed on composition temporarily now. * The folder selection dialog was reimplemented using GtkTreeView. * An option that specifies whether to render HTML as text or not was added. * The state of the expander of the file save dialog is now remembered. * Every message-ids in References: header is now used for message threading. * The internal code conversion API has been changed. * A possible crash on re-editing draft, queue and sent messages was fixed. * The error checking of Japanese code conversion also became strict. * An empty Reply-To: header is now ignored.
2005-03-25Initial import of sylpheed 1.9.x development branch. Currently atchris5-0/+793
version 1.9.6. Main difference is that the branch uses gtk+ v2, rather than gtk. Note that it still installs as sylpheed (but version 1.9.x)