summaryrefslogtreecommitdiff
path: root/mail
AgeCommit message (Collapse)AuthorFilesLines
2006-10-15Update "milter-greylist" package to version 3.0rc5.tron3-6/+20
Changes since version 3.0rc4: - Pointer to DRAC documentation - FreeBSD build fixes - Remove the /tmp/access-list.debug for security sake - Correctly enable non blocking I/O fox MX sync
2006-10-15Update grepmail to 5.3032.obache2-10/+8
Based on patch provided by Martin Wilke via PR 34438. - Changelog - Fixed backwards diff in test cases - Updated Mail::Mbox::MessageParser dependency to latest version, and updated test cases as well. (Thanks to Christoph Thiel <ct@kki.org> for the heads up.) Version 5.3031: Mon Jun 6 2005 - Fixed a bug that would cause the date_manip test to fail in some time zones. (Thanks to Kurt Roeckx <kurt@roeckx.be> for the Debian bug report, and Joey Hess <joeyh@debian.org> for notifying me.) - Added a missing "use" statement in Test::Utils. - Improved date matching for mailboxes containing invalid dates. (Thanks to Steve Revilak <srevilak@users.sourceforge.net> for the patch.) Version 5.3030: Tue Dec 21 2004 - Improved test failure reporting - Fixed version numbers, which were incompatible with some modules. (Thanks to Tassilo von Parseval <tassilo.von.parseval@rwth-aachen.de> for the bug report) - Cleaned up code a bit Version 5.30.2: - Switched to Test::More for better test reporting Version 5.30.1: Thu Sep 16 2004 - Fixed Date::Manip parsing of single-point times such as "today". (Bug found by Marten van Wezel <puntloos@users.sourceforge.net>) - Changed Makefile.PL to use Module::Install - Changed version numbering - Dropped Benchmark::Timer from the distribution, since the updated version has been released
2006-10-15Update p5-Mail-Mbox-MessageParser to 1.4005.obache2-7/+7
Based on patch provided by Martin Wilke via PR 34390. Changelog: - Fixed a bug where emails with a line near the end that start with "From " would cause the Grep implementation to go into an infinite loop. (Thanks to Volker Kuhlmann <VolkerKuhlmann@gmx.de> for the bug report.) - Fixed some minor coding style issues. Version 1.4004: Tue Jul 11 2006 - Fixed a bug where, when emails are incomplete, the Perl parser would cache incorrect information, causing the Cache implementation to go into an infinite loop when it tried to use the invalid information. - Improved the behavior for multi-part emails that lack a valid ending boundaries. Instead of treating the rest of the mailbox as part of the email, the Perl and Grep parsers now find the end of the email using (1) a Content-Length header if it is present, or (2) the next valid "^From " line after the email's header. (Many thanks to Volker Kuhlmann <VolkerKuhlmann@gmx.de>, Eduard Bloch <edi@gmx.de>, and Joey Hess <joeyh@debian.org> for their efforts to track down the cause of the bug. Special thanks to Volker for suggesting the right behavior. :) - Simplified the code some Version 1.4003: Sun May 21 2006 - Fixed a bug where multi-part emails having boundaries containing characters like " " and "+" would cause the remainder of the mailbox to be treated as part of the email with the boundary. (Thanks to Volker Kuhlmann <VolkerKuhlmann@gmx.de> for first reporting the bug, and thanks to Joey Hess <joeyh@debian.org> for the bugfix.) - Fixed a previously unrevealed fault in the mailbox for the separators test. (The last message's separator wasn't used correctly.) Version 1.4002: Thu Feb 9 2006 - Dropped tzip support. The program seems poorly supported and buggy. (I can't get it to run right on Mac, for example.) - An invalid cache is detected and overwritten. This can occur if one changes architectures, or if the cache is otherwise corrupted. (Thanks to Volker Kuhlmann <VolkerKuhlmann@gmx.de> for the feature suggestion.) - Fixed a major memory consumption bug in the Perl implementation, where the read buffer would grow exponentially. This caused the module to use memory proportional to the size of the mailbox, rather than the size of the largest email. (Thanks to David Cantrell <david@cantrell.org.uk> for the bug report.) Version 1.4001: Tue Aug 2 2005 - Fixed a bug where emails involving time zones of length more than 3 characters (e.g. "WETDST") would not be processed correctly. (Thanks to Hans F. Nordhaug <Hans.F.Nordhaug@hiMolde.no> for the bug report.) - Fixed some undefined value warnings for some test cases. - Fixed a bug where mailboxes having emails with rfc822 attachments would not be parsed correctly Version 1.4000: Thu Jul 7 2005 - Fixed a long-standing bug in the parsing of mail messages containing mail attachments. (Thanks to Brian May <bam@debian.org> for the bug report.) - Dropped X-From-Line support for two reasons: (1) it seems to have disappeared from newer versions of Gnus, and (2) this module is for mbox format. (Thanks to Brian May <bam@debian.org> for prompting this.) - Changed the mail parsing so that a blank line *must* separate mail messages, as per mail(5) (http://www.qmail.org/man/man5/mbox.html). Lack of a blank line will cause the second email to be considered to be part of the preceding email. Version 1.3001: Mon Jun 6 2005 - Changed the testing code to use a more aggressive technique for clearing any existing cache, even if it is not readable. - Fixed a problem with the grep implementation where locale settings (LC_ALL, LC_COLLATE, LANG, LC_CTYPE, LC_MESSAGES) would cause it to fail. (Thanks to Joey Hess <joey@kitenet.net> for the bug report.) Version 1.3000: Mon Mar 14 2005 - Merged the internal caches used by the different mailbox parser implementations. This allows sharing of caching information. NOTE: Tighter integration of the classes means that you can no longer instantiate any of the implementations directly; you must use Mail::Mbox::MessageParser only. - Fixed goofy version dependency for Benchmark::Timer. - Fixed improper identification of mailboxes whose first email has a body containing a large number of foreign characters. (Thanks to Nigel Horne <njh@bandsman.co.uk> for the bug report and sample data.) - Fixed a spurious warning in a test case. (Thanks to Nigel Horne <njh@bandsman.co.uk> for the bug report.) - Fixed a test code bug that would cause some failed tests to incorrectly pass. - Fixed a bug where emails with attachments would cause the mailbox parser to enter an infinite loop. (Thanks once again to Joey Hess <joey@kitenet.net> for the excellent bug report.) - Fixed a bug where the cache would not be saved to disk when the file was finished being read. - Fixed a bug in the test cases where some differences in test output would not be detected. - Fixed a bug in Mbox::Mail::MessageParser::Grep that would cause it to improperly identify separate emails in a mailbox if the "From " line looked like "From klopp Mon Jan 5 08:50:15 +0100 2004". (Thanks to Frederic Klopp <klopp@math.univ-paris13.fr>" for the bug report and sample mailbox.) Version 1.2130: Tue Dec 21 2004 - Fixed version numbers, which were incompatible with some modules. (Thanks to Tassilo von Parseval <tassilo.von.parseval@rwth-aachen.de> for the bug report) Version 1.21.2: - Fixed a dependency version error for Benchmark::Timer - Switched to Test::More for better error reporting - Improved test failure reporting - Fixed a bug where messages embedded in other messages as RFC 822 attachments would be treated as separate emails. (Thanks to Will Fiveash <william.fiveash@sun.com> for the bug report.) - Moved all configuration data to M::M::MP::Config Version 1.21.1: Thu Sep 16 2004 - Fixed broken dependency specification in Makefile.PL - Removed Module::Install extension dependency code from Makefile.PL. (Not needed with fixed extensions.)
2006-10-14Update to 2.3.0beta2:xtraeme3-13/+11
* 2.3.0beta2 (development) * Messages marked as read or junk mails are now excluded from the numbers of new messages. * Win32: GTK+ was updated to 2.10.4, and GLib was updated to 2.12.4. * Win32: The crash that occurred when Desktop folder was selected on the file selection dialog was fixed. * Win32: The bug that window position was reset when quitting Sylpheed while window was hidden was fixed. * Win32: The WSAEWOULDBLOCK state is now properly handled in socket I/O. * 2.3.0beta1 (development) * GtkStatusIcon is used for the tray icon if available. * When GtkStatusIcon is used, the tray icon blinks for 5 seconds when new mails arrive. * The option 'Minimize to tray icon' was added. * The left click on the tray icon now only brings the main window in front. * Win32: The tray icon was implemented. * Win32: The SSL connection problem was fixed. * Win32: The included libraries (GLib, GTK+, Pango) were updated to the latest version. This introduces the following improvements: - The performance of network communication at receiving and sending was improved. - The appearance of the UI became more native-like. - The scrolling speed of the summary view with cursor keys was improved. - The broken display of the text view when it was partially hidden was fixed. - The position of color labels menu in the search dialog is correct now. - The problem that GTK+ strings became untranslated after the popup of context menu on GtkTextView was fixed. - The crash that occurred on startup if a font with non-ascii name was specified for system font was fixed.
2006-10-14Improve handling of options related to the terminal library used by thistron1-4/+24
package and add support for "ncursesw". Patch supplied by Ben Collver pkg/34777.
2006-10-14Update to 1.1.14adrianp2-6/+6
Addresses PR #34643 - Fix missing seperation between headers and body in the SMTP driver - Fix _sanitizeHeaders() so that it doesn't eat multiline headers. - The sendmail backend now correctly writes a blank line between the headers and body text. - Fix typo in _sanitizeHeaders() that blanked out all headers. - Mail::prepareHeaders() no longer appends a trailing newline. (Bug 7492) - Mail::parseRecipients() now returns a PEAR_Error object on error. (Bug 7491) - Mail_RFC822::isValidInetAddress() now permits domain parts longer than four characters. The two character minimum remains in effect. (Bug 7562) - Fixed the tests for the existence of the PHP_EOL constant. (Bug 7682) - Changed the default 'sendmail_args' value to include the '-i' argument. (Bug 7785) - We now guard against email injection exploits. (Bug 6229) - The SMTP driver now includes an error code in its PEAR_Error objects. - SMTP connections are now reset (RSET) when an error occurs. (Bug 5212) - The SMTP driver now exposes a disconnect() method which forcibly destroys the SMTP connection. (Bug 5372) - Removing a stray debugging line that snuck into the 1.1.7 release. (Bug 5190) - Mail_RFC822::isValidInetAddress() now accepts the '+' character in strict local-parts. (Bug 4943) - The SMTP backend now returns standardized error messages which now include additional error details from the Net_SMTP package. (Bug 4241) - Mail::factory() now returns object references without generating PHP warnings. - The SMTP backend now supports a 'persist' parameter which allows the internal SMTP connection object to be reused over multiple calls to the send() method. (Bug 4122) - Don't emit warnings with PHP 4.4/5.1. - Unfold long lines before parsing addresses in Mail_RFC822. - The SMTP driver now supports a 'timeout' value. (Request 3776) - An array of Received: headers can now be provided. (Bug 4636)
2006-10-14Update to dovecot-1.0rc9. From the release announcement mail:ghen2-6/+6
Most importantly this should fix the login process problems that people have been reporting. There were also some bugs in the proxying feature. Also note the 64bit change in dovecot.index.cache files. Unless you delete dovecot.index.cache files manually, you'll these kind of error messages into your logs: Error: Corrupted index cache file ...dovecot.index.cache: registered field date.sent size changed They'll get fixed automatically of course, but it might be a bit annoying to see them. * 64bit systems: dovecot.index.cache file will be rebuilt because some time fields have been changed from 64bit fields to 32bit fields. Now the same cache file can be used in both 32bit and 64bit systems without it being rebuilt. * Added libmysqlclient workaround to conflicting sha1_result symbol, which caused Dovecot to fail logging into MySQL. + dovecot.index.cache file opening is delayed until it's actually needed. This reduces disk accesses a bit with eg. STATUS commands. + auth_cache: Try to handle changing passwords automatically: If password verification fails, but the last one had succeeded, don't use the cache. This works only with plaintext auth. - dovecot.index.cache: We didn't properly detect if some fields were different length than we expected, which caused assert crashes - Lots of fixes to login/master process handling - mbox: Fixed a bug causing "X-IMAPbase uid-last unexpectedly lost in mbox file" errors, and possibly others.
2006-10-13Rather than use a separate install script, move the installation code into thedsainty2-42/+21
Makefile (like usual). As part of this, we can now use the various INSTALL_* definitions instead of the hard-coded ones in the script. The only functional change is that all the files are now installed with Pkgsrc default ownership, instead of hard-coded "bin:bin". However, this does mean that non-root installation can now work, which is a good thing.
2006-10-13Fix thinko in previous that prevented compilation.tv1-2/+2
2006-10-13Added mail/libsylph.xtraeme1-1/+2
2006-10-13Initial import of libsylph-0.3.0.xtraeme5-0/+125
LibSylph is an e-mail client library which is derived from Sylpheed. LibSylph is a lightweight but featureful library. It has many common e-mail related features and other useful functions, and you can utilize them from your application. Moreover you can create a new e-mail client by wrapping LibSylph with any UI.
2006-10-128.12.11nb5:tv5-18/+48
Don't install .cf files to /etc/mail directly at all; offer a message about how to install them instead. Don't create /etc/mail/statistics. Create mqueue dirs at install via MAKE_DIRS. Should fix PR pkg/20852. While here, fixup manpages to act like mail/sendmail so that they are uniform across build platforms.
2006-10-128.13.8nb2:tv4-11/+31
Don't install .cf files to /etc/mail directly at all; offer a message about how to install them instead. Don't create /etc/mail/statistics. Create mqueue dirs at install via MAKE_DIRS. Should fix PR pkg/20852. Make sure SMRSH_CMDDIR gets to the compile defs. Fixes PR pkg/34513.
2006-10-12Remove libmilter812; libmilter (based on 8.13) is just fine for pkgsrctv7-123/+1
dependents.
2006-10-12Update "milter-greylist" package to version 3.0rc4.tron3-12/+48
Changes since version 2.1.2: - DNSRBL support in ACL - Per-ACL greylisting and autowhitelisting delays - ACL blacklist feature - Add support to use Sendmail macros in the ACL - Allow rejecting by tempfail on blacklist configuration - per-ACL SMTP error code and messages - Multi-line statement in the config file - Report matching ACL line number in the logs - Lists for from, rcpt, domain, netblocks and DNSRBL - Make log output consistent (Fredrik Pettai) - Tell local connexions are non IP instead of non IPv4 (Attila Bruncsak) - Faster ACL code - Option to log expired entries (Jeff Rife) - Cosmetic changes in debug logs (Fredrik Pettai) - A lot of bug and build fixes This fixes PR pkg/34793 by Eric Schnoebelen.
2006-10-12Update spamass-milter to 0.3.1, based on patch provided by Jaap Boenderobache3-61/+11
via PR 33206. 0.3.1: (2006-03-23) * Ensure wrapped headers always use LF (fix for spamassassin 3.1.1) * Mimic sendmail's Received header even better. Logs a warning to syslog if it can't fetch a sendmail macro that would help.
2006-10-11Also take tm_isdst into account by applying a 3600 second correction.joerg3-6/+15
Bump revision.
2006-10-10Updated to version 3.1.7.heinz2-7/+7
Pkgsrc changes: - none Changes since version 3.1.6: ============================ 3.1.7 is a "quick-fix" release; it contains only a fix for one bug, introduced accidentally in 3.1.6: - bug 5119: if admins had set rule scores in the site configuration in /etc, sa-update would fail. Back out this change
2006-10-10I will maintain this now. Okay'd on packages@ by chris.reed1-2/+2
2006-10-10Fix coutier-imap to link to BDB_LIB instead of -ldb.ben3-2/+44
This is related to PR#33802
2006-10-09Update ruby-actionmailer to 1.2.5.minskim2-9/+10
Changes since 1.1.1: * Backport of documentation enhancements. [Kevin Clark, Marcel Molina Jr] * Correct spurious documentation example code which results in a SyntaxError. [Marcel Molina Jr.] * Mailer template root applies to a class and its subclasses rather than acting globally. #5555 [somekool@gmail.com] * Nil charset caused subject line to be improperly quoted in implicitly multipart messages #2662 [ehalvorsen+rails@runbox.com] * Parse content-type apart before using it so that sub-parts of the header can be set correctly #2918 [Jamis Buck] * Make custom headers work in subparts #4034 [elan@bluemandrill.com] * Template paths with dot chars in them no longer mess up implicit template selection for multipart messages #3332 [Chad Fowler] * Make sure anything with content-disposition of "attachment" is passed to the attachment presenter when parsing an email body [Jamis Buck] * Make sure TMail#attachments includes anything with content-disposition of "attachment", regardless of content-type [Jamis Buck] * Rename Version constant to VERSION. #2802 [Marcel Molina Jr.] * Stricter matching for implicitly multipart filenames excludes files ending in unsupported extensions (such as foo.rhtml.bak) and without a two-part content type (such as foo.text.rhtml or foo.text.really.plain.rhtml). #2398 [Dave Burt <dave@burt.id.au>, Jeremy Kemper] * Allow Mailers to have custom initialize methods that set default instance variables for all mail actions #2563 [mrj@bigpond.net.au]
2006-10-09Update to dovecot-1.orc8. From the release announcement mail:ghen5-27/+29
I've still over 200 mails unread in the mailing list, and important things left in TODO. This release is an improvement over rc7 anyway, hopefully I'll have time to fix the rest soon. * GSSAPI: Changed POP3 service name to "pop", which is what the standard says * "mbox:/var/mail/%u" no longer works as the mail location. You'll have to specify the mail root explicitly, just like the examples always have: "mbox:~/mail:INBOX=/var/mail/%u" + SHA1, LDAP-MD5, PLAIN-MD5, PLAIN-MD4: The password can be now either hex or base64 encoded. The encoding is detected automatically based on the password string length. + Allow running only Dovecot master and dovecot-auth processes with protocols=none setting + deliver: -f <envelope sender> parameter can be used to set mbox From_-line's sender address + deliver: Log all mail saves and failures + Tru64 SIA passdb support. Patch by Simon L Jackson. - INBOX was listed twice in mailbox list if namespace prefix was used - INBOX-prefixed namespaces were a bit broken - kqueue: Fix 100% CPU usage - deliver: Duplicate storage was a bit broken - dictionary code was broken (ie. dict quota) - SIGHUP caused crashes sometimes
2006-10-09Flag a number of packages I use as supporting (user-)destdir.joerg2-2/+6
apg is a bit special as it has some hardcoded ownership, so mark that as "destdir".
2006-10-09Use Python distuils logic.joerg1-16/+8
2006-10-09Add patch to imap/backend.c(r1.38), diff came from cyrus cvs repository.obache3-2/+84
r1.39: initialize err to revent segfault r1.40: only free() the backend struct if we allocated it (don't free cached connections) Bump PKGREVISION.
2006-10-09Use get_local_offset() instead of timezone as external symbol.joerg3-3/+26
The latter conflicts with timezone(3) at leat on DragonFly and FreeBSD. Bump revision.
2006-10-09The directory share/misc must be pre-created, otherwise it will be arillig1-1/+4
regular file after installation. PKGREVISION++.
2006-10-07Add note to description and also to +DISPLAY aboutreed3-2/+9
lock files. Bump PKGREVISION. This is for PR #31836. Also see http://www.openwall.com/popa3d/DESIGN.shtml.
2006-10-07Update cue to 20060417, provided by ISIHARA Takanori via PR 33153.obache4-17/+18
Changelog isn't available.
2006-10-07Remove mew3.uebayasi5-239/+1
2006-10-07Update mew to 5.1. PR pkg/34556 from KIRIHARA Masaharu <mki_open at yahoouebayasi3-10/+29
dot co dot jp>. Changes excerpted from 00diff: <Differences> Kazu Yamamoto Jul 5, 2006 <Differences between Mew 5.1 and Mew 4.2> * The ".mew" suffix is introduced for OS level search mechanisms. * OS level search mechanisms including Spotlight, Windows Desktop Search, Google Desktop are integrated. * The mechanism of master password was implemented. Set mew-use-master-passwd to t to use it. * When sending a message, if your SMTP server requires user authentication, Mew asks you to input your password. You don't have to configure mew-smtp-user anymore. * In Draft mode, addresses which are not considered safe turn red. See mew-safe-addresses, mew-warn-addresses, mew-safe-domains, and mew-warn-domains. * You can securely save your passwords to a file with a master password. * "li" copies a message to an IMAP folder. * "I" now works in Thread mode. * "C-cC-e" in Summary has been drastically improved. * "C-cC-t" and "C-cC-y" in Summary were obsoleted. * 'mew-inbox-action-alist' can be set in 'mew-config-alist'. * "v" in Summary mode displays line numbers when off. * "C-uj" in Summary mode jumps to the message whose message number is specified. * "C-uB" decomposes any attached files. * If you want to put the 'D' mark to duplicated messages whose boyies are identical (ie spams), set mew-summary-form-mark-spam to t. * All variables can be defined in ".mew.el". You don't have to set specific variables in ".emacs".
2006-10-05update this to spamassassin 3.1.6. changes include:mrg2-7/+7
bug 5044: include local site config in sa-update lint checks bug 5048: --lint should not use network rules or AWL bug 5081: sometimes, SIGHUPing spamd would leave one child process still alive due to a race in the SIGHUP handler and the preforking code. fixed bug 5040: if in no-net scoreset, don't warn about net rules being zero-score dependencies of meta rules bug 5105: M::SA::Client doesn't always catch failed connection to spamd, fixed bug 5094: check for unit'd value used in AntiVirus.pm bug 5089: enable adding headers with single digit zero value bug 5077: fix false SPF_SOFTFAIL's when SPF queries timeout bug 5080: fix bug in update RCVD_ILLEGAL_IP evaltest to properly deal with 127/8 fix bug 5111: fix FORGED_JUNO_RCVD FP on webmail from untd.com's own systems bug 4940: _get_date_header_time() should try dates one at a time not all dates joined together bug 5098: add support for ecelerity Received headers, thanks to Joe Schaefer <joe+gmane at sunstarsys.com> bug 4975: (trivial) avoid use of unit'd value in prefork warning message bug 4418: remove no longer useful HTML_WEB_BUGS and HTML_LINK_IMAGE_BUG rules bug 5101: fix bug in mbx code introduced in a backport of 3.2 AICache code try to work around horribleness when checking in the entire built tree for the website update procedure bug 5076: unescape hash characters in the config add my nagios plugin for monitoring spamd to contrib/
2006-10-04Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev.wiz13-28/+31
2006-10-04Update cyrus-imapd to 2.2.13.obache5-43/+12
Patch provided by Jukka Salmi via PR 33576. Changes to the Cyrus IMAP Server since 2.2.12 * Allow sieve scripts to be run on shared mailboxes (via sieve annotation). * Updated nntpd to be compliant with latest draft (soon to be RFC3977). * Updated IMAP UIDPLUS extension to be compliant with latest specification (RFC4315). * Performance improvements to quota utility. * Fixed possible race condition in IMAP IDLE. * Made ptloader runtime configurable. * Added more extensive output to arbitron. * Allow responses of any length from backend when proxing IMAP/POP3/NNTP traffic. * Added plaintextloginalert option. * Only allow mbpath to be run as Cyrus user. * Added berkeley_hash and berkeley_hash_nosync cyrusdb backends (seem to perform better under heavy loads). * Added lastpop mailbox annotation. * Added subscribe/unsubscribe support to cyradm. * Fixed miscellaneous bugs and build issues.
2006-10-02Update to 4.6.4. From the changelog:schmonz2-6/+6
- add FAQ about BrokenUIDLPOP3 retrievers. - add better diagnostics for missing/invalid/unwritable state/data directory. Thanks: Christian Authmann.
2006-10-01Add & enable p5-Net-SMTP_authseb1-1/+2
2006-10-01Initial import of p5-Net-SMTP_auth version 0.08 into the NetBSD Packagesseb4-0/+28
Collection. The Perl 5 module Net::SMTP_auth is a small extension to the Net::SMTP module to authenticate to an SMTP server using one of the AUTH methods provided by Authen::SASL.
2006-10-01Workaround for SEGV problem running nmh utilities built with gcc4 by ↵dsainty1-2/+5
reducing optimisation. Allows nmh code to use nmh's private non-standard strcasecmp(). Bump PKGREVISION. Addresses PR34027.
2006-09-25Update to 2.1.9, from Martin Wilke in pkg/34567bouyer3-7/+8
Chnages since 2.1.9rc1: - Fixed an unexploitable format string vulnerability. Discovery and fix by Karl Chen. Analysis of non-exploitability by Martin 'Joey' Schulze. Also thanks go to Lionel Elie Mamane. CVE-2006-2191. Also running a diff -r shows that there has been small updates to various translations.
2006-09-24Use Makefile.common from seamonkey-bin-nightly dir instead ofsalo1-3/+2
mozilla-bin-nightly. Remove PKGREVISION, it's useless in the -nightly packages. This package didn't work for some time now, feel free to fix it.
2006-09-24Use Makefile.common from seamonkey dir instead of mozilla.salo1-2/+2
2006-09-23Update to 2.2.9: (I commit it on the freeze because it containsxtraeme2-6/+6
fixes for GTK+ 2.10) 2.2.9 changes: * The crash that occurred if the summary was sorted by a key which doesn't have visible column was fixed. * The URI of the about dialog was updated. 2.2.8 changes: * The bug that possibly lost messages when there was no disk space has been fixed, so please upgrade if possible. * The PLAIN authentication method for IMAP4 was supported. * The verification of encrypted and signed messages with combined method was supported. * Oniguruma regex library can be used instead of system's regex API. * The LDIF import of the addressbook was improved. * Full PGP signature information is displayed on the main text view. * All trailing spaces are removed when signing with PGP/MIME instead of using quoted-printable to improve compatibility with other MUAs. * A warning is displayed before sending when Bcc is specified at PGP encryption. * The bug that possibly lost relatively small messages on receiving when there was no disk space was fixed. * The behavior of manual junk filtering was fixed. * UTF-8 text can be inserted correctly in the compose window. * The error messages of the failure of displaying message body was improved. * Some workarounds for GTK+ 2.10 were made. * Minor UI fixes were made. * Other minor bugs were fixed.
2006-09-22Fix build on DragonFly 1.6+.joerg2-11/+25
2006-09-22The GNUstep packages have GNUmakefile instead of Makefile.rillig2-2/+4
2006-09-20note that EXIM_MONITOR can be enabled by setting exim-build-eximonabs1-2/+2
2006-09-16Add missing RCS Id.hira8-8/+16
2006-09-16Bump revisions due to gnome-vfs2 update: dbus-glib is now a dependency.jmmv7-8/+14
This fixes problems when some installed packages are outdated. Per wiz@'s request. Grrr, I really hate this kind of change.
2006-09-16ensure that pkgsrc's CFLAGS and CPPFLAGS are honoredschwarz1-1/+9
2006-09-15Update to 2.8.0:jmmv3-87/+149
Evolution Exchange 2.8.0 2006-09-04 ------------------------------------- Updated Translations: Abel Cheung, Funda Wang (zh), Kostas Papadimas (el), Jovan Naumovski (mk), Gabor Kelemen (hu), Duarte Loreto (pt) Gintautas Miliauskas (lt) Christophe Merlet (fr), Priit Laes (et), Raivis Dejus (lv) Josep Puigdemont i Casamajó (ca) Added Translations: Subhransu Behera (or), Ani Peter (ml), Evolution Exchange 2.7.92 2006-08-21 -------------------------------------- Updated Translations: Alexander Shopov (bg), Satoru SATOH (ja), Artur Flinta (pl), Leonid Kanter (ru), Daniel Nylander (sv), Gabor Kelemen (hu), Hendrik Richter (de), Sanlig Badral (mn), Ilkka Tuohela (fi), Clytie Siddall (vi), Matic Žgur (sl), Changwoo Ryu (ko), Tino Meinen (nl), Ivar Smolin (et), Runa Bhattacharjee (bn_IN), Maxim Dziumanenko (uk), Guntupalli Karunakar (dz), Kjartan Maraas (nb), Theppitak Karoonboonyanan (th), Ankit Patel (gu), Jovan Naumovski (mk) Evolution Exchange 2.7.91 2006-08-07 -------------------------------------- Updated Translations: Francisco Javier F. Serrador (es), Inaki Larranaga (eu), Jovan Naumovski (mk) Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi) #344196 - Fixes massive CPU Usage (Varadhan) #274321 - Display proper error message on socket error (Sushama) #170058 - Check icalcomponent before removing alarms (Chenthill) Evolution Exchange 2.7.90 2006-07-24 -------------------------------------- Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi) #344651 - crash when importing meeting invitation with attachements into Exchange calendar (Chenthill) #332304 - Evolution does not display most of the information of contact created in outlook (Vnadana) #313081 - Evolution Contact List shows deleted Exchange contact folder (Sushma) #347870 - Cannot compile with eds in CVS head (20060718) (Sushma) Evolution Exchange 2.7.3 2006-07-10 -------------------------------------- Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi) #336453 - Add SunLDAP library support - a variant of Netscape LDAP (simon.zheng) Other Fixes: - Fix for a crash while fetching mails, see https://bugzilla.novell.com/show_bug.cgi?id=179566 (Jeffrey Stedfast) - Up intltool requirement to 0.35 (Kjartan Maraas) Evolution Exchange 2.7.3 2006-06-12 -------------------------------------- Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi) #341803 - ximian-connector-setup should better be renamed to exchange-connector-setup Other Fixes: - Fix for a crash while fetching mails, see https://bugzilla.novell.com/show_bug.cgi?id=179566 (Jeffrey Stedfast) - Append -DLDAP_DEPRECATED to LDAP_CFLAGS and do not overwrite the value (Harish) Evolution Exchange 2.7.2 2006-05-15 -------------------------------------- Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi) #325957 - Needs to #define LDAP_DEPRECATED when compiling against openldap 2.3.x (Sushma) #322897 - Evolution hanged when disabled 'Exchange account' (Jeffrey Stedfast). #268412 - public mail folder subfolders not displayed on favourites (Sushma) #339277 - 'Public Folder' is displayed under favourites when check box beside it is checked (Sushma) #330265 - Exchange contacts not overwting the addresses (vandana) #334035 - There is a bad url in the ximian-connector-setup-2.4 program (Sushma) #339827 - evolution-exchange-storage crashes on startup (Chenthill) #339561 - Modify all instances does not modify as expected (Chenthill) #341229 - Modify date of a appointment/meeting does not delete event in old date (Chenthill) Other Fixes: - Adding a NULL check to prevent a crash, see bug #335629 (Patrick Ohly) Evolution Exchange 2.7.1 2006-04-24 -------------------------------------- Updated Translations: - cy (Rhys Jones) - dz (Tommi Vainikainen) Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi) #334391 - random connector crash while attaching a file to an appointment and clicking on "save" (Sushma) #334925 - Shouldn't create an empty doc directory (Jeremy Messenger) #306116 - Evolution-exchange HEAD: typos in the .po file (Sushma) #334900 - importing complex meeting invitations into Exchange calendar crashes (Chenthill) #330674 - Updated cancel meeting request exchange storage crashed (Chenthill) #334727 - Evolution randomly does not display appointment (Chentill) #330494 - Meeting accepted does not show attachments (Chentill) Other Fixes: - Removed obsolete entry for no_NO and the translation (Kjartan Maraas)
2006-09-15Update to 2.8.0:jmmv4-711/+696
Evolution 2.8.0 2006-09-04 -------------------------- Evolution 2.8 Stable Release for GNOME 2.16.0. Evolution 2.7.92 2006-08-21 --------------------------- Updated Translations Hendrik Richter (de), Wouter Bolsterlee (nl), Daniel Nylander (sv), Priit Laes (et), Francisco Javier F. Serrador (es), Satoru SATOH (ja), Subhransu Behera (or), Matic Žgu (sl), Jovan Naumovski (mk), Ankit Patel (gu), Žygimantas Beručka (lt), Gabor Kelemen (hu), Ilkka Tuohela (fi), Ahmad Riza H Nst (id), Rahul Bhalerao (mr), Clytie Siddall (vi), Changwoo Ryu (ko), Chao-Hsiung Liao (zh_HK) (zh_TW), Tino Meinen (nl), Ani Peter (ml), Xavier Conde Rueda (ca), Maxim Dziumanenko (uk), Guntupalli Karunakar (dz), Leonid Kanter (ru), Daniel van Eeden (nl), Kjartan Maraas (nb) Bug Fixes Pavel Roskin, Kjartan Maraas, Srinivasa Ragavan, Laurent Goujon, Matthew Barnes, Chenthill Palanisamy, Li Yuan, Harish Krishnaswamy, Mubeen Jukaku, Ushveen Kaur, Jeff Cai, Johannes Berg, Hiroyuki Ikezoe, Øystein Gisnås Evolution 2.7.91 2006-08-07 --------------------------- Updated Translations Jordi Mas (ca), Rhys Jones (cy), Francisco Javier F. Serrador (es), Inaki Larranag (eu), Priit Laes (et), Ilkka Tuohela (fi), Christophe Merlet (fr), Ankit Patel (gu), Jovan Naumovski (mk), Rahul Bhalera (mr), Kjartan Maraas (nb), Vincent van Adrighem (nl), Daniel Nylander (sv), Theppitak Karoonboonyanan (th), Maxim Dziumanenko (uk), Funda Wang (zh_CN), Chao-Hsiung Liao (zh_HK) (zh_TW) Bug Fixes Johnny Jacob, Srinivasa Ragavan, Alessandro Decina, Sankar P, Veerapuram Varadhan, Arvind, Andre Klapper, Bastien Nocera, Chenthill Palanisamy, Rajeev ramanathan, Devashish Sharma, Roozbeh Pournader, Sushma Rai Evolution 2.7.90 2006-07-24 --------------------------- Updated Translations: Zygimantas Berucka (lt), Christophe Merlet (fr), Francisco Javier F. Serrador (es), Changwoo Ryu (ko), Jonathan Ernst (fr), Nikos Charonitakis (el), Funda Wang (zh_CN), Ankit Patel (gu), Ilkka Tuohela (fi), Raivis Dejus (lv), Kostas Papadimas (el), Dzongkhalinux team, DIT (dz), Hendrik Richter (de), Daniel Nylander (sv), Ivar Smolin (et), Theppitak Karoonboonyanan (th), Simos Xenitellis (el), Chao-Hsuing Liao (zh_HK, zh_TW) Bug fixes and features : Arvind, Andre Klapper, Boby Wang, Yuri Pankov, Harish Krishnaswamy, Srinivasa Ragavan, Johnny Jacob, Raghavendran, Shree Krishnan, Ushveen Kaur, Karsten Brackelmann, Michael Zucchi, Hiroyuki Ikezoe, Rajeev Ramanathan, Chenthill Palanisamy, Li Yuan, Devashish Sharma, Mikhail Zabaluev, Ross Burton, Sankar, Benoît Dejean, Vandana Shenoy, Julio M. Merino Vidal, Luca Ferretti. Evolution 2.7.4 2006-07-10 -------------------------- Updated Translations: Francisco Javier F. Serrador, Jovan Naumovski, Changwoo Ryu, Nikos Charonitakis, Rostislav Raykov, Ilkka Tuohela, Ivar Smolin, Ahmad Riza H Nst, Inaki Larranaga, Ankit Patel, Vincent van Adrighem, Runa Bhattacharjee, Benoît Dejean, Theppitak Karoonboonyanan, Pawan Chitrakar, I.Felix, Rajesh Ranjan, Kjartan Maraas, Chao-Hsiung Liao, Clytie Siddall, Hendrik Richter, Daniel Nylander. Bug fixes : Andreas Köhler, Harish Krishnaswamy, Ushveen Kaur, Andre Klapper, Johnny Jacob, Mathew Barnes, Arvind_evo, Srinivasa Ragavan, Tor Lillqvist, Li Yuan, Chenthill, Wang Xin, Rajeev Ramanathan, Aishwarya K, Hiroyuki Ikezoe, Simon Zheng, Devashish Sharma, Oswald Rodrigues, Harry Lu, Oswald, Sushma Rai, Mathew Barnes, Karsten Bräckelmann, Sankar P, Frederic Peters. Evolution 2.7.3 2006-06-12 -------------------------- Updated Translations contributed by Ilkka Tuohela, Ignacio Casal Quinteiro, Kjartan Maraas, Ankit Patel, Francisco Javier F. Serrador, Funda Wang, Pema Geyleg, Vincent van Adrighem, Clytie Siddall, Stanislav Brabec, Priit Laes, Alexander Shopov. Bug fixes and other changes : Srinivasa Ragavan, Li Yuan, Harish Krishnaswamy, Chris Heath, Jeffrey Stedfast, Gary Coady, Tor Lillqvist, Frederic Peters, Wang Xin, Hiroyuki Ikezoe, Li Yuan, Parthasarathi Susarla, Simon Zheng, Devashish Sharma, Roozbeh Pournader, Johnny Jacob, Federico Mena Quintero Ed Catmur, Carlos Garcia Campos, Sushma Rai, Sankar P, David Richards, Chenthill Palanisamy, Evolution 2.7.1 2006-04-24 --------------------------- First release of 2.7 development series. What is new ? ------------- * Integration of Evolution Calendar with Cairo Evolution 2.5.92 2006-02-27 --------------------------- Bug fixes since last release : http://go-evolution.org/Evo2.5.92#Evolution Updated Translations: - ca (Jordi Mas) - cs (Miloslav Trmac) - el (Kostas Papadimas) - es (Francisco Javier F. Serrador) - et (Priit Laes) - fi (Ilkka Tuohela) - gl (Ignacio Casal Quinteiro) - gu (Ankit Patel) - ja (Takeshi AIHaNA) - ka (Clytie Siddall) - lt (Žygimantas Beručka) - nb (Kjartan Maraas) - nl (Vincent van Adrighem) - no (Kjartan Maraas) - ru (Leonid Kanter) - sr (Slobodan D. Sredojevic) - th (Theppitak Karoonboonyanan) - vi (Clytie Siddall) - zh_CN (Funda Wang) - zh_HK (Chao-Hsiung Liao) - zh_TW (Chao-Hsiung Liao) Evolution 2.5.91 2006-01-13 --------------------------- Bug fixes since last release : http://go-evolution.org/Evo2.5.91#Evolution Updated Translations: - bg (Vladimir Petkov) - ca (Xavier Conde, Jordi Mas) - cs (Lukas Novotny) - cy (Rhys Jones) - en_CA (Adam Weinberger) - es (Francisco Javier F. Serrador) - et (Ivar Smolin) - fi (Ilkka Tuohela) - gl (Ignacio Casal Quinteiro) - gu (Ankit Patel) - lt (Žygimantas Beručka) - nb, no (Kjartan Maraas) - nl (Tino Meinen) - pt_BR (Raphael Higino) - sq (Laurent Dhima) - sr, sr@Latn (Slobodan Sredojevic) - th (Theppitak Karoonboonyanan) - vi (Clytie Siddall) - zh_CN (Funda Wang) - zh_TW, zh_HK (Chao-Hsiung Liao) Evolution 2.5.90 2006-01-30 --------------------------- What's new : Bug fixes since 2.5.5 : http://bugzilla.gnome.org/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&classification=Desktop&product=Evolution&long_desc_type=substring&long_desc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&bug_status=RESOLVED&resolution=FIXED&resolution=WONTFIX&resolution=DUPLICATE&resolution=NOTABUG&resolution=NOTGNOME&resolution=INCOMPLETE&resolution=INVALID&resolution=GNOME1.x&resolution=MOVED&resolution=OBSOLETE&resolution=NOTXIMIAN&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailqa_contact2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&chfieldfrom=2006-01-17&chfieldto=Now&chfield=bug_status&chfieldvalue=RESOLVED&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0= Updated Translations: - bg (Vladimir Petkov) - el (Kostas Papadimas) - en_CA (Adam Weinberger) - es (Francisco Javier F. Serrador) - et (Ivar Smolin) - fi (Ilkka Tuohela) - gl (Ignacio Casal Quinteiro) - gu (Ankit Patel) - ko (Changwoo Ryu) - nb, no (Kjartan Maraas) - nl (Vincent van Adrighem) - pt_BR (Evandro Fernandes Giovanini) - sr, sr@Latn (Slobodan D. Sredojevic) - vi (Clytie Siddall) - zh_CN (Funda Wang) - zh_TW, zh_HK (Chao-Hsuing Liao) - POTFILES.in (Adam Weinberger) - POTFILES.in (Harish) Evolution 2.5.5 2006-01-16 -------------------------- Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi): #326458 – New Meeting/Task UI: remove useless seperators (Srini) #326265 – "Message Source", "Character Encoding" miss mnemonics (Srini) #326266 – avoid using "i" as mnemonic (Srini) #326381 – change "_Insert" mnemonic in Signature Editor Menu (Srini) #325110 – Compose Message Controls Not Working (Shreyas) #326877 – UI: Menu Bar Changes Number Of Items When No Email Highlighted (Srini) #218570 – "Collapse all" and "expand all" threads feature missing (Srini) #221270 – Send & Receive -dialog should show also account name for usability (Rohini) #246257 – Find in Message dialog - UI suggestions (Rohini) #239929 – Zoom with mousewheel broken (Rajeev) #255303 – changing folders strangeness (Srini) #325334 – "Canceled" spelling errors (Andre Klapper) #325618 – Exchange operations plugin doesn't get loaded on startup. (Srini) #313095 – gw: Disable a account which has done proxy login to other account error message is wrong (Shreyas) #325568 – Spaces disappeared from strings (Andre Klapper) #325748 – Add a new mozila built-in cert module's path for compatible reason (Simon Zheng) #273076 – Cryptic short messages in Evolution certificate manager (Andre Klapper) #324739 – Crash moving from mail to calendar (Srini) #325629 – port to the new libnotify API (Sebastien Bacher) #324816 – Alarm Tray eats CPU (Chakravarthi) #324889 – Selecting calendar from event-notification drop-down from notification-area crashes EDS (Chakravarthi) #213660 – Set default alarm type and sound file in preferences (Johnny Jacob) #320101 – When Scheduling Meeting, [Invitations] Tab Accepts Multiple Names (Chenthill) #311888 – On Recurrence Meeting Screen, Calendar Doesn't Display Correct View (Chenthill) #313112 – Make this occurence movable does not delete moved recurring instance (Chenthill) #259505 – In Calendar List View, switching months changes View (Chenthill) #271810 – Calendar not enabled if editor adds event (Chenthill) #274234 – jump to today pretty useless (Srini) #271541 – Read Only Calendars shouldn't present Read Only "New" Screen (Chenthill) #326735 – Meeting editor shows a wrong organizer (Chenthill) #325446 – Alarm Editor Window width changes as typing custom message (Srini) #325502 – resizing task editor window does not resize description input field (Srini) #325612 – strings in e-alarm-list.c need translator comments (Andre Klapper) #261071 – "RSVP" in evolution addressbook probably needs a translator comment (Andre Klapper) #216535 – changing start time should keep appointment's time length (Johnny Jacob) #258786 – 'Mark Selected Tasks as Complete' active even after tasks are marked complete (Johnny Jacob) #303193 – Changing reminder snooze time doesn't work after pressing ALT-S (Johnny Jacob) #325416 – tooltip of *earlier* appointment displayed in day view (Srini) #325414 – calendar tooltip never disappearing when aborting appointment creation (Srini) #323127 – Attachments pane gone wild (Johnny Jacob) #326378 – missing mnemonics for mail recover dialog buttons (Srini) #246237 – Compose a message dialog - label suggestions (Rohini) #317283 – Contact Categories dialog should have a default response (Devashish) #317282 – Contact Full Name dialog should have a default response (Default) #326268 – "search > advanced" misses mnemonic (Srini) #307513 – Please update some of the commandline tools. (Ali Akcaagac) #325334 – "Canceled" spelling errors (Andre Klapper) #326265 – "Message Source", "Character Encoding" miss mnemonics (Srini) #220286 – Hints are not gone after a folder switch (Srini) #326264 – "Current View" and "Caret Mode" have same mnemonic (Srini) #325132 – change "Sa junk-plugin" to "Spamassassin plugin" (Andre Klapper) #325210 – Plugin Spam learn can not work correctly (Shi Pu) #327053 – One typo in the .po file (Harish) #327155 – New grammar error (Harish) #326842 – Save password not working (Sushma) #271546 – Can't subscribe to other user's calendar with non-english Exchange server (Chenthill) #326060 – Exchange password expiry handling is broken (Sushma) #316100 – there is an empty menu after the help menu (Srini) #314748 – modal dialog issue (Sushma) #267402 – can not specify https URL for a remote calendar location (Tony Tsui) #326265 – "Message Source", "Character Encoding" miss mnemonics (Srini) #323011 – UI: options available on right click should be in menus as well (Srini) #325926 – Menu bar has entry with no text (Chenthill) New features and other fixes : - Merge caldav eplugin from evolution-caldav into Evolution (Harish) - Calendar EText Wrapping (Johnny Jacob) - CSV and Tab import support for addressbook (Devashish) - Edit menu implementation in Event/Task Editor (Johnny Jacob) - Keyboard Accelerator Fixes across Evolution (Srini & Harish) - Code cleanup (Simon Zheng, Johnny Jacob, Boby Wang, Harish ) - Win32 Fixes (Tor Lillqvist) - import-ics-attachments plugin (Johnny Jacob) Updated Translations: - bg (Alexander Shopov) - en_CA (Adam Weinberger) - es (Francisco Javier F. Serrador) - et (Priit Laes) - fi (Ilkka Tuohela) - gu (Ankit Patel) - ja (Takeshi AIHANA) - lt (Žygimantas Beručka) - nl (Vincent van Adrighem) - nb, no (Kjartan Maraas) - nn (Åsmund Skjæveland) - vi (Clytie Siddall) - zh_TW (Zhe Su, Chao-Hsiung Liao) Evolution 2.5.4 2006-01-02 -------------------------- Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi): #301149 - Translated plugin names, descriptions and labels. (Funda Wang) #323151 - Seperator in toolbar between Send/Receive and component buttons (Karsten Bräckelmann) #325120 - Remove ui/evolution-executive-summary.xml from CVS #306117 - Partially fixes typos and harmonizing capital/small letters (Andre Klapper) #319946 - Shortcut keys for Send/Receive and Save Message are same when invoked through Alt-F (Andre Klapper) #324677 - Mark as Menu does provide Clear/Completed (Srinivasa Ragavan) #313293 - Added shortcut for Preferences window (M Victor Aloysius J) #321734 - Added tooltips for Alarms and Attachment in the event editor. #322499 - Removed clashing tooltip for show/hide status bar (Srinivasa Ragavan) #227853 - Modifed Control + M to be the accelerator for show/hide preview across Evolution. (Srinivasa Ragavan) #316897 - Removed Copy To and Move To from the Evolution toolbar. (Rajeev Ramanathan) #323108 - ReOrdered Reply in the right click menu (Karsten Brackelmann) #325375 - Critical warning fix (Harish) #325276 - Modified usage of ""don't"" to "Do not" string (Harish) #306117 - Fixed few typos in po file (Andre Klapper) #325116 - Modified Cancelled to Canceled (Andre Klapper) #272772 - Added quotes to literal values (Andre Klapper) #311472 - Removed wrong singular string (Andre Klapper) #313801 - Changed duplicate mnemonic (Andre Klapper) #324173 - Changed title in selecting sound in Preferences page (Andre Klapper) #256913 - Fixed 3 HIG violations in Preferences page (Andre Klapper) #228040 - Setting up Follow-up flag to update preview (Srinivasa Ragavan) #324677 - Added menu for flag complete and clear menu (Srinivasa Ragavan) #60354 - Added the functionality to show folder name, mail and unread count in window title (NotZed) #324473 - Add-delete signature cause evolution crash (Jeff Cai) #324670 - Fixed evolution to change the pane size when changed in gconf (Sam Yang) #246256 - Changed "Case _Sensitive" to "Case _sensitive" (Varadhan) #324319 - Added accessible name for the attachment bar (Boby Wang) #234008 - Highlight drafts folder (Felix Ortega) #325364 - G_CRITICAL warning in shell (Harish) #325119 - Removed a duplicate word in the shell error dialog (Andre Klapper) #315866 - Made FAQ to point to go-evolution.org (Andre Klapper) #322001 - Fixed the display of menu item in ja locale (David Malcom) #325472 - G_CRITICAL warnings fix in certificates page (Harish) #325489 - G_CRITICAL warnings fix in tasks (Harish) #325468 - G_CRITICAL warnings fix in calendar preferences (Harish) #325123 - Removed duplication exclamation mark in iCalendar importer (Andre) #325125 - Strings Url and url are modified to URL (Andre Klapper) #313144 - Added punctuation to calendar error messages (Andre Klapper) #308851 - Fixed some grammatical errors in Calendar (Andre Klapper) #306150 - Fixed a confusing string in calendar schema (Chenthill) #248133 - Peculiar popup menu in Scheduling tab (Chakravarthi) #324525 - Delete Calendar events should default to Cancel (Chenthill) #323125 - Default search bar in calendar is not same after pressing clear (Varadhan) #323955 - Fixed Evolution hang when trying to invoke alarm daemon (Chakravarthi) #324196 - Empty summary check in event editor (Johnny Jacob) #323984 - Task / Assigned task shows part of timezone widgets in task editor (Sam Yang) #324195 - Evolution Not Pulling Down Webcal Content (Chenthill) #324094 - Added translatable strings in calendar tooltips (Srinivasa Ragavan) #324058 - Fixed a crash, while creating a calendar in exchange (Chenthill) #321739 - Synchronize between the attendees and the name selector dialog (Chenthill) #246245 - Changed the file selector title to "Insert Attachment" (Johnny Jacob) #205616 - Added new top/bottom buttons to filter dialog (Mathew Hall) #246225 - Changed strings in Advanced Search dialog (Arulanandan) #246227 - Changed strings in Save Search dialog (Arulanandan) #258048 - Modified categories menu to option (Srinivasa Ragavan) #266003 - Fixed a false status message in import popup (Sushma) #309618 - G_CRITICAL warnings fix (Harish) #246233 - Modified Search Editor to Searches (Johnny Jacob) #303876 - Fix for input strings committed in the wrong order in Evolution Task (Akira TAGOH) #306118 - Fixed a typo in e-table (Andre Klapper) #240762 - Make only user creatable views editable (Srinivasa Ragavan) #306117 - Fixed typos in bbdb plugin (Andre Klapper) #325491 - Fix to allow to right click if exchange account is configured (Sushma) #306117 - Fixed typos in exchange errors (Andre Klapper) #324678 - Creating the contacts folder and accessing it from Evolution is not working (Sushma) #324580 - Set the folder subscription dialog title correctly (Sushma) #313545 - Added translator comments for Exchange Delegate dialog (Sushma) #324485 - Fix to stop asking password twice during account creation (Sushma) #324483 - Fixed a memory leak in connector (Sushma) #325127 - Changed string Uid to UID (Andre Klapper) #320119 - Fix to avoid Novell Address Book Showing Up Twice In Lists (Sushma) #274433 - Fixed encoding conversion problem when converting email to task (Chenthill) #325128 - Added a missed word in itip formatter (Andre Klapper) #313554 - Marked missing strings translatable in itip-formatter (Andre Klapper) New features and other fixes : - Added visual cue to the present of search filter (Srinivasa Ragavan) - G_CRITICAL warnings (Harish) - Network Manager support in Evolution (Shreyas) - Publish Calendar plugin (David Trowbridge) - Using gstdio wrappers and code cleanup (Tor Lillqvist) - Win32 Fixes (Tor Lillqvist) Updated Translations: - be (Ales Nyakhaychyk) - en_CA (Adam Weinberger) - es (Francisco Javier F. Serrador) - el (Kostas Papadimas) - fi (Ilkka Tuohela) - gl (Ignacio Casal Quinteiro) - gu (Ankit Patel) - ja (Takeshi AIHANA) - lt (Žygimantas Beručka) - nb, no (Kjartan Maraas) - nn (Åsmund Skjæveland) - vi (Clytie Siddall) - zh_CN (Funda Wang) Evolution 2.5.3 2005-12-12 -------------------------- Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi): #321639 - order of Reply methods confusing in the menu (Karsten Brackelmann) #321640 - Forward As menu missing (Karsten Brackelmann) #323140 - Mail Contex Menu ordered incorrectly (Karsten Brackelmann) #323253 - Evolution fails to show mailbox in send & receive dialog (Shi Pu) #322414 - Evolution doesn't respect to a key's change in gconf (Sam Yang) #315987 - Evolution 2.4 crashes EVERY time i sent an email (Parthasarathi) #316315 - Evolution exchange storage crashes on ECalendar sync (Varadhan) #322616 - End time in list view is displayed in UTC timezone (Chenthill) #317322 - crash when delete a imported recurrent event (Chenthill) #314639 - Evolution crashed on right click and select new appointment (Chenthill) #318777 - recurrence editing ... (Chenthill) #321237 - The categories' name cannot be displayed in braille monitor (Boby Wang) #314550 - When description of meeting is lengthy alarm notify popup should have scrollbar (Chakravarthi) #322863 - crashes on redirect (Parthasarathi) #300300 - Evolution, EAddress-conduit extra newline breaks PalmOS (Sushma) #303856 - Appointment Editor's OK button still greyed out after changing value (Johnny Jacob) #322740 - Screen Reader can't read the subject or date (Boby Wang) #322776 - Unable to keyboard navigate into message headers pane, if no message selected. (Li Yuan) #313219 - gal_view_new_dialog_set_property() does GTK_IS_ENTRY(random) (Veerapuram Varadhan) #322311 - New defined viewname with non-ASCII characters is not displayed in the View menu on some Non Ascii locale (Simon Zheng) #272514 - Don't include URL in translateable evolution-exchange message (Sushma) #314583 - Incorrect error messages (Sushma) #314576 - hang when using "Type: None" for a mail account (Partha) New features and other fixes : Evolution Editor UI and tooltip enhancements (Srinivasa Ragavan and Chenthill) Resolve duplicate symbols in e-util wrt libedataserver (Irene) Fix make-clean issues in Evolution plugins (Harish) e-attachment-bar crasher and Misc. code clean-up (Harish) Win32 related fixes and code clean-up (Tor Lillqvist) Updated Translations: - be (Vital Khilko) - bg (Rostislav Raykov) - cs (Miloslav Trmac) - en_CA (Adam Weinberger) - es (Francisco Javier F. Serrador) - et (Ivar Smolin) - fi (Ilkka Tuohela) - gl (Ignacio Casal Quinteiro) - ja (Takeshi AIHANA) - lt (Zygimantas Beručka) - nb, no (Kjartan Maraas) - th (Theppitak Karoonboonyanan) - zh_CN (Funda Wang) - zh_TW (Abel Cheung) - zh_TW (Chao-Hsuing Liao) Evolution 2.5.2 2005-10-25 -------------------------- New Features: - New Event / Meeting Editor dialog (Srinivasa Ragavan & Chenthill) - Hula Account setup plugin (Harish) Bugzilla bugs fixed (see http://bugzilla.gnome.org/show_bug.cgi): #302974 - Added accelerators for Next and Previous message (Sankar) #314638 - Fixes a memory build-up, while creating a new meeting with new category (Chakravarthi) #313538 - Fix to show Free/Busy information for organiser (Chenthil) #321088 - Fix to reduce the size of time window in free/busy to avoid the scroll of widget in the wrong direction. It Shows only 35 days in the canvas. (Chenthill) #273322 - Fixed a crash in evolution, when calendar is removed, remove it from publishing. (Dinesh) #316710 - Fixed a alarm issue to popup for exchange, by obtaining correct key for a authenticated calendar (Chakravarthi) #319217 - Show only alarms starting from today for missed alarms (Chakravarthi) #316280 - Fix to addressbook print to use specified page size (Evan Yan) #229972 - In contact editor, move focus automatically to next field, after setting phone from the menus (Devashish) #301081 - Fix to rememberpublishing recipents in converting mail to task plugin (Mubeen) #308752 - Renamed 'Meetings and Tasks' to 'Calendar and Tasks' in Preferences (Dinesh) Other Fixes: - Category syncing in todo-conduits (Nathen Owens) - Adjust the Date/Time widgets to take actual size in meeting/event page (Chenthill) - Automatic file extention filling in saving a calendar (Dinesh) - Code Cleanup (Harish) Update Translations: - bg (Alexander Shopov) - ca (Adam Weinberger) - es (Francisco Javier F. Serrador) - et (Priit Laes) - fi (Ilkka Tuohela) - gl (Ignacio Casal Quinteiro) - ku (Erdal Ronahi) - lt (Žygimantas Beručka) Evolution 2.5.1 2005-10-25 -------------------------- New !! Evolution Memos component (Nathan Owens) and plenty of bug fixes as usual.