Summary: | KMail expire time arbitrarily changed | ||
---|---|---|---|
Product: | [Unmaintained] kmail | Reporter: | Joshua Tinnin <krinklyfig> |
Component: | general | Assignee: | kdepim bugs <kdepim-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | FreeBSD Ports | ||
OS: | FreeBSD | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Joshua Tinnin
2005-04-05 15:11:19 UTC
Hallo, I have the same error found on my system. Interesing is, that if you create an folder, than set it to the number of days you want, close Kmail and resart it, it is gone for this folder as long as you don't change anything, then it starts againe. Steve SVN commit 599816 by aacid: Need to store config when changing units, if not very bad things happen BUGS: 103287 M +2 -0 kmfolder.cpp --- branches/KDE/3.5/kdepim/kmail/kmfolder.cpp #599815:599816 @@ -700,6 +700,7 @@ { if (units >= expireNever && units < expireMaxUnits) mUnreadExpireUnits = units; + mStorage->writeConfig(); } void KMFolder::setReadExpireAge( int age ) @@ -714,6 +715,7 @@ { if (units >= expireNever && units <= expireMaxUnits) mReadExpireUnits = units; + mStorage->writeConfig(); } |