summaryrefslogtreecommitdiffstats
path: root/mandriva/2010.2/kdepim/kdepim-3.4.0-use-point-kmail.patch
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 12:06:23 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 12:06:23 +0900
commit40be1ebef7a688235d4730561908a02f10505385 (patch)
treeab182bf59496abaee2ddbf03d3e910bd37ae57e8 /mandriva/2010.2/kdepim/kdepim-3.4.0-use-point-kmail.patch
parentc169e89296c2d885faa5cdeba21dc35b10b2f583 (diff)
downloadtde-packaging-40be1ebef7a688235d4730561908a02f10505385.tar.gz
tde-packaging-40be1ebef7a688235d4730561908a02f10505385.zip
Removed obsolete Mandriva 2010 packaging files.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'mandriva/2010.2/kdepim/kdepim-3.4.0-use-point-kmail.patch')
-rw-r--r--mandriva/2010.2/kdepim/kdepim-3.4.0-use-point-kmail.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/mandriva/2010.2/kdepim/kdepim-3.4.0-use-point-kmail.patch b/mandriva/2010.2/kdepim/kdepim-3.4.0-use-point-kmail.patch
deleted file mode 100644
index 4503f4a3f..000000000
--- a/mandriva/2010.2/kdepim/kdepim-3.4.0-use-point-kmail.patch
+++ /dev/null
@@ -1,31 +0,0 @@
---- kdepim-3.4.0/kmail/kmkernel.cpp-- 2005-04-07 10:46:16.522963291 -0400
-+++ kdepim-3.4.0/kmail/kmkernel.cpp 2005-04-07 10:58:04.836316900 -0400
-@@ -1069,6 +1069,7 @@ void KMKernel::init()
- cfg->writeEntry("previous-version", KMAIL_VERSION);
- TQString foldersPath = cfg->readPathEntry( "folders" );
- kdDebug(5006) << k_funcinfo << "foldersPath (from config): '" << foldersPath << "'" << endl;
-+ bool migrateMail = true;
-
- if ( foldersPath.isEmpty() ) {
- foldersPath = localDataPath() + "mail";
-@@ -1369,6 +1370,20 @@ bool KMKernel::transferMail( QString & d
- }
-
- if ( dir.isEmpty() ) {
-+ // check whether the user has a ~/.Mail folder
-+ fi.setFile( TQDir::home(), ".Mail" );
-+ if ( fi.exists() && fi.isDir() &&
-+ TQFile::exists( TQDir::homeDirPath() + "/.Mail/.inbox.index" ) ) {
-+ // there's a ~/Mail folder which seems to be used by KMail (because of the
-+ // index file)
-+ dir = TQDir::homeDirPath() + "/.Mail";
-+ // the following two lines can be removed once moving mail is reactivated
-+ destinationDir = dir;
-+ return true;
-+ }
-+ }
-+
-+ if ( dir.isEmpty() ) {
- return true; // there's no old mail folder
- }
-