summaryrefslogtreecommitdiff
path: root/misc/kdepim3
AgeCommit message (Collapse)AuthorFilesLines
2006-01-24Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 becausewiz2-3/+4
of the shlib major bump. PKGREVISION++ for the dependencies.
2006-01-07Added a patch to prevent expansion of the toupper and tolower macros inrillig2-1/+20
C++. Needed at least for NetBSD 1.6.2/i386.
2006-01-06DEPENDS and PKGREVISION bumps because db4's library name changed.wiz2-4/+4
2005-12-18Fix errno.joerg2-1/+15
2005-12-18Fix defining of socklen_t for NetBSD (and DragonFly). Should fixmarkd2-1/+15
PR pkg/32311.
2005-12-11Update to KDE 3.5markd8-124/+822
Many new features and refinements. Notable changes include: * Konqueror is the second web browser to pass the Acid2 CSS test, ahead of Firefox and Internet Explorer * Konqueror can also now free web pages from adverts with its ad-block feature * SuperKaramba is included in KDE, providing well-integrated and easy-to-install widgets for the user's desktop * Kopete has support for MSN and Yahoo! webcams * The edutainment module has three new applications (KGeography, Kanagram and blinKen), and has seen huge improvements in Kalzium
2005-11-02Replaced USE_PERL=run with USE_TOOLS+=perl:run.rillig1-3/+2
2005-10-13Update to KDE 3.4.3markd6-71/+7
Changes: backported bug fixes.
2005-09-28Darn, another fix for qt-3.3.5adam1-1/+9
2005-09-22Fix the problem reported in PR pkg/31169 and the same problem in themarkd1-1/+7
kdepim3 package. On Solaris nawk can't handle the length of the lines generated for config.status.overridden for these two packages, so get pkgsrc itself to use gawk for these packages by adding USE_TOOLS+=gawk:pkgsrc.
2005-08-02Fix for saving/opening attachments in Kmail. From KDE SVN.markd3-2/+25
Bump PKGREVISION.
2005-07-30Update to KDE 3.4.2markd7-155/+7
Changes: * KAlarm: Minimise KMix window if KMix is started by KAlarm when displaying a message. * KAlarm: Prevent session restoration displaying main windows which should be hidden. * KAlarm: Prevent alarm message windows being too large for screen. * KAlarm: Change --volume command line option short form from -v to -V to avoid clash with --version. * KNode: Fix %NAME and %EMAIL custom header macros * KNode: Support news server that don't understand the LIST OVERVIEW.FMT command * KNode: Fix subject field cursor regression * Akregator: Improve rendering speed of the article list drastically (by about factor 10) * Akregator: Fix opening of non-HTML files in external applications
2005-07-25We never use the libgpgme-copy (we use the real package) so don't bothermarkd5-106/+1
patching it.
2005-06-23Retracting change made earlier today. Leaving it for Mark Davies toshannonjr1-3/+1
examine and commit as he sees fit.
2005-06-23Added buildlink3.mk includes for security/libgpg-error andshannonjr1-1/+3
security/libassuan. The configure script ckecks for these packages and substitutes very old versions if they are not found. This change ensures that the correct header files are used during compilation.
2005-06-19Make compile with old g++'s.markd3-1/+35
2005-05-31Update to KDE 3.4.1markd11-50/+157
Changes: * KMail: Fix compilation on IRIX * KMail: Send redirected messages to the correct address even if sending failed at first * KMail: Fix crash when canceling KWallet password prompt * KMail: Reduce memory consumption when importing folders * KMail: Honor the character encoding when loading a message from a file * KMail: Fix problem with per-identity BCC addresses * KMail: Fix problem with inline forwarding of CC'ed messages * KMail: Allow thread-related actions for single messages in threaded message list * KMail: Show correct attachment status of imported message * KMail: Fix attachment detection * KMail: Fix problem with context menu for email addresses * KMail: Show categories in the recipients picker * KMail: Fix problem with Apply button staying disabled * KMail: Correctly update filters filtering by status * KMail: Fix for deletion of folders with subfolders using cached imap * KMail: Rename temporary file used for compaction so that it doesn't risk appearing when kmail is killed and restarted * KNode: Don't create empty reference headers when superseding articles * KNode: Cleanly terminate network threads * KNode: Respect custom color settings in the folder tree and source viewer * KNode: More robust handling of optional headers in XOVER response * KNode: Don't toggle 'sort by thread change date' when restoring header view layout * KNode: Show error message on write errors * KNode: Remove linebreaks from subject * KNode: Don't break inline GPG signatures when forwarding messages * KNode: Fix drag&drop crash in folder tree * karm: Don't crash when deleting a task. * Akregator: Don't crash when closing tab before the page is loaded. * Akregator: Show icons on status filter combobox KMail style * Akregator: Make reset filter button to reset status filter * Akregator: Show window with size it was closed or with one from command line * Akregator: Remove block around "Read more" link
2005-05-31Packages have no business modifying PKG_DEFAULT_OPTIONS -- it's adillo1-2/+3
user settable variable. Set PKG_SUGGESTED_OPTIONS instead. Also, make use of PKG_OPTIONS_LEGACY_VARS. Reviewed by wiz.
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-11Rename MAKE_VARS to MAKEVARS so that it more closely resemblesjlam1-2/+2
"MAKEFLAGS". Both "MAKEVARS" and "MAKEFLAGS" affect the package-level make process, not the software's own make process.
2005-05-11I mixed up MAKE_FLAGS with MAKEFLAGS. The latter is what we actually usejlam1-3/+3
to pass make flags to bmake.
2005-05-09Don't assign to PKG_OPTIONS.<pkg> which has special meaning to thejlam1-6/+6
options framework. Rename PKG_OPTIONS.* to PKG_BUILD_OPTIONS.*.
2005-05-09Teach bsd.pkg.mk to create a phase-specific "makevars.mk" file thatjlam1-4/+4
caches variable definitions that were computed by make. These variables are specified by listing them in MAKE_VARS, e.g., .if !defined(FOO) FOO!= very_time_consuming_command .endif MAKE_VARS+= FOO bsd.pkg.mk will include only the one generated during the most recent phase. A particular phase's makevars.mk file consists of variable definitions that are a superset of all of the ones produced in previous phases of the build. The caching is useful because bsd.pkg.mk invokes make recursively, which in the example above has the potential to run the very time-consuming command each time unless we cause FOO to be defined for the sub-make processes. We don't cache via MAKE_FLAGS because MAKE_FLAGS isn't consistently applied to every invocation of make, and also because MAKE_FLAGS can overflow the maximum length of a make variable very quickly if we add many values to it. One important and desirable property of variables cached via MAKE_VARS is that they only apply to the current package, and not to any dependencies whose builds may have been triggered by the current package. The makevars.mk files are generated by new targets fetch-vars, extract-vars, patch-vars, etc., and these targets are built during the corresponding real-* target to ensure that they are being invoked with PKG_PHASE set to the proper value. Also, remove the variables cache file that bsd.wrapper.mk was generating since the new makevars.mk files provide the same functionality at a higher level. Change all WRAPPER_VARS definitions that were used by the old wrapper-phase cache file into MAKE_VARS definitions.
2005-05-08PKG_OPTIONS.<pkg> isn't a good approximation to PKG_OPTIONS for thejlam1-2/+8
package because PKG_OPTION.<pkg> could contain negative options, which are never part of PKG_OPTIONS. Instead, use the show-var target to display the value. We cache it in WRAPPER_VARS and in MAKE_FLAGS to prevent reinvoking the show-var target recursively.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-28Remove security/cyrus-sasl and security/cy-login. These packagesjlam2-6/+6
tracked the Cyrus SASL 1.5.x releases, which are no longer maintained. Adjust packages to use security/cyrus-sasl2 instead for SASL support. This closes PR pkg/28218 and PR pkg/29736.
2005-03-24Make cyrus-sasl2 dependency optional but on by default. Default mightmarkd3-6/+22
be switched if common authentication cases are handled without it.
2005-03-23Update to KDE 3.4markd8-184/+478
Highlights at a glance * Text-to-speech system with support built into Konqueror, Kate, KPDF and the standalone application KSayIt * Support for text to speech synthesis is integrated with the desktop * Completely redesigned, more flexible trash system * Kicker with improved look and feel * KPDF now enables you to select, copy & paste text and images from PDFs, along with many other improvements * Kontact supports now various groupware servers, including eGroupware, GroupWise, Kolab, OpenGroupware.org and SLOX * Kopete supports Novell Groupwise and Lotus Sametime and gets integrated into Kontact * DBUS/HAL support allows to keep dynamic device icons in media:/ and on the desktop in sync with the state of all devices * KHTML has improved standard support and now close to full support for CSS 2.1 and the CSS 3 Selectors module * Better synchronization between 2 PCs * A new high contrast style and a complete monochrome icon set * An icon effect to paint all icons in two chosen colors, converting third party application icons into high contrast monochrome icons * Akregator allows you to read news from your favourite RSS-enabled websites in one application * Juk has now an album cover management via Google Image Search * KMail now stores passwords securely with KWallet * SVG files can now be used as wallpapers * KHTML plug-ins are now configurable, so the user can selectively disable ones that are not used. This does not include Netscape-style plug-ins. Netscape plug-in in CPU usage can be manually lowered, and plug-ins are more stable. * more than 6,500 bugs have been fixed * more than 1,700 wishes have been fullfilled * more than 80,000 contributions with several million lines of code and documentation added or changed
2005-02-24Add RMD160 digestsagc1-1/+2
2004-12-23Use sh rather than bash to run update script.markd3-2/+26
Partial fix for PR 28657. Bump PKGREVISION.
2004-12-10Update to kde 3.3.2markd5-83/+152
Changes: * kalarm: fix KAlarm button on message windows to make it always display the main window * kmail: remember the size of the separate message window instead of using a fixed window size * kmail: gracefully handle broken connections when checking for new mail with IMAP * kmail: don't clear the readerwindow when new mail arrives in an imap folder * kmail: fix aegypten issue39 by only using the body itself as a text part if there are no body parts and we didn't get any other text so far, such as for smime opaque encrypted mails * kmail: fix the "folders not visible" problem after starting KMail when the intro is shown * kmail: fix searching when the header field in question is the first one of a message * kmail: disable wordwrap in the composer for all inline invitation mails, not just for those sent with autosending enabled * kmail: don't translate the "local" folder prefix; this fixes problems with KMail's summary plugin * kmail: fix adding attachments to inline-forwarded messages * kmail: remember the selected crypto format when saving a message as draft * kmail: hide filter actions from "Configure Toolbars" dialog; fixes crashes * kmail: fix missing filter actions after switching to the Mail component in Kontact * kmail: remove BCC coming from identity on ical invitations * kmail: grab the signature only once * kmail: fix problem with disappearing dimap folders * kmail: don't kill running mailchecks when cancelling the subscription dialog * kmail: add missing tooltip to the BCC [...] button * kmail: make sure that no signature is appended to inline invitation replies, Outlook chokes on them * kmail: don't sign or encrypt inline invitations or invitation replies * kmail: fix PGP/MIME encrypting messages which are BCC'ed * kmail: make sure that all changes in the folder properties are saved * kmail: fix uncontrolled checkboxes in the composer's attachment list * kmail: improved performance when dragging mails over the folder list * kmail: provide all reply methods and all forward methods in the separate message window * kmail: fix minor bugs in the antispam wizard * kmail: correctly end new-mail-check when an IMAP folder reports an error * kmail: fix 'kstart --iconify --windowclass kmail kmail' which allows starting KMail in the system tray * kmail: fix broken order of folders in the folder selection dropdown box * kmail: notice a manual change of the external editor command line * kmail: adjust antispam wizard to changes in bogofilter 0.93 * kmail: don't look up recipient keys during autosave * kmail: fix "Folder Menu not updated after enabling Expiration for a Folder * kmail: add support for additional antispam tools * kmail: various speed improvements * kontact: don't show empty tip of the day on startup
2004-12-06Solaris' nawk and yacc aren't up to building kdepim3.gavan1-1/+2
2004-11-28From KDE CVS, KDE_3_3_BRANCH:kleink3-3/+17
kdepim/korganizer/plugins/holidays/holidays.cpp 1.12.2.1: Backport of bug fixes for #84979 (crash on AMD64) [...] Bump version to kdepim-3.3.1nb2, and update the version required by the kde3 meta package.
2004-11-18More duplicate dirrm cleanup.markd1-4/+4
2004-11-18Don't delete services/kded on package deletion (kdelibs does it)markd1-2/+2
Partial fix for PR pkg/28342.
2004-11-08This package has copied several files from gpgme verbatimshannonjr6-2/+112
that have been patched recently to correctly use getenv_r, ttyname_r and strerror_r. This update applies the same changes to the copied files.
2004-10-13Update to KDE 3.3.1.markd4-6/+47
Changes: * kaddressbook: Update the button bar when adding contacts from the ldap query * kalarm: Prevent crash if kalarmui.rc is missing * kalarm: Prevent Quit option from becoming useless if "Don't ask again" is selected along with Cancel in confirmation dialog * kalarm: Fix scheduling of weekly/monthly/yearly recurrences from the command line * kalarm: Fix errors when altering or cancelling deferrals of expired recurrences * kalarm: Fix message window size not fitting message * kalarm: Prevent blind copy to self of email alarms via KMail when bcc is deselected * kmail: Fixed a couple of bugs which can lead to mail loss with disconnected IMAP * kmail: Fixed "Switch to html mode when using bullets in composer" * kmail: Fixed "Clicking bold/italic in composer sometimes doesn't do anything" * kmail: Fixed the mailing list address importing * kmail: Fixed folder tree flicker * kmail: Fixed "attaching files with long lines causes message loss" * kmail: Filter dialog: create at least one new filter where there is one (usability improvement) * kmail: Fixed crash on folder creation under certain conditions * kmail: AV-filter scripts: Make antivir search in archives * kmail: Numerous crash fixes (xml-gui, anti-spam wizard) * kmail: Added icon for agenda resource folder * kmail: Don't move files if source and target folder are the same * kmail: Let address completion keep working after reconfiguring ldap servers * kmail: Fixed crash when expiring mail with the menu item * kmail: Made it possible to use disconnected IMAP folders as draft folders * kmail: Allow the use of distribution list in BCC again * kmail: ACL dialog: make sure user cannot remove his own folder admin rights * kpilot: Added missing icons * kpilot: Various fixes * korganizer: Fix typeahead for new events in agendaview * korganizer: Don't crash on undo when no resource is available * korganizer: Fixes for freebuy view: if appointment is more than 15 days in the future; made "pick a date" button work" * korganizer: Don't crash when cancelling a drop on the daymatrix * korganizer: Various fixes in the invitation editor dialog * korganizer: Various timezone handling fixes * korganizer: Fix for "directory for local dir resource was never automatically created, and all data of that resource was just lost" * korganizer: Don't try to save read-only resources, which lead to an error. * konsolekalender: various fixes * kontact: "open in addressbook" when kaddressbook-part is not yet loaded showed only the addressbook part * kontact: Completely rewritten knotes plugin * kontact: Summary view: new default plugins * kontact: Summary view: various layouting fixes * kontact: Sidebar: do not raise part on certain drag'n drop actions
2004-10-07Make qt3-tools dependency full rather than build as kaddressbook dependsmarkd1-1/+3
on libqui. From Ian Zagorskih in PR pkg/27178.
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv2-2/+4
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-222/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-08-21Update to KDE 3.3markd7-302/+540
Changes: * Kontact o Kolab client integraton. Bo Thorsen o KPilot integration into Kontact. Reinhold Kainhofer, Adriaan de Groot o eGroupware connection. Tobias Koenig o Bug voting and feature purchasing help menu items. Don Sanders * KMail o HTML mail composing. Don Sanders, Edwin Schepers o List only open IMAP folders Carsten Burghardt o Quick search toolbar item Don Sanders o Anti Spam Wizard Andreas Gungl o Anti Virus Wizard Frederick Emmott o Filter Log Viewer Andreas Gungl o Per-contact crypto preferences Marc Mutz o Crypto plugins autoconfiguration Marc Mutz o Split sign and encryption keys Marc Mutz o Preset encryption/sign keys for OpenPGP and S/MIME in the identity Marc Mutz o Importing certificates from PKCS#7 certs-only attachments Marc Mutz o Add new (automatic) mailinglist handling functionality. Zack Rusin o Add viewer plugins to allow e.g. KOrganizer to display invitations embedded in KMail. Ingo Kloecker o Renaming of Disconnected IMAP folders Bo Thorsen o New filters: "is email in addressbook?", "is email in one of the addressbook's categories?", "has email an attachmen?" Martin Koebele, Ingo Kloecker o Merge in presence display via KIMProxy Will Stephenson o Allow starting IM chats from an address's context menu Will Stephenson o IMAP ACL support (aka shared folders) David Faure o Expiring old messages as a background task, optionally by moving them to another folder David Faure o Compacting mbox/maildir folders as a background task David Faure * Kleopatra (formerly known as KGpgCertManager) o Importing/exporting certificates and secret keys Marc Mutz o Deleting certificates Marc Mutz o Async / cancel'able operations Marc Mutz o Highlighting of revoked/expired/etc certificates in the certlist Marc Mutz * KOrganizer o Recurrence on todo's Bram Schoenmakers o Free/Busy view Cornelius Schumacher o Automatic upload of Free/Busy information to server Cornelius Schumacher o Remote calendars (auto-update, change notification) Cornelius Schumacher o More flexible working hour configuration (minute-based, working days can be selected, overnight shifts are possible) Reinhold Kainhofer o Allow editing of more than one day in Journal (diary) view Reinhold Kainhofer o Holiday plugin uses the system's country as default Reinhold Kainhofer o Filters are also applied to todo lists, and to printing the todo list Reinhold Kainhofer, Bram Schoenmakers o "Copy to" date and "Move to" date popup in popup menu for todo items Bram Schoenmakers o "Edit"-button in alarmdialog Bram Schoenmakers * KPilot o Fix knotes conduit Adriaan de Groot o KPilot integration into Kontact Reinhold Kainhofer o Configuration wizard (only three settings, handheld is auto-detected!) Reinhold Kainhofer o Allow syncing to remote files (calendar, todo, addressbook) Joern Ahrens o Add a custom page to KAddressbook's contact editor to allow editing of the custom fields synced by the addressbook conduit Reinhold Kainhofer * KAlarm o Add facility to define alarm templates David Jarvie o Add option to play sound file repeatedly until alarm window is closed David Jarvie o Add volume control for playing sound file David Jarvie o Add 'stop sound' button to alarm message window when sound file is played David Jarvie o Add facility to execute shell commands before or after an alarm is displayed David Jarvie o Middle mouse button over system tray icon displays new alarm dialog David Jarvie o Add option to display a reminder once only before the first alarm recurrence David Jarvie o Add facility to specify shell commands to execute before or after an alarm is displayed David Jarvie o Display time-to-alarm in reminder message window David Jarvie o For message texts which are truncated in main window, show full text in tooltip David Jarvie o Allow more flexible formats in time entry fields David Jarvie o After creating/editing alarm, prompt to re-enable alarms if currently disabled David Jarvie * KArm o Documentation Mark Bucciarelli o File locking Mark Bucciarelli o CSV Export of timecard history Mark Bucciarelli * KNotes o Network-enabled KNotes Michael Brade o Implement rich text mode for the notes. Michael Brade * KitchenSync o Finish framework. Cornelius Schumacher o Syncing addressbook and calendar data between desktops. Cornelius Schumacher * KNode o Improved HTML rendering Roberto Selbach Teixeira o Partial KMail look'n'feel Roberto Selbach Teixeira o Show long group names as tooltips. Roberto Teixeira * KAddressBook o Simple and advanced Custom Fields support Tobias Koenig o Field selection for vCard export plugin Tobias Koenig o GUI for per-contact crypto settings (see also KMail) Marc Mutz, Steffen Hansen o Make KAddressBook work fine with asynchronous interface of libkabc Tobias Koenig o Polish up the GEO, PHOTO, LOGO and SOUND input widgets Tobias Koenig o Merge presence display in summary view Will Stephenson o Merge editor widget for multiple IM addresses Will Stephenson o Add progress bar to KAddressbook's Nokia mobile phone import/export filter Helge Deller o Add custom page to allow editing of the custom fields synced by the addressbook conduit Reinhold Kainhofer * KonsoleKalendar o Fix exporting recurring events Allen Winter o Handle timezones and localization Allen Winter o New --next command line argument for showing next event Tuukka Pasanen o New --show-next command line argument for showing next so many days events Tuukka Pasanen o Add a new compact, easy to read, export format Allen Winter * libkdepim o Add a renamed KIMProxy so that we can use its services and retain compatibility with 3.2. KIMProxy code has been merged with libkdepim. Will Stephenson
2004-08-05Apply patch from kdepim HEAD to fix build on Solaris.markd2-1/+14
2004-06-10update to kde 3.2.3markd2-4/+8
changes: * KNotes: Shortcuts work again Fixed being able to uncheck all text format buttons in RT mode Fixed possibility of some global settings not being saved * KNode: Fix coloring of quoted text * KNode: Prevent multiple configure shortcuts actions when running in Kontact
2004-06-05Mention kmailcvt, korn, knode.markd1-0/+3
2004-06-05Mention that package includes kmail too.reed1-0/+1
2004-04-24Unused.wiz1-126/+0
2004-04-20bl3ify and update to kde3.2.2.markd6-19/+79
Changes: * kalarm: Fix Ctrl+Q must QUIT the application and not hide it to system tray * kalarm: Update time entry field after editing when mouse cursor leaves it. * kalarm: Prevent undeleted recurring alarms being triggered immediately. * kalarm: Do not allow alarms to be undeleted if they are completely expired. * kmail: Improved look with other styles than Keramik. * KNode: Don't save accounts before they have a valid id * KNotes: o lots of fixes o finished rich text support o use KConfig XT for default values o use XML GUI for all actions * Make various scripts install with the executable bit set
2004-04-14Make use of the new USE_DIRS variable, instead of directly depending on thejmmv1-3/+2
*-dirs packages.
2004-03-26PKGREVISION bump after openssl-security-fix-update to 0.9.6m.wiz2-2/+4
Buildlink files: RECOMMENDED version changed to current version.
2004-03-09Update to KDE 3.2.1.markd4-88/+4
Changes: KAlarm: Fix freeze at login KAlarm: Fix alarms being missed at login KAlarm: Fix memory leaks KAlarm: Fix errors saving the expired alarms calendar KAlarm: Fix scheduleCommand() and scheduleEmail() DCOP handling KAlarm: Prevent email alarms from being sent if no 'From' address is configured KAlarm: Omit 'Bcc' when sending email alarms if no 'Bcc' address is configured KAlarm: Sound file chooser dialog now shows all audio file types KMail: Don't save messages to disk with world-readable permissions set by default. KMail: Fix bug #69418 (filters don't work anymore as in 3.1.4) KMail: Fix bug #73307 (Expire on exit does not work if confirmation is enabled) KMail: Fix 'Copy Link Location' in a detached reader. KMail: Fix bug #73310 (sending a new mail while forgetting the receiver and/or the subject the composing window is minimized and hidden) KMail: Fix bug #73602 (Message body lines starting with "From " are incorrectly parsed as message seperator in mbox folders) KMail: Fix bug #72808 (reply to myself is broken / empty To: address field) KMail: Fix bug #62919 (reply all should not use From when ReplyTo is set (except for mailing list messages)) KMail: If one uses reply-all for replying to a message from oneself then now the first other recipient is added to To:; previously To: was empty because the own address (which was the sender address) is removed from the list of recipients and all other recipients were listed in the Cc: header. KMail: Fix bug #73527 (filter-Window is switch in the background when "rename filter"-Dialog appears. (just within Kontact)) KMail: Correct the sizes shown in the message structure viewer for IMAP messages. KMail: Fix critical bug #71866 (conversion of pop filter settings dangerous) KMail: Fix critical bug which caused whole IMAP folders to be deleted when messages were filtered through spamc or other external applications. KMail: Fix a crash during startup with invalid IMAP folders. KMail: Fix bug #74272 (Cannot subscribe to cyrus imap "sharedprefix" folders) KMail: Don't activate reader window on kmail --check. KMail: Fix saving of multipart/signed message parts inside multipart/mixed message parts. KMail: Don't disable sign/encrypt if we're using S/MIME and no OpenPGP key has been specified for this identity. KMail: Fix bug #74591 (kmail crashes after retrieving imap folders) KMail: Fix bug #74380 (Change of the account symbolic name caused loss of the sent and drafts folders) KMail: Fix bug #70558 (IDN domains are shown ACE-encoded in the statusbar) KMail: Fix problems with changed sort order after arrival of new mail or closing config dialog. KMail: Fix bug #75024 (search for or also returns read emails) KMail: Fix bug #70459 (Keyboard shortcuts for Forward, etc. don't work in Kontact after another component has been selected) KMail: Fix signature creation time validation. Visible bug was that for signatures made in January, the printing of the creation time was suppressed. KMail: Fix passive popup placement and taskbar flashing of new mail notification in Kontact KMail: Fix bug #75983 (moved IMAP messages lose attachments) KNode: Prevent unnecessary wallet openings when closing KNode