You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2196 lines
71 KiB
2196 lines
71 KiB
/** |
|
* kmfolderimap.cpp |
|
* |
|
* Copyright (c) 2001 Kurt Granroth <granroth@kde.org> |
|
* Copyright (c) 2000-2002 Michael Haeckel <haeckel@kde.org> |
|
* |
|
* This file is based on kmacctimap.coo by Michael Haeckel which was |
|
* based on kmacctexppop.cpp by Don Sanders |
|
* |
|
* This program is free software; you can redistribute it and/or modify |
|
* it under the terms of the GNU General Public License as published by |
|
* the Free Software Foundation; version 2 of the License |
|
* |
|
* This program is distributed in the hope that it will be useful, |
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
* GNU General Public License for more details. |
|
* |
|
* You should have received a copy of the GNU General Public License |
|
* along with this program; if not, write to the Free Software |
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
*/ |
|
#ifdef HAVE_CONFIG_H |
|
#include <config.h> |
|
#endif |
|
|
|
#include "kmfolderimap.h" |
|
#include "kmfoldermbox.h" |
|
#include "kmfoldertree.h" |
|
#include "undostack.h" |
|
#include "kmfoldermgr.h" |
|
#include "kmmsgdict.h" |
|
#include "imapjob.h" |
|
using KMail::ImapJob; |
|
#include "attachmentstrategy.h" |
|
using KMail::AttachmentStrategy; |
|
#include "progressmanager.h" |
|
using KPIM::ProgressItem; |
|
using KPIM::ProgressManager; |
|
#include "listjob.h" |
|
using KMail::ListJob; |
|
|
|
#include <kdebug.h> |
|
#include <kio/scheduler.h> |
|
#include <kconfig.h> |
|
#include <kmessagebox.h> |
|
|
|
#include <qbuffer.h> |
|
#include <qtextcodec.h> |
|
|
|
#include <assert.h> |
|
|
|
KMFolderImap::KMFolderImap(KMFolder* folder, const char* aName) |
|
: KMFolderMbox(folder, aName) |
|
{ |
|
mContentState = imapNoInformation; |
|
mSubfolderState = imapNoInformation; |
|
mAccount = 0; |
|
mIsSelected = FALSE; |
|
mLastUid = 0; |
|
mCheckFlags = TRUE; |
|
mCheckMail = TRUE; |
|
mCheckingValidity = FALSE; |
|
mUserRights = 0; |
|
mAlreadyRemoved = false; |
|
mHasChildren = ChildrenUnknown; |
|
mMailCheckProgressItem = 0; |
|
mListDirProgressItem = 0; |
|
|
|
connect (this, SIGNAL( folderComplete( KMFolderImap*, bool ) ), |
|
this, SLOT( slotCompleteMailCheckProgress()) ); |
|
} |
|
|
|
KMFolderImap::~KMFolderImap() |
|
{ |
|
if (mAccount) { |
|
mAccount->removeSlaveJobsForFolder( folder() ); |
|
/* Now that we've removed ourselves from the accounts jobs map, kill all |
|
ongoing operations and reset mailcheck if we were deleted during an |
|
ongoing mailcheck of our account. Not very gracefull, but safe, and the |
|
only way I can see to reset the account state cleanly. */ |
|
if ( mAccount->checkingMail( folder() ) ) { |
|
mAccount->killAllJobs(); |
|
} |
|
} |
|
writeConfig(); |
|
if (kmkernel->undoStack()) kmkernel->undoStack()->folderDestroyed( folder() ); |
|
mMetaDataMap.setAutoDelete( true ); |
|
mMetaDataMap.clear(); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::close(bool aForced) |
|
{ |
|
if (mOpenCount <= 0 ) return; |
|
if (mOpenCount > 0) mOpenCount--; |
|
if (mOpenCount > 0 && !aForced) return; |
|
// FIXME is this still needed? |
|
if (mAccount) |
|
mAccount->ignoreJobsForFolder( folder() ); |
|
int idx = count(); |
|
while (--idx >= 0) { |
|
if ( mMsgList[idx]->isMessage() ) { |
|
KMMessage *msg = static_cast<KMMessage*>(mMsgList[idx]); |
|
if (msg->transferInProgress()) |
|
msg->setTransferInProgress( false ); |
|
} |
|
} |
|
// The inherited close will decrement again, so we have to adjust. |
|
mOpenCount++; |
|
KMFolderMbox::close(aForced); |
|
} |
|
|
|
KMFolder* KMFolderImap::trashFolder() const |
|
{ |
|
QString trashStr = account()->trash(); |
|
return kmkernel->imapFolderMgr()->findIdString( trashStr ); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
KMMessage* KMFolderImap::getMsg(int idx) |
|
{ |
|
if(!(idx >= 0 && idx <= count())) |
|
return 0; |
|
|
|
KMMsgBase* mb = getMsgBase(idx); |
|
if (!mb) return 0; |
|
if (mb->isMessage()) |
|
{ |
|
return ((KMMessage*)mb); |
|
} else { |
|
KMMessage* msg = FolderStorage::getMsg( idx ); |
|
if ( msg ) // set it incomplete as the msg was not transferred from the server |
|
msg->setComplete( false ); |
|
return msg; |
|
} |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::setAccount(KMAcctImap *aAccount) |
|
{ |
|
mAccount = aAccount; |
|
if( !folder() || !folder()->child() ) return; |
|
KMFolderNode* node; |
|
for (node = folder()->child()->first(); node; |
|
node = folder()->child()->next()) |
|
{ |
|
if (!node->isDir()) |
|
static_cast<KMFolderImap*>(static_cast<KMFolder*>(node)->storage())->setAccount(aAccount); |
|
} |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::readConfig() |
|
{ |
|
KConfig* config = KMKernel::config(); |
|
KConfigGroupSaver saver(config, "Folder-" + folder()->idString()); |
|
mCheckMail = config->readBoolEntry("checkmail", true); |
|
|
|
mUidValidity = config->readEntry("UidValidity"); |
|
if (mImapPath.isEmpty()) mImapPath = config->readEntry("ImapPath"); |
|
if (QString(name()).upper() == "INBOX" && mImapPath == "/INBOX/") |
|
{ |
|
folder()->setSystemFolder( true ); |
|
folder()->setLabel( i18n("inbox") ); |
|
} |
|
mNoContent = config->readBoolEntry("NoContent", FALSE); |
|
mReadOnly = config->readBoolEntry("ReadOnly", FALSE); |
|
|
|
KMFolderMbox::readConfig(); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::writeConfig() |
|
{ |
|
KConfig* config = KMKernel::config(); |
|
KConfigGroupSaver saver(config, "Folder-" + folder()->idString()); |
|
config->writeEntry("checkmail", mCheckMail); |
|
config->writeEntry("UidValidity", mUidValidity); |
|
config->writeEntry("ImapPath", mImapPath); |
|
config->writeEntry("NoContent", mNoContent); |
|
config->writeEntry("ReadOnly", mReadOnly); |
|
KMFolderMbox::writeConfig(); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::remove() |
|
{ |
|
if ( mAlreadyRemoved || !mAccount ) |
|
{ |
|
// override |
|
FolderStorage::remove(); |
|
return; |
|
} |
|
KURL url = mAccount->getUrl(); |
|
url.setPath(imapPath()); |
|
if ( mAccount->makeConnection() == ImapAccountBase::Error ) |
|
{ |
|
emit removed(folder(), false); |
|
return; |
|
} |
|
KIO::SimpleJob *job = KIO::file_delete(url, FALSE); |
|
KIO::Scheduler::assignJobToSlave(mAccount->slave(), job); |
|
ImapAccountBase::jobData jd(url.url()); |
|
jd.progressItem = ProgressManager::createProgressItem( |
|
"ImapFolderRemove" + ProgressManager::getUniqueID(), |
|
"Removing folder", |
|
"URL: " + folder()->prettyURL(), |
|
false, |
|
mAccount->useSSL() || mAccount->useTLS() ); |
|
mAccount->insertJob(job, jd); |
|
connect(job, SIGNAL(result(KIO::Job *)), |
|
this, SLOT(slotRemoveFolderResult(KIO::Job *))); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::slotRemoveFolderResult(KIO::Job *job) |
|
{ |
|
ImapAccountBase::JobIterator it = mAccount->findJob(job); |
|
if ( it == mAccount->jobsEnd() ) return; |
|
if (job->error()) |
|
{ |
|
mAccount->handleJobError( job, i18n("Error while removing a folder.") ); |
|
emit removed(folder(), false); |
|
} else { |
|
mAccount->removeJob(it); |
|
FolderStorage::remove(); |
|
} |
|
|
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::removeMsg(int idx, bool quiet) |
|
{ |
|
if (idx < 0) |
|
return; |
|
|
|
if (!quiet) |
|
{ |
|
KMMessage *msg = getMsg(idx); |
|
deleteMessage(msg); |
|
} |
|
|
|
mLastUid = 0; |
|
KMFolderMbox::removeMsg(idx); |
|
} |
|
|
|
void KMFolderImap::removeMsg( const QPtrList<KMMessage>& msgList, bool quiet ) |
|
{ |
|
if ( msgList.isEmpty() ) return; |
|
if (!quiet) |
|
deleteMessage(msgList); |
|
|
|
mLastUid = 0; |
|
|
|
/* Remove the messages from the local store as well. |
|
We don't call KMFolderInherited::removeMsg(QPtrList<KMMessage>) but |
|
iterate ourselves, as that would call KMFolderImap::removeMsg(int) |
|
and not the one from the store we want to be used. */ |
|
|
|
QPtrListIterator<KMMessage> it( msgList ); |
|
KMMessage *msg; |
|
while ( (msg = it.current()) != 0 ) { |
|
++it; |
|
int idx = find(msg); |
|
assert( idx != -1); |
|
// ATTENTION port me to maildir |
|
KMFolderMbox::removeMsg(idx, quiet); |
|
} |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
int KMFolderImap::rename( const QString& newName, KMFolderDir */*aParent*/ ) |
|
{ |
|
if ( newName == name() ) |
|
return 0; |
|
|
|
QString path = imapPath(); |
|
path.replace( name(), newName ); |
|
KURL src( mAccount->getUrl() ); |
|
src.setPath( imapPath() ); |
|
KURL dst( mAccount->getUrl() ); |
|
dst.setPath( path ); |
|
// hack to transport the new name |
|
ImapAccountBase::jobData jd; |
|
jd.path = newName; |
|
KIO::SimpleJob *job = KIO::rename( src, dst, true ); |
|
kdDebug(5006)<< "KMFolderImap::rename - " << src.prettyURL() |
|
<< " |=> " << dst.prettyURL() |
|
<< endl; |
|
mAccount->insertJob( job, jd ); |
|
KIO::Scheduler::assignJobToSlave( mAccount->slave(), job ); |
|
connect( job, SIGNAL(result(KIO::Job*)), |
|
SLOT(slotRenameResult(KIO::Job*)) ); |
|
setImapPath( path ); |
|
return 0; |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::slotRenameResult( KIO::Job *job ) |
|
{ |
|
ImapAccountBase::JobIterator it = mAccount->findJob( job ); |
|
if ( it == mAccount->jobsEnd() ) return; |
|
KIO::SimpleJob* sj = static_cast<KIO::SimpleJob*>(job); |
|
if ( job->error() ) { |
|
// rollback |
|
setImapPath( sj->url().path() ); |
|
mAccount->handleJobError( job, i18n("Error while renaming a folder.") ); |
|
return; |
|
} |
|
// unsubscribe old (we don't want ghosts) |
|
mAccount->changeSubscription( false, sj->url().path() ); |
|
// subscribe new |
|
mAccount->changeSubscription( true, imapPath() ); |
|
// ATTENTION port me to maildir |
|
KMFolderMbox::rename( (*it).path ); |
|
mAccount->removeJob(it); |
|
kmkernel->folderMgr()->contentsChanged(); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::addMsgQuiet(KMMessage* aMsg) |
|
{ |
|
KMFolder *aFolder = aMsg->parent(); |
|
Q_UINT32 serNum = 0; |
|
aMsg->setTransferInProgress( false ); |
|
if (aFolder) { |
|
serNum = aMsg->getMsgSerNum(); |
|
kmkernel->undoStack()->pushSingleAction( serNum, aFolder, folder() ); |
|
int idx = aFolder->find( aMsg ); |
|
assert( idx != -1 ); |
|
aFolder->take( idx ); |
|
} |
|
// Remember the status, so it can be transfered to the new message. |
|
mMetaDataMap.insert(aMsg->msgIdMD5(), new KMMsgMetaData(aMsg->status(), serNum)); |
|
|
|
delete aMsg; |
|
aMsg = 0; |
|
getFolder(); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::addMsgQuiet(QPtrList<KMMessage> msgList) |
|
{ |
|
KMFolder *aFolder = msgList.first()->parent(); |
|
Q_UINT32 serNum = 0; |
|
if (aFolder) serNum = msgList.first()->getMsgSerNum(); |
|
int undoId = -1; |
|
for ( KMMessage* msg = msgList.first(); msg; msg = msgList.next() ) |
|
{ |
|
if ( undoId == -1 ) |
|
undoId = kmkernel->undoStack()->newUndoAction( aFolder, folder() ); |
|
kmkernel->undoStack()->addMsgToAction( undoId, msg->getMsgSerNum() ); |
|
// Remember the status, so it can be transfered to the new message. |
|
mMetaDataMap.insert(msg->msgIdMD5(), new KMMsgMetaData(msg->status(), serNum)); |
|
msg->setTransferInProgress( false ); |
|
} |
|
if (aFolder) aFolder->take(msgList); |
|
msgList.setAutoDelete(true); |
|
msgList.clear(); |
|
getFolder(); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
int KMFolderImap::addMsg(KMMessage* aMsg, int* aIndex_ret) |
|
{ |
|
QPtrList<KMMessage> list; list.append(aMsg); |
|
return addMsg(list, aIndex_ret); |
|
} |
|
|
|
int KMFolderImap::addMsg(QPtrList<KMMessage>& msgList, int* aIndex_ret) |
|
{ |
|
KMMessage *aMsg = msgList.getFirst(); |
|
KMFolder *msgParent = aMsg->parent(); |
|
|
|
ImapJob *imapJob = 0; |
|
if (msgParent) |
|
{ |
|
if (msgParent->folderType() == KMFolderTypeImap) |
|
{ |
|
if (static_cast<KMFolderImap*>(msgParent->storage())->account() == account()) |
|
{ |
|
// make sure the messages won't be deleted while we work with them |
|
for ( KMMessage* msg = msgList.first(); msg; msg = msgList.next() ) |
|
msg->setTransferInProgress(true); |
|
|
|
if (folder() == msgParent) |
|
{ |
|
// transfer the whole message, e.g. a draft-message is canceled and re-added to the drafts-folder |
|
for ( KMMessage* msg = msgList.first(); msg; msg = msgList.next() ) |
|
{ |
|
if (!msg->isComplete()) |
|
{ |
|
int idx = msgParent->find(msg); |
|
assert(idx != -1); |
|
msg = msgParent->getMsg(idx); |
|
} |
|
imapJob = new ImapJob(msg, ImapJob::tPutMessage, this); |
|
connect(imapJob, SIGNAL(messageStored(KMMessage*)), |
|
SLOT(addMsgQuiet(KMMessage*))); |
|
imapJob->start(); |
|
} |
|
|
|
} else { |
|
|
|
// get the messages and the uids |
|
QValueList<ulong> uids; |
|
getUids(msgList, uids); |
|
|
|
// get the sets (do not sort the uids) |
|
QStringList sets = makeSets(uids, false); |
|
|
|
for ( QStringList::Iterator it = sets.begin(); it != sets.end(); ++it ) |
|
{ |
|
// we need the messages that belong to the current set to pass them to the ImapJob |
|
QPtrList<KMMessage> temp_msgs = splitMessageList(*it, msgList); |
|
if ( temp_msgs.isEmpty() ) kdDebug(5006) << "Wow! KMFolderImap::splitMessageList() returned an empty list!" << endl; |
|
imapJob = new ImapJob(temp_msgs, *it, ImapJob::tMoveMessage, this); |
|
connect(imapJob, SIGNAL(messageCopied(QPtrList<KMMessage>)), |
|
SLOT(addMsgQuiet(QPtrList<KMMessage>))); |
|
connect(imapJob, SIGNAL(result(KMail::FolderJob*)), |
|
SLOT(slotCopyMsgResult(KMail::FolderJob*))); |
|
imapJob->start(); |
|
} |
|
} |
|
if (aIndex_ret) *aIndex_ret = -1; |
|
return 0; |
|
} |
|
else |
|
{ |
|
// different account, check if messages can be added |
|
QPtrListIterator<KMMessage> it( msgList ); |
|
KMMessage *msg; |
|
while ( (msg = it.current()) != 0 ) |
|
{ |
|
++it; |
|
if (!canAddMsgNow(msg, aIndex_ret)) |
|
msgList.remove(msg); |
|
else { |
|
if (!msg->transferInProgress()) |
|
msg->setTransferInProgress(true); |
|
} |
|
} |
|
} |
|
} // if imap |
|
} |
|
|
|
for ( KMMessage* msg = msgList.first(); msg; msg = msgList.next() ) |
|
{ |
|
// transfer from local folders or other accounts |
|
if (msgParent && !msg->isMessage()) |
|
{ |
|
int idx = msgParent->find(msg); |
|
assert(idx != -1); |
|
msg = msgParent->getMsg(idx); |
|
} |
|
if (!msg->transferInProgress()) |
|
msg->setTransferInProgress(true); |
|
imapJob = new ImapJob(msg, ImapJob::tPutMessage, this); |
|
connect(imapJob, SIGNAL(messageStored(KMMessage*)), |
|
SLOT(addMsgQuiet(KMMessage*))); |
|
imapJob->start(); |
|
} |
|
|
|
if (aIndex_ret) *aIndex_ret = -1; |
|
return 0; |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::slotCopyMsgResult( KMail::FolderJob* job ) |
|
{ |
|
if ( job->error() ) // getFolder() will not be called in this case |
|
emit folderComplete( this, false ); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::copyMsg(QPtrList<KMMessage>& msgList) |
|
{ |
|
for (KMMessage *msg = msgList.first(); msg; msg = msgList.next()) { |
|
// Remember the status, so it can be transfered to the new message. |
|
mMetaDataMap.insert(msg->msgIdMD5(), new KMMsgMetaData(msg->status())); |
|
} |
|
QValueList<ulong> uids; |
|
getUids(msgList, uids); |
|
QStringList sets = makeSets(uids, false); |
|
for ( QStringList::Iterator it = sets.begin(); it != sets.end(); ++it ) |
|
{ |
|
// we need the messages that belong to the current set to pass them to the ImapJob |
|
QPtrList<KMMessage> temp_msgs = splitMessageList(*it, msgList); |
|
|
|
ImapJob *job = new ImapJob(temp_msgs, *it, ImapJob::tCopyMessage, this); |
|
job->start(); |
|
} |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
QPtrList<KMMessage> KMFolderImap::splitMessageList(const QString& set, |
|
QPtrList<KMMessage>& msgList) |
|
{ |
|
int lastcomma = set.findRev(","); |
|
int lastdub = set.findRev(":"); |
|
int last = 0; |
|
if (lastdub > lastcomma) last = lastdub; |
|
else last = lastcomma; |
|
last++; |
|
if (last < 0) last = set.length(); |
|
// the last uid of the current set |
|
const QString last_uid = set.right(set.length() - last); |
|
QPtrList<KMMessage> temp_msgs; |
|
QString uid; |
|
if (!last_uid.isEmpty()) |
|
{ |
|
QPtrListIterator<KMMessage> it( msgList ); |
|
KMMessage* msg = 0; |
|
while ( (msg = it.current()) != 0 ) |
|
{ |
|
// append the msg to the new list and delete it from the old |
|
temp_msgs.append(msg); |
|
uid.setNum( msg->UID() ); |
|
// remove modifies the current |
|
msgList.remove(msg); |
|
if (uid == last_uid) break; |
|
} |
|
} |
|
else |
|
{ |
|
// probably only one element |
|
temp_msgs = msgList; |
|
} |
|
|
|
return temp_msgs; |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
KMMessage* KMFolderImap::take(int idx) |
|
{ |
|
KMMsgBase* mb(mMsgList[idx]); |
|
if (!mb) return 0; |
|
if (!mb->isMessage()) readMsg(idx); |
|
|
|
KMMessage *msg = static_cast<KMMessage*>(mb); |
|
deleteMessage(msg); |
|
|
|
mLastUid = 0; |
|
return KMFolderMbox::take(idx); |
|
} |
|
|
|
void KMFolderImap::take(QPtrList<KMMessage> msgList) |
|
{ |
|
deleteMessage(msgList); |
|
|
|
mLastUid = 0; |
|
KMFolderMbox::take(msgList); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
bool KMFolderImap::listDirectory(bool secondStep) |
|
{ |
|
if ( !mAccount || |
|
( mAccount && mAccount->makeConnection() == ImapAccountBase::Error ) ) |
|
{ |
|
kdDebug(5006) << "KMFolderImap::listDirectory - got no connection" << endl; |
|
return false; |
|
} |
|
|
|
// reset |
|
if ( this == mAccount->rootFolder() ) |
|
{ |
|
mAccount->setHasInbox( false ); |
|
// recursive |
|
setSubfolderState( imapNoInformation ); |
|
} |
|
mSubfolderState = imapInProgress; |
|
|
|
// get the folders |
|
ImapAccountBase::ListType type = ImapAccountBase::List; |
|
if ( mAccount->onlySubscribedFolders() ) |
|
type = ImapAccountBase::ListSubscribed; |
|
ListJob* job = new ListJob( this, mAccount, type, secondStep, |
|
false, mAccount->hasInbox(), QString::null, account()->listDirProgressItem() ); |
|
connect( job, SIGNAL(receivedFolders(const QStringList&, const QStringList&, |
|
const QStringList&, const QStringList&, const ImapAccountBase::jobData&)), |
|
this, SLOT(slotListResult(const QStringList&, const QStringList&, |
|
const QStringList&, const QStringList&, const ImapAccountBase::jobData&))); |
|
job->start(); |
|
|
|
return true; |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::slotListResult( const QStringList& subfolderNames_, |
|
const QStringList& subfolderPaths, |
|
const QStringList& subfolderMimeTypes, |
|
const QStringList& subfolderAttributes, |
|
const ImapAccountBase::jobData& jobData ) |
|
{ |
|
QStringList subfolderNames( subfolderNames_ ); // for the clear() below. |
|
mSubfolderState = imapFinished; |
|
bool it_inboxOnly = jobData.inboxOnly; |
|
bool createInbox = jobData.createInbox; |
|
// kdDebug(5006) << name() << ": " << subfolderNames.join(",") << "; inboxOnly:" << it_inboxOnly |
|
// << ", createinbox:" << createInbox << ", hasinbox:" << mAccount->hasInbox() << endl; |
|
|
|
// don't react on changes |
|
kmkernel->imapFolderMgr()->quiet(true); |
|
if (it_inboxOnly) { |
|
// list again only for the INBOX |
|
listDirectory(true); |
|
} else { |
|
if ( folder()->isSystemFolder() && mImapPath == "/INBOX/" |
|
&& mAccount->prefix() == "/INBOX/" ) |
|
{ |
|
// do not create folders under INBOX when we have an INBOX prefix |
|
createInbox = false; |
|
subfolderNames.clear(); |
|
} |
|
folder()->createChildFolder(); |
|
KMFolderImap *f = 0; |
|
KMFolderNode *node = folder()->child()->first(); |
|
while (node) |
|
{ |
|
// check if the folders still exist on the server |
|
if (!node->isDir() && (node->name().upper() != "INBOX" || !createInbox) |
|
&& subfolderNames.findIndex(node->name()) == -1) |
|
{ |
|
kdDebug(5006) << node->name() << " disappeared" << endl; |
|
// remove the folder without server round trip |
|
KMFolder* fld = static_cast<KMFolder*>(node); |
|
static_cast<KMFolderImap*>(fld->storage())->setAlreadyRemoved(true); |
|
kmkernel->imapFolderMgr()->remove(fld); |
|
node = folder()->child()->first(); |
|
} |
|
else node = folder()->child()->next(); |
|
} |
|
if ( createInbox ) |
|
{ |
|
// create the INBOX |
|
for (node = folder()->child()->first(); node; |
|
node = folder()->child()->next()) |
|
if (!node->isDir() && node->name() == "INBOX") break; |
|
if (node) { |
|
f = static_cast<KMFolderImap*>(static_cast<KMFolder*>(node)->storage()); |
|
} else { |
|
f = static_cast<KMFolderImap*> |
|
(folder()->child()->createFolder("INBOX", true)->storage()); |
|
if ( !mAccount->listOnlyOpenFolders() ) // should be ok as a default |
|
f->setHasChildren( FolderStorage::HasNoChildren ); |
|
} |
|
f->setAccount(mAccount); |
|
f->setImapPath("/INBOX/"); |
|
f->folder()->setLabel(i18n("inbox")); |
|
for (uint i = 0; i < subfolderNames.count(); i++) |
|
{ |
|
if ( subfolderNames[i] == "INBOX" && |
|
subfolderPaths[i] == "/INBOX/" ) |
|
f->setNoChildren( subfolderMimeTypes[i] == "message/digest" ); |
|
} |
|
if (!node) f->close(); |
|
// so we have an INBOX |
|
mAccount->setHasInbox( true ); |
|
kmkernel->imapFolderMgr()->contentsChanged(); |
|
if ( !mAccount->listOnlyOpenFolders() ) { |
|
f->listDirectory(); |
|
} |
|
} |
|
for (uint i = 0; i < subfolderNames.count(); i++) |
|
{ |
|
// create folders if necessary |
|
if (subfolderNames[i].upper() == "INBOX" && |
|
subfolderPaths[i] == "/INBOX/" && |
|
mAccount->hasInbox()) // do not create an additional inbox |
|
continue; |
|
for (node = folder()->child()->first(); node; |
|
node = folder()->child()->next()) |
|
if (!node->isDir() && node->name() == subfolderNames[i]) break; |
|
if (node) |
|
f = static_cast<KMFolderImap*>(static_cast<KMFolder*>(node)->storage()); |
|
else { |
|
KMFolder *newFolder = folder()->child()->createFolder(subfolderNames[i]); |
|
if ( newFolder ) { |
|
f = static_cast<KMFolderImap*> ( newFolder->storage() ); |
|
if ( f ) { |
|
f->close(); |
|
} |
|
} |
|
if ( !f ) { |
|
kdWarning(5006) << "can't create folder " << subfolderNames[i] << endl; |
|
} |
|
} |
|
if (f) |
|
{ |
|
// update progress |
|
account()->listDirProgressItem()->incCompletedItems(); |
|
account()->listDirProgressItem()->updateProgress(); |
|
account()->listDirProgressItem()->setStatus( folder()->prettyURL() + i18n(" completed") ); |
|
f->setAccount(mAccount); |
|
if ( f->hasChildren() == FolderStorage::ChildrenUnknown ) |
|
{ |
|
// this is for new folders |
|
kmkernel->imapFolderMgr()->contentsChanged(); |
|
} |
|
|
|
// update children state |
|
if ( subfolderAttributes[i].find( "haschildren", 0, false ) != -1 ) |
|
{ |
|
f->setHasChildren( FolderStorage::HasChildren ); |
|
} else if ( subfolderAttributes[i].find( "hasnochildren", 0, false ) != -1 ) |
|
{ |
|
f->setHasChildren( FolderStorage::HasNoChildren ); |
|
} else |
|
{ |
|
if ( mAccount->listOnlyOpenFolders() ) |
|
f->setHasChildren( FolderStorage::ChildrenUnknown ); |
|
else // we don't need to be expandable |
|
f->setHasChildren( FolderStorage::HasNoChildren ); |
|
} |
|
f->setImapPath(subfolderPaths[i]); |
|
f->setNoContent(subfolderMimeTypes[i] == "inode/directory"); |
|
f->setNoChildren(subfolderMimeTypes[i] == "message/digest"); |
|
if ( mAccount->listOnlyOpenFolders() && |
|
f->hasChildren() != FolderStorage::ChildrenUnknown ) |
|
{ |
|
// tell the tree our information changed |
|
kmkernel->imapFolderMgr()->contentsChanged(); |
|
} |
|
if ( ( subfolderMimeTypes[i] == "message/directory" || |
|
subfolderMimeTypes[i] == "inode/directory" ) && |
|
!mAccount->listOnlyOpenFolders() ) |
|
{ |
|
f->listDirectory(); |
|
} |
|
} |
|
} // for subfolders |
|
} // inbox_only |
|
// now others should react on the changes |
|
kmkernel->imapFolderMgr()->quiet(false); |
|
emit directoryListingFinished( this ); |
|
account()->listDirProgressItem()->setComplete(); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::checkValidity() |
|
{ |
|
if (!mAccount) { |
|
emit folderComplete(this, false); |
|
return; |
|
} |
|
KURL url = mAccount->getUrl(); |
|
url.setPath(imapPath() + ";UID=0:0"); |
|
kdDebug(5006) << "KMFolderImap::checkValidity of: " << imapPath() << endl; |
|
|
|
// Start with a clean slate |
|
disconnect( mAccount, SIGNAL( connectionResult(int, const QString&) ), |
|
this, SLOT( checkValidity() ) ); |
|
|
|
KMAcctImap::ConnectionState connectionState = mAccount->makeConnection(); |
|
if ( connectionState == ImapAccountBase::Error ) { |
|
kdDebug(5006) << "KMFolderImap::checkValidity - got no connection" << endl; |
|
emit folderComplete(this, FALSE); |
|
mContentState = imapNoInformation; |
|
return; |
|
} else if ( connectionState == ImapAccountBase::Connecting ) { |
|
// We'll wait for the connectionResult signal from the account. If it |
|
// errors, the above will catch it. |
|
kdDebug(5006) << "CheckValidity - waiting for connection" << endl; |
|
connect( mAccount, SIGNAL( connectionResult(int, const QString&) ), |
|
this, SLOT( checkValidity() ) ); |
|
return; |
|
} |
|
// Only check once at a time. |
|
if (mCheckingValidity) { |
|
kdDebug(5006) << "KMFolderImap::checkValidity - already checking" << endl; |
|
return; |
|
} |
|
// otherwise we already are inside a mailcheck |
|
if ( !mMailCheckProgressItem ) { |
|
mMailCheckProgressItem = ProgressManager::createProgressItem( |
|
account()->mailCheckProgressItem(), |
|
"MailCheck" + folder()->prettyURL(), |
|
folder()->prettyURL(), |
|
i18n("checking"), |
|
false, |
|
account()->useSSL() || account()->useTLS() ); |
|
} else { |
|
mMailCheckProgressItem->setProgress(0); |
|
} |
|
if ( account()->mailCheckProgressItem() ) { |
|
account()->mailCheckProgressItem()->setStatus( folder()->prettyURL() ); |
|
} |
|
ImapAccountBase::jobData jd( url.url() ); |
|
KIO::SimpleJob *job = KIO::get(url, FALSE, FALSE); |
|
KIO::Scheduler::assignJobToSlave(mAccount->slave(), job); |
|
mAccount->insertJob(job, jd); |
|
connect(job, SIGNAL(result(KIO::Job *)), |
|
SLOT(slotCheckValidityResult(KIO::Job *))); |
|
connect(job, SIGNAL(data(KIO::Job *, const QByteArray &)), |
|
SLOT(slotSimpleData(KIO::Job *, const QByteArray &))); |
|
// Only check once at a time. |
|
mCheckingValidity = true; |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
ulong KMFolderImap::lastUid() |
|
{ |
|
if (mLastUid) return mLastUid; |
|
open(); |
|
if (count() > 0) |
|
{ |
|
KMMsgBase * base = getMsgBase(count()-1); |
|
mLastUid = base->UID(); |
|
} |
|
close(); |
|
return mLastUid; |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::slotCheckValidityResult(KIO::Job * job) |
|
{ |
|
kdDebug(5006) << "KMFolderImap::slotCheckValidityResult of: " << fileName() << endl; |
|
mCheckingValidity = false; |
|
ImapAccountBase::JobIterator it = mAccount->findJob(job); |
|
if ( it == mAccount->jobsEnd() ) return; |
|
if (job->error()) { |
|
mAccount->handleJobError( job, i18n("Error while querying the server status.") ); |
|
mContentState = imapNoInformation; |
|
emit folderComplete(this, FALSE); |
|
} else { |
|
QCString cstr((*it).data.data(), (*it).data.size() + 1); |
|
int a = cstr.find("X-uidValidity: "); |
|
int b = cstr.find("\r\n", a); |
|
QString uidv; |
|
if ( (b - a - 15) >= 0 ) uidv = cstr.mid(a + 15, b - a - 15); |
|
a = cstr.find("X-Access: "); |
|
b = cstr.find("\r\n", a); |
|
QString access; |
|
if ( (b - a - 10) >= 0 ) access = cstr.mid(a + 10, b - a - 10); |
|
mReadOnly = access == "Read only"; |
|
int c = (*it).cdata.find("\r\nX-Count:"); |
|
int exists = -1; |
|
if ( c != -1 ) |
|
{ |
|
bool ok; |
|
exists = (*it).cdata.mid( c+10, |
|
(*it).cdata.find("\r\n", c+1) - c-10 ).toInt(&ok); |
|
if ( !ok ) exists = -1; |
|
} |
|
QString startUid; |
|
if (uidValidity() != uidv) |
|
{ |
|
// uidValidity changed |
|
kdDebug(5006) << "KMFolderImap::slotCheckValidityResult uidValidty changed." << endl; |
|
mAccount->ignoreJobsForFolder( folder() ); |
|
mLastUid = 0; |
|
uidmap.clear(); |
|
setUidValidity(uidv); |
|
} else { |
|
if (!mCheckFlags) |
|
startUid = QString::number(lastUid() + 1); |
|
} |
|
mAccount->removeJob(it); |
|
if ( mMailCheckProgressItem ) |
|
{ |
|
if ( startUid.isEmpty() ) { |
|
// flags for all messages are loaded |
|
mMailCheckProgressItem->setTotalItems( exists ); |
|
} else { |
|
// only an approximation but doesn't hurt |
|
int remain = exists - count(); |
|
if ( remain < 0 ) remain = 1; |
|
mMailCheckProgressItem->setTotalItems( remain ); |
|
} |
|
mMailCheckProgressItem->setCompletedItems( 0 ); |
|
} |
|
reallyGetFolder(startUid); |
|
} |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::getAndCheckFolder(bool force) |
|
{ |
|
if (mNoContent) |
|
return getFolder(force); |
|
|
|
if ( mAccount ) |
|
mAccount->processNewMailSingleFolder( folder() ); |
|
if (force) { |
|
// force an update |
|
mCheckFlags = TRUE; |
|
} |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::getFolder(bool force) |
|
{ |
|
mGuessedUnreadMsgs = -1; |
|
if (mNoContent) |
|
{ |
|
mContentState = imapFinished; |
|
emit folderComplete(this, true); |
|
return; |
|
} |
|
mContentState = imapInProgress; |
|
if (force) { |
|
// force an update |
|
mCheckFlags = TRUE; |
|
} |
|
checkValidity(); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::reallyGetFolder(const QString &startUid) |
|
{ |
|
KURL url = mAccount->getUrl(); |
|
if ( mAccount->makeConnection() != ImapAccountBase::Connected ) |
|
{ |
|
mContentState = imapNoInformation; |
|
emit folderComplete(this, FALSE); |
|
return; |
|
} |
|
quiet(true); |
|
if (startUid.isEmpty()) |
|
{ |
|
if ( mMailCheckProgressItem ) |
|
mMailCheckProgressItem->setStatus( i18n("Retrieving message status") ); |
|
url.setPath(imapPath() + ";SECTION=UID FLAGS"); |
|
KIO::SimpleJob *job = KIO::listDir(url, FALSE); |
|
KIO::Scheduler::assignJobToSlave(mAccount->slave(), job); |
|
ImapAccountBase::jobData jd( url.url(), folder() ); |
|
jd.cancellable = true; |
|
mAccount->insertJob(job, jd); |
|
connect(job, SIGNAL(result(KIO::Job *)), |
|
this, SLOT(slotListFolderResult(KIO::Job *))); |
|
connect(job, SIGNAL(entries(KIO::Job *, const KIO::UDSEntryList &)), |
|
this, SLOT(slotListFolderEntries(KIO::Job *, |
|
const KIO::UDSEntryList &))); |
|
} else { |
|
if ( mMailCheckProgressItem ) |
|
mMailCheckProgressItem->setStatus( i18n("Retrieving messages") ); |
|
url.setPath(imapPath() + ";UID=" + startUid |
|
+ ":*;SECTION=ENVELOPE"); |
|
KIO::SimpleJob *newJob = KIO::get(url, FALSE, FALSE); |
|
KIO::Scheduler::assignJobToSlave(mAccount->slave(), newJob); |
|
ImapAccountBase::jobData jd( url.url(), folder() ); |
|
jd.cancellable = true; |
|
mAccount->insertJob(newJob, jd); |
|
connect(newJob, SIGNAL(result(KIO::Job *)), |
|
this, SLOT(slotGetLastMessagesResult(KIO::Job *))); |
|
connect(newJob, SIGNAL(data(KIO::Job *, const QByteArray &)), |
|
this, SLOT(slotGetMessagesData(KIO::Job *, const QByteArray &))); |
|
} |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::slotListFolderResult(KIO::Job * job) |
|
{ |
|
ImapAccountBase::JobIterator it = mAccount->findJob(job); |
|
if ( it == mAccount->jobsEnd() ) return; |
|
QString uids; |
|
if (job->error()) |
|
{ |
|
mAccount->handleJobError( job, |
|
i18n("Error while listing the contents of the folder %1.").arg( label() ) ); |
|
quiet( false ); |
|
mContentState = imapNoInformation; |
|
emit folderComplete(this, FALSE); |
|
mAccount->removeJob(it); |
|
return; |
|
} |
|
mCheckFlags = FALSE; |
|
QStringList::Iterator uid; |
|
/* |
|
The code below does the following: |
|
- for each mail in the local store and each entry we got from the server, |
|
compare the local uid with the one from the server and update the status |
|
flags of the mails |
|
- for all mails that are not already locally present, start a job which |
|
gets the envelope of each |
|
- remove all locally present mails if the server does not list them anymore |
|
*/ |
|
if ( count() ) { |
|
int idx = 0, c, serverFlags; |
|
ulong mailUid, serverUid; |
|
uid = (*it).items.begin(); |
|
while ( idx < count() && uid != (*it).items.end() ) { |
|
KMMsgBase *msgBase = getMsgBase( idx ); |
|
mailUid = msgBase->UID(); |
|
// parse the uid from the server and the flags out of the list from |
|
// the server. Format: 1234, 1 |
|
c = (*uid).find(","); |
|
serverUid = (*uid).left( c ).toLong(); |
|
serverFlags = (*uid).mid( c+1 ).toInt(); |
|
if ( mailUid < serverUid ) { |
|
removeMsg( idx, TRUE ); |
|
} else if ( mailUid == serverUid ) { |
|
// if this is a read only folder, ignore status updates from the server |
|
// since we can't write our status back our local version is what has to |
|
// be considered correct. |
|
if (!mReadOnly) |
|
flagsToStatus( msgBase, serverFlags, false ); |
|
idx++; |
|
uid = (*it).items.remove(uid); |
|
} |
|
else break; // happens only, if deleted mails reappear on the server |
|
} |
|
// remove all remaining entries in the local cache, they are no longer |
|
// present on the server |
|
while (idx < count()) removeMsg(idx, TRUE); |
|
} |
|
// strip the flags from the list of uids, so it can be reused |
|
for (uid = (*it).items.begin(); uid != (*it).items.end(); ++uid) |
|
(*uid).truncate((*uid).find(",")); |
|
ImapAccountBase::jobData jd( QString::null, (*it).parent ); |
|
jd.total = (*it).items.count(); |
|
if (jd.total == 0) |
|
{ |
|
quiet(false); |
|
mContentState = imapFinished; |
|
emit folderComplete(this, TRUE); |
|
mAccount->removeJob(it); |
|
return; |
|
} |
|
if ( mMailCheckProgressItem ) |
|
{ |
|
// next step for the progressitem |
|
mMailCheckProgressItem->setProgress( 0 ); |
|
mMailCheckProgressItem->setTotalItems( jd.total ); |
|
mMailCheckProgressItem->updateProgress(); |
|
mMailCheckProgressItem->setStatus( i18n("Retrieving messages") ); |
|
} |
|
|
|
QStringList sets; |
|
uid = (*it).items.begin(); |
|
if (jd.total == 1) sets.append(*uid + ":" + *uid); |
|
else sets = makeSets( (*it).items ); |
|
mAccount->removeJob(it); // don't use *it below |
|
|
|
// Now kick off the getting of envelopes for the new mails in the folder |
|
for (QStringList::Iterator i = sets.begin(); i != sets.end(); ++i) |
|
{ |
|
KURL url = mAccount->getUrl(); |
|
url.setPath(imapPath() + ";UID=" + *i + ";SECTION=ENVELOPE"); |
|
if ( mAccount->makeConnection() != ImapAccountBase::Connected ) |
|
{ |
|
quiet(false); |
|
emit folderComplete(this, FALSE); |
|
return; |
|
} |
|
KIO::SimpleJob *newJob = KIO::get(url, FALSE, FALSE); |
|
jd.url = url.url(); |
|
KIO::Scheduler::assignJobToSlave(mAccount->slave(), newJob); |
|
mAccount->insertJob(newJob, jd); |
|
connect(newJob, SIGNAL(result(KIO::Job *)), |
|
this, (i == sets.at(sets.count() - 1)) |
|
? SLOT(slotGetLastMessagesResult(KIO::Job *)) |
|
: SLOT(slotGetMessagesResult(KIO::Job *))); |
|
connect(newJob, SIGNAL(data(KIO::Job *, const QByteArray &)), |
|
this, SLOT(slotGetMessagesData(KIO::Job *, const QByteArray &))); |
|
} |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::slotListFolderEntries(KIO::Job * job, |
|
const KIO::UDSEntryList & uds) |
|
{ |
|
ImapAccountBase::JobIterator it = mAccount->findJob(job); |
|
if ( it == mAccount->jobsEnd() ) return; |
|
QString mimeType, name; |
|
long int flags = 0; |
|
for (KIO::UDSEntryList::ConstIterator udsIt = uds.begin(); |
|
udsIt != uds.end(); udsIt++) |
|
{ |
|
for (KIO::UDSEntry::ConstIterator eIt = (*udsIt).begin(); |
|
eIt != (*udsIt).end(); eIt++) |
|
{ |
|
if ((*eIt).m_uds == KIO::UDS_NAME) |
|
name = (*eIt).m_str; |
|
else if ((*eIt).m_uds == KIO::UDS_MIME_TYPE) |
|
mimeType = (*eIt).m_str; |
|
else if ((*eIt).m_uds == KIO::UDS_ACCESS) |
|
flags = (*eIt).m_long; |
|
} |
|
if ((mimeType == "message/rfc822-imap" || mimeType == "message/rfc822") && |
|
!(flags & 8)) { |
|
(*it).items.append(name + "," + QString::number(flags)); |
|
if ( mMailCheckProgressItem ) { |
|
mMailCheckProgressItem->incCompletedItems(); |
|
mMailCheckProgressItem->updateProgress(); |
|
} |
|
} |
|
} |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::flagsToStatus(KMMsgBase *msg, int flags, bool newMsg) |
|
{ |
|
if (flags & 4) |
|
msg->setStatus( KMMsgStatusFlag ); |
|
if (flags & 2) |
|
msg->setStatus( KMMsgStatusReplied ); |
|
if (flags & 1) |
|
msg->setStatus( KMMsgStatusOld ); |
|
|
|
// In case the message does not have the seen flag set, override our local |
|
// notion that it is read. Otherwise the count of unread messages and the |
|
// number of messages which actually show up as read can go out of sync. |
|
if (msg->isOfUnknownStatus() || !(flags&1) ) { |
|
if (newMsg) |
|
msg->setStatus( KMMsgStatusNew ); |
|
else |
|
msg->setStatus( KMMsgStatusUnread ); |
|
} |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
QString KMFolderImap::statusToFlags(KMMsgStatus status) |
|
{ |
|
QString flags; |
|
if (status & KMMsgStatusDeleted) |
|
flags = "\\DELETED"; |
|
else { |
|
if (status & KMMsgStatusOld || status & KMMsgStatusRead) |
|
flags = "\\SEEN "; |
|
if (status & KMMsgStatusReplied) |
|
flags += "\\ANSWERED "; |
|
if (status & KMMsgStatusFlag) |
|
flags += "\\FLAGGED"; |
|
} |
|
|
|
return flags.simplifyWhiteSpace(); |
|
} |
|
|
|
//------------------------------------------------------------- |
|
void |
|
KMFolderImap::ignoreJobsForMessage( KMMessage* msg ) |
|
{ |
|
if ( !msg || msg->transferInProgress() || |
|
!msg->parent() || msg->parent()->folderType() != KMFolderTypeImap ) |
|
return; |
|
KMAcctImap *account; |
|
if ( !(account = static_cast<KMFolderImap*>(msg->storage())->account()) ) |
|
return; |
|
|
|
account->ignoreJobsForMessage( msg ); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::slotGetMessagesData(KIO::Job * job, const QByteArray & data) |
|
{ |
|
if ( data.isEmpty() ) return; // optimization |
|
ImapAccountBase::JobIterator it = mAccount->findJob(job); |
|
if ( it == mAccount->jobsEnd() ) return; |
|
(*it).cdata += QCString(data, data.size() + 1); |
|
int pos = (*it).cdata.find("\r\n--IMAPDIGEST"); |
|
if (pos > 0) |
|
{ |
|
int p = (*it).cdata.find("\r\nX-uidValidity:"); |
|
if (p != -1) setUidValidity((*it).cdata |
|
.mid(p + 17, (*it).cdata.find("\r\n", p+1) - p - 17)); |
|
int c = (*it).cdata.find("\r\nX-Count:"); |
|
if ( c != -1 ) |
|
{ |
|
bool ok; |
|
int exists = (*it).cdata.mid( c+10, |
|
(*it).cdata.find("\r\n", c+1) - c-10 ).toInt(&ok); |
|
if ( ok && exists < count() ) { |
|
kdDebug(5006) << "KMFolderImap::slotGetMessagesData - server has less messages (" << |
|
exists << ") then folder (" << count() << "), so reload" << endl; |
|
reallyGetFolder( QString::null ); |
|
(*it).cdata.remove(0, pos); |
|
return; |
|
} else if ( ok ) { |
|
int delta = exists - count(); |
|
if ( mMailCheckProgressItem ) { |
|
mMailCheckProgressItem->setTotalItems( delta ); |
|
mMailCheckProgressItem->setStatus( i18n("Retrieving message list") ); |
|
} |
|
} |
|
} |
|
(*it).cdata.remove(0, pos); |
|
} |
|
pos = (*it).cdata.find("\r\n--IMAPDIGEST", 1); |
|
int flags; |
|
open(); |
|
while (pos >= 0) |
|
{ |
|
KMMessage *msg = new KMMessage; |
|
msg->setComplete(false); |
|
msg->setReadyToShow(false); |
|
// nothing between the boundaries, older UWs do that |
|
if ( pos != 14 ) { |
|
msg->fromString((*it).cdata.mid(16, pos - 16)); |
|
flags = msg->headerField("X-Flags").toInt(); |
|
ulong uid = msg->UID(); |
|
bool ok = true; |
|
if ( uid <= lastUid() ) |
|
{ |
|
// as some servers send the messages out of order |
|
// we have to check if the message really already exists |
|
int idx = 0; |
|
KMMsgBase *msg; |
|
while ( idx < count() ) |
|
{ |
|
msg = getMsgBase( idx ); |
|
if ( msg && msg->UID() == uid ) |
|
{ |
|
ok = false; // exists, no need to create it |
|
break; |
|
} |
|
++idx; |
|
} |
|
} |
|
// deleted flag |
|
if ( flags & 8 ) |
|
ok = false; |
|
if ( !ok ) { |
|
delete msg; |
|
msg = 0; |
|
} else { |
|
if (uidmap.find(uid)) { |
|
// assign the sernum from the cache |
|
const ulong sernum = (ulong) uidmap[uid]; |
|
msg->setMsgSerNum(sernum); |
|
// delete the entry |
|
uidmap.remove(uid); |
|
} |
|
KMFolderMbox::addMsg(msg, 0); |
|
// Transfer the status, if it is cached. |
|
QString id = msg->msgIdMD5(); |
|
if ( mMetaDataMap.find( id ) ) { |
|
KMMsgMetaData *md = mMetaDataMap[id]; |
|
msg->setStatus( md->status() ); |
|
if ( md->serNum() != 0 ) |
|
msg->setMsgSerNum( md->serNum() ); |
|
mMetaDataMap.remove( id ); |
|
delete md; |
|
} |
|
// Merge with the flags from the server. |
|
flagsToStatus((KMMsgBase*)msg, flags); |
|
// set the correct size |
|
msg->setMsgSizeServer( msg->headerField("X-Length").toUInt() ); |
|
msg->setUID(uid); |
|
|
|
if (count() > 1) unGetMsg(count() - 1); |
|
mLastUid = uid; |
|
if ( mMailCheckProgressItem ) { |
|
mMailCheckProgressItem->incCompletedItems(); |
|
mMailCheckProgressItem->updateProgress(); |
|
} |
|
} |
|
} |
|
(*it).cdata.remove(0, pos); |
|
(*it).done++; |
|
pos = (*it).cdata.find("\r\n--IMAPDIGEST", 1); |
|
} // while |
|
close(); |
|
} |
|
|
|
//------------------------------------------------------------- |
|
FolderJob* |
|
KMFolderImap::doCreateJob( KMMessage *msg, FolderJob::JobType jt, |
|
KMFolder *folder, QString partSpecifier, |
|
const AttachmentStrategy *as ) const |
|
{ |
|
KMFolderImap* kmfi = folder? dynamic_cast<KMFolderImap*>(folder->storage()) : 0; |
|
if ( jt == FolderJob::tGetMessage && partSpecifier == "STRUCTURE" && |
|
mAccount && mAccount->loadOnDemand() && |
|
( msg->msgSizeServer() > 5000 || msg->msgSizeServer() == 0 ) && |
|
( msg->signatureState() == KMMsgNotSigned || |
|
msg->signatureState() == KMMsgSignatureStateUnknown ) && |
|
( msg->encryptionState() == KMMsgNotEncrypted || |
|
msg->encryptionState() == KMMsgEncryptionStateUnknown ) ) |
|
{ |
|
// load-on-demand: retrieve the BODYSTRUCTURE and to speed things up also the headers |
|
// this is not activated for small or signed messages |
|
ImapJob *job = new ImapJob( msg, jt, kmfi, "HEADER" ); |
|
job->start(); |
|
ImapJob *job2 = new ImapJob( msg, jt, kmfi, "STRUCTURE", as ); |
|
job2->start(); |
|
job->setParentFolder( this ); |
|
return job; |
|
} else { |
|
// download complete message or part (attachment) |
|
if ( partSpecifier == "STRUCTURE" ) // hide from outside |
|
partSpecifier = QString::null; |
|
|
|
ImapJob *job = new ImapJob( msg, jt, kmfi, partSpecifier ); |
|
job->setParentFolder( this ); |
|
return job; |
|
} |
|
} |
|
|
|
//------------------------------------------------------------- |
|
FolderJob* |
|
KMFolderImap::doCreateJob( QPtrList<KMMessage>& msgList, const QString& sets, |
|
FolderJob::JobType jt, KMFolder *folder ) const |
|
{ |
|
KMFolderImap* kmfi = dynamic_cast<KMFolderImap*>(folder->storage()); |
|
ImapJob *job = new ImapJob( msgList, sets, jt, kmfi ); |
|
job->setParentFolder( this ); |
|
return job; |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::getMessagesResult(KIO::Job * job, bool lastSet) |
|
{ |
|
ImapAccountBase::JobIterator it = mAccount->findJob(job); |
|
if ( it == mAccount->jobsEnd() ) return; |
|
if (job->error()) |
|
{ |
|
mAccount->handleJobError( job, i18n("Error while retrieving messages.") ); |
|
mContentState = imapNoInformation; |
|
quiet( false ); |
|
emit folderComplete(this, false); |
|
} |
|
else |
|
{ |
|
if (lastSet) |
|
{ |
|
mContentState = imapFinished; |
|
quiet(false); |
|
emit folderComplete(this, true); |
|
} |
|
mAccount->removeJob(it); |
|
} |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::slotGetLastMessagesResult(KIO::Job * job) |
|
{ |
|
getMessagesResult(job, true); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::slotGetMessagesResult(KIO::Job * job) |
|
{ |
|
getMessagesResult(job, false); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::createFolder(const QString &name) |
|
{ |
|
if ( mAccount->makeConnection() == ImapAccountBase::Error ) { |
|
kdWarning(5006) << "KMFolderImap::createFolder - got no connection" << endl; |
|
return; |
|
} else if ( mAccount->makeConnection() == ImapAccountBase::Connecting ) { |
|
// We'll wait for the connectionResult signal from the account. |
|
kdDebug(5006) << "KMFolderImap::createFolder - waiting for connection" << endl; |
|
|
|
if ( mFoldersPendingCreation.isEmpty() ) { |
|
// first folder, connect |
|
connect( mAccount, SIGNAL( connectionResult(int, const QString&) ), |
|
this, SLOT( slotCreatePendingFolders() ) ); |
|
} |
|
mFoldersPendingCreation << name; |
|
return; |
|
} |
|
KURL url = mAccount->getUrl(); |
|
url.setPath(imapPath() + name); |
|
|
|
KIO::SimpleJob *job = KIO::mkdir(url); |
|
KIO::Scheduler::assignJobToSlave(mAccount->slave(), job); |
|
ImapAccountBase::jobData jd( url.url(), folder() ); |
|
jd.items = name; |
|
mAccount->insertJob(job, jd); |
|
connect(job, SIGNAL(result(KIO::Job *)), |
|
this, SLOT(slotCreateFolderResult(KIO::Job *))); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::slotCreateFolderResult(KIO::Job * job) |
|
{ |
|
ImapAccountBase::JobIterator it = mAccount->findJob(job); |
|
if ( it == mAccount->jobsEnd() ) return; |
|
if (job->error()) |
|
{ |
|
if ( job->error() == KIO::ERR_COULD_NOT_MKDIR ) { |
|
// Creating a folder failed, remove it from the tree. |
|
mAccount->listDirectory( ); |
|
} |
|
mAccount->handleJobError( job, i18n("Error while creating a folder.") ); |
|
} else { |
|
listDirectory(); |
|
mAccount->removeJob(job); |
|
} |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
static QTextCodec *sUtf7Codec = 0; |
|
|
|
QTextCodec * KMFolderImap::utf7Codec() |
|
{ |
|
if (!sUtf7Codec) sUtf7Codec = QTextCodec::codecForName("utf-7"); |
|
return sUtf7Codec; |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
QString KMFolderImap::encodeFileName(const QString &name) |
|
{ |
|
QString result = utf7Codec()->fromUnicode(name); |
|
return KURL::encode_string_no_slash(result); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
QString KMFolderImap::decodeFileName(const QString &name) |
|
{ |
|
QString result = KURL::decode_string(name); |
|
return utf7Codec()->toUnicode(result.latin1()); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
bool KMFolderImap::autoExpunge() |
|
{ |
|
if (mAccount) |
|
return mAccount->autoExpunge(); |
|
|
|
return false; |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::slotSimpleData(KIO::Job * job, const QByteArray & data) |
|
{ |
|
if ( data.isEmpty() ) return; // optimization |
|
ImapAccountBase::JobIterator it = mAccount->findJob(job); |
|
if ( it == mAccount->jobsEnd() ) return; |
|
QBuffer buff((*it).data); |
|
buff.open(IO_WriteOnly | IO_Append); |
|
buff.writeBlock(data.data(), data.size()); |
|
buff.close(); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::deleteMessage(KMMessage * msg) |
|
{ |
|
KURL url = mAccount->getUrl(); |
|
KMFolderImap *msg_parent = static_cast<KMFolderImap*>(msg->storage()); |
|
ulong uid = msg->UID(); |
|
/* If the uid is empty the delete job below will nuke all mail in the |
|
folder, so we better safeguard against that. See ::expungeFolder, as |
|
to why. :( */ |
|
if ( uid == 0 ) { |
|
kdDebug( 5006 ) << "KMFolderImap::deleteMessage: Attempt to delete " |
|
"an empty UID. Aborting." << endl; |
|
return; |
|
} |
|
url.setPath(msg_parent->imapPath() + ";UID=" + QString::number(uid) ); |
|
if ( mAccount->makeConnection() != ImapAccountBase::Connected ) |
|
return; |
|
KIO::SimpleJob *job = KIO::file_delete(url, FALSE); |
|
KIO::Scheduler::assignJobToSlave(mAccount->slave(), job); |
|
ImapAccountBase::jobData jd( url.url(), 0 ); |
|
mAccount->insertJob(job, jd); |
|
connect(job, SIGNAL(result(KIO::Job *)), |
|
mAccount, SLOT(slotSimpleResult(KIO::Job *))); |
|
} |
|
|
|
void KMFolderImap::deleteMessage(const QPtrList<KMMessage>& msgList) |
|
{ |
|
QValueList<ulong> uids; |
|
getUids(msgList, uids); |
|
QStringList sets = makeSets(uids); |
|
|
|
KURL url = mAccount->getUrl(); |
|
KMFolderImap *msg_parent = static_cast<KMFolderImap*>(msgList.getFirst()->storage()); |
|
for ( QStringList::Iterator it = sets.begin(); it != sets.end(); ++it ) |
|
{ |
|
QString uid = *it; |
|
// Don't delete with no uid, that nukes the folder. Should not happen, but |
|
// better safe than sorry. |
|
if ( uid.isEmpty() ) continue; |
|
url.setPath(msg_parent->imapPath() + ";UID=" + uid); |
|
if ( mAccount->makeConnection() != ImapAccountBase::Connected ) |
|
return; |
|
KIO::SimpleJob *job = KIO::file_delete(url, FALSE); |
|
KIO::Scheduler::assignJobToSlave(mAccount->slave(), job); |
|
ImapAccountBase::jobData jd( url.url(), 0 ); |
|
mAccount->insertJob(job, jd); |
|
connect(job, SIGNAL(result(KIO::Job *)), |
|
mAccount, SLOT(slotSimpleResult(KIO::Job *))); |
|
} |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::setStatus(int idx, KMMsgStatus status, bool toggle) |
|
{ |
|
QValueList<int> ids; ids.append(idx); |
|
setStatus(ids, status, toggle); |
|
} |
|
|
|
void KMFolderImap::setStatus(QValueList<int>& ids, KMMsgStatus status, bool toggle) |
|
{ |
|
FolderStorage::setStatus(ids, status, toggle); |
|
if (mReadOnly) return; |
|
|
|
/* The status has been already set in the local index. Update the flags on |
|
* the server. To avoid doing that for each message individually, group them |
|
* by the status string they will be assigned and make sets for each of those |
|
* groups of mails. This is necessary because the imap kio_slave status job |
|
* does not append flags but overwrites them. Example: |
|
* |
|
* 2 important mails and 3 unimportant mail, all unread. Mark all as read calls |
|
* this method with a list of uids. The 2 important mails need to get the string |
|
* \SEEN \FLAGGED while the others need to get just \SEEN. Build sets for each |
|
* of those and sort them, so the server can handle them efficiently. */ |
|
QMap< QString, QStringList > groups; |
|
for ( QValueList<int>::Iterator it = ids.begin(); it != ids.end(); ++it ) { |
|
KMMessage *msg = 0; |
|
bool unget = !isMessage(*it); |
|
msg = getMsg(*it); |
|
if (!msg) continue; |
|
QString flags = statusToFlags(msg->status()); |
|
// Collect uids for each type of flags. |
|
groups[flags].append(QString::number(msg->UID())); |
|
if (unget) unGetMsg(*it); |
|
} |
|
QMapIterator< QString, QStringList > dit; |
|
for ( dit = groups.begin(); dit != groups.end(); ++dit ) { |
|
QCString flags = dit.key().latin1(); |
|
QStringList sets = makeSets( (*dit), true ); |
|
// Send off a status setting job for each set. |
|
for ( QStringList::Iterator slit = sets.begin(); slit != sets.end(); ++slit ) { |
|
QString imappath = imapPath() + ";UID=" + ( *slit ); |
|
mAccount->setImapStatus(folder(), imappath, flags); |
|
} |
|
} |
|
if ( mContentState == imapInProgress ) { |
|
// we're currently get'ing this folder |
|
// to make sure that we get the latest flags abort the current listing and |
|
// create a new one |
|
disconnect(this, SLOT(slotListFolderResult(KIO::Job *))); |
|
reallyGetFolder( QString::null ); |
|
} |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
QStringList KMFolderImap::makeSets(const QStringList& uids, bool sort) |
|
{ |
|
QValueList<ulong> tmp; |
|
for ( QStringList::ConstIterator it = uids.begin(); it != uids.end(); ++it ) |
|
tmp.append( (*it).toInt() ); |
|
return makeSets(tmp, sort); |
|
} |
|
|
|
QStringList KMFolderImap::makeSets( QValueList<ulong>& uids, bool sort ) |
|
{ |
|
QStringList sets; |
|
QString set; |
|
|
|
if (uids.size() == 1) |
|
{ |
|
sets.append(QString::number(uids.first())); |
|
return sets; |
|
} |
|
|
|
if (sort) qHeapSort(uids); |
|
|
|
ulong last = 0; |
|
// needed to make a uid like 124 instead of 124:124 |
|
bool inserted = false; |
|
/* iterate over uids and build sets like 120:122,124,126:150 */ |
|
for ( QValueList<ulong>::Iterator it = uids.begin(); it != uids.end(); ++it ) |
|
{ |
|
if (it == uids.begin() || set.isEmpty()) { |
|
set = QString::number(*it); |
|
inserted = true; |
|
} else |
|
{ |
|
if (last+1 != *it) |
|
{ |
|
// end this range |
|
if (inserted) |
|
set += ',' + QString::number(*it); |
|
else |
|
set += ':' + QString::number(last) + ',' + QString::number(*it); |
|
inserted = true; |
|
if (set.length() > 100) |
|
{ |
|
// just in case the server has a problem with longer lines.. |
|
sets.append(set); |
|
set = ""; |
|
} |
|
} else { |
|
inserted = false; |
|
} |
|
} |
|
last = *it; |
|
} |
|
// last element |
|
if (!inserted) |
|
set += ':' + QString::number(uids.last()); |
|
|
|
if (!set.isEmpty()) sets.append(set); |
|
|
|
return sets; |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::getUids(QValueList<int>& ids, QValueList<ulong>& uids) |
|
{ |
|
KMMsgBase *msg = 0; |
|
// get the uids |
|
for ( QValueList<int>::Iterator it = ids.begin(); it != ids.end(); ++it ) |
|
{ |
|
msg = getMsgBase(*it); |
|
if (!msg) continue; |
|
uids.append(msg->UID()); |
|
} |
|
} |
|
|
|
void KMFolderImap::getUids(const QPtrList<KMMessage>& msgList, QValueList<ulong>& uids, KMFolder* msgParent) |
|
{ |
|
KMMessage *msg = 0; |
|
|
|
if (!msgParent) |
|
msgParent = msgList.getFirst()->parent(); |
|
if (!msgParent) return; |
|
|
|
QPtrListIterator<KMMessage> it( msgList ); |
|
while ( (msg = it.current()) != 0 ) { |
|
++it; |
|
uids.append(msg->UID()); |
|
} |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::expungeFolder(KMFolderImap * aFolder, bool quiet) |
|
{ |
|
aFolder->setNeedsCompacting(FALSE); |
|
KURL url = mAccount->getUrl(); |
|
url.setPath(aFolder->imapPath() + ";UID=*"); |
|
if ( mAccount->makeConnection() != ImapAccountBase::Connected ) |
|
return; |
|
KIO::SimpleJob *job = KIO::file_delete(url, FALSE); |
|
KIO::Scheduler::assignJobToSlave(mAccount->slave(), job); |
|
ImapAccountBase::jobData jd( url.url(), 0 ); |
|
jd.quiet = quiet; |
|
mAccount->insertJob(job, jd); |
|
connect(job, SIGNAL(result(KIO::Job *)), |
|
mAccount, SLOT(slotSimpleResult(KIO::Job *))); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::slotProcessNewMail( int errorCode, const QString &errorMsg ) |
|
{ |
|
Q_UNUSED( errorMsg ); |
|
disconnect( mAccount, SIGNAL( connectionResult(int, const QString&) ), |
|
this, SLOT( slotProcessNewMail(int, const QString&) ) ); |
|
if ( !errorCode ) |
|
processNewMail( false ); |
|
else |
|
emit numUnreadMsgsChanged( folder() ); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
bool KMFolderImap::processNewMail(bool) |
|
{ |
|
// a little safety |
|
if ( !mAccount ) { |
|
kdDebug(5006) << "KMFolderImap::processNewMail - account is null!" << endl; |
|
return false; |
|
} |
|
if (imapPath().isEmpty()) { |
|
kdDebug(5006) << "KMFolderImap::processNewMail - imapPath of " << name() << " is empty!" << endl; |
|
kmkernel->imapFolderMgr()->remove( folder() ); |
|
return false; |
|
} |
|
// check the connection |
|
if ( mAccount->makeConnection() == ImapAccountBase::Error ) { |
|
kdDebug(5006) << "KMFolderImap::processNewMail - got no connection!" << endl; |
|
return false; |
|
} else if ( mAccount->makeConnection() == ImapAccountBase::Connecting ) |
|
{ |
|
// wait |
|
kdDebug(5006) << "KMFolderImap::processNewMail - waiting for connection: " << label() << endl; |
|
connect( mAccount, SIGNAL( connectionResult(int, const QString&) ), |
|
this, SLOT( slotProcessNewMail(int, const QString&) ) ); |
|
return true; |
|
} |
|
KURL url = mAccount->getUrl(); |
|
if (mReadOnly) |
|
url.setPath(imapPath() + ";SECTION=UIDNEXT"); |
|
else |
|
url.setPath(imapPath() + ";SECTION=UNSEEN"); |
|
|
|
mMailCheckProgressItem = ProgressManager::createProgressItem( |
|
"MailCheckAccount" + account()->name(), |
|
"MailCheck" + folder()->prettyURL(), |
|
folder()->prettyURL(), |
|
i18n("updating message counts"), |
|
false, |
|
account()->useSSL() || account()->useTLS() ); |
|
|
|
KIO::SimpleJob *job = KIO::stat(url, FALSE); |
|
KIO::Scheduler::assignJobToSlave(mAccount->slave(), job); |
|
ImapAccountBase::jobData jd(url.url(), folder() ); |
|
jd.cancellable = true; |
|
mAccount->insertJob(job, jd); |
|
connect(job, SIGNAL(result(KIO::Job *)), |
|
SLOT(slotStatResult(KIO::Job *))); |
|
return true; |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::slotStatResult(KIO::Job * job) |
|
{ |
|
ImapAccountBase::JobIterator it = mAccount->findJob(job); |
|
if ( it == mAccount->jobsEnd() ) return; |
|
mAccount->removeJob(it); |
|
slotCompleteMailCheckProgress(); |
|
if (job->error()) |
|
{ |
|
mAccount->handleJobError( job, i18n("Error while getting folder information.") ); |
|
} else { |
|
KIO::UDSEntry uds = static_cast<KIO::StatJob*>(job)->statResult(); |
|
for (KIO::UDSEntry::ConstIterator it = uds.begin(); it != uds.end(); it++) |
|
{ |
|
if ((*it).m_uds == KIO::UDS_SIZE) |
|
{ |
|
if (mReadOnly) |
|
{ |
|
mGuessedUnreadMsgs = -1; |
|
mGuessedUnreadMsgs = countUnread() + (*it).m_long - lastUid() - 1; |
|
if (mGuessedUnreadMsgs < 0) mGuessedUnreadMsgs = 0; |
|
} else { |
|
mGuessedUnreadMsgs = (*it).m_long; |
|
} |
|
} |
|
} |
|
} |
|
emit numUnreadMsgsChanged( folder() ); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
int KMFolderImap::create(bool imap) |
|
{ |
|
readConfig(); |
|
mUnreadMsgs = -1; |
|
return KMFolderMbox::create(imap); |
|
} |
|
|
|
QValueList<ulong> KMFolderImap::splitSets(const QString uids) |
|
{ |
|
QValueList<ulong> uidlist; |
|
|
|
// ex: 1205,1204,1203,1202,1236:1238 |
|
QString buffer = QString::null; |
|
int setstart = -1; |
|
// iterate over the uids |
|
for (uint i = 0; i < uids.length(); i++) |
|
{ |
|
QChar chr = uids[i]; |
|
if (chr == ',') |
|
{ |
|
if (setstart > -1) |
|
{ |
|
// a range (uid:uid) was before |
|
for (int j = setstart; j <= buffer.toInt(); j++) |
|
{ |
|
uidlist.append(j); |
|
} |
|
setstart = -1; |
|
} else { |
|
// single uid |
|
uidlist.append(buffer.toInt()); |
|
} |
|
buffer = ""; |
|
} else if (chr == ':') { |
|
// remember the start of the range |
|
setstart = buffer.toInt(); |
|
buffer = ""; |
|
} else if (chr.category() == QChar::Number_DecimalDigit) { |
|
// digit |
|
buffer += chr; |
|
} else { |
|
// ignore |
|
} |
|
} |
|
// process the last data |
|
if (setstart > -1) |
|
{ |
|
for (int j = setstart; j <= buffer.toInt(); j++) |
|
{ |
|
uidlist.append(j); |
|
} |
|
} else { |
|
uidlist.append(buffer.toInt()); |
|
} |
|
|
|
return uidlist; |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
int KMFolderImap::expungeContents() |
|
{ |
|
// nuke the local cache |
|
int rc = KMFolderMbox::expungeContents(); |
|
|
|
// set the deleted flag for all messages in the folder |
|
KURL url = mAccount->getUrl(); |
|
url.setPath( imapPath() + ";UID=1:*"); |
|
if ( mAccount->makeConnection() == ImapAccountBase::Connected ) { |
|
KIO::SimpleJob *job = KIO::file_delete(url, FALSE); |
|
KIO::Scheduler::assignJobToSlave(mAccount->slave(), job); |
|
ImapAccountBase::jobData jd( url.url(), 0 ); |
|
jd.quiet = true; |
|
mAccount->insertJob(job, jd); |
|
connect(job, SIGNAL(result(KIO::Job *)), |
|
mAccount, SLOT(slotSimpleResult(KIO::Job *))); |
|
} |
|
/* Is the below correct? If we are expunging (in the folder sense, not the imap sense), |
|
why delete but not (imap-)expunge? Since the folder is not active there is no concept |
|
of "leaving the folder", so the setting really has little to do with it. */ |
|
// if ( autoExpunge() ) |
|
expungeFolder(this, true); |
|
getFolder(); |
|
|
|
return rc; |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void |
|
KMFolderImap::setUserRights( unsigned int userRights ) |
|
{ |
|
mUserRights = userRights; |
|
kdDebug(5006) << imapPath() << " setUserRights: " << userRights << endl; |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::slotCompleteMailCheckProgress() |
|
{ |
|
if ( mMailCheckProgressItem ) { |
|
mMailCheckProgressItem->setComplete(); |
|
} |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::setSubfolderState( imapState state ) |
|
{ |
|
mSubfolderState = state; |
|
if ( state == imapNoInformation && folder()->child() ) |
|
{ |
|
// pass through to childs |
|
KMFolderNode* node; |
|
QPtrListIterator<KMFolderNode> it( *folder()->child() ); |
|
for ( ; (node = it.current()); ) |
|
{ |
|
++it; |
|
if (node->isDir()) continue; |
|
KMFolder *folder = static_cast<KMFolder*>(node); |
|
static_cast<KMFolderImap*>(folder->storage())->setSubfolderState( state ); |
|
} |
|
} |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::setIncludeInMailCheck( bool check ) |
|
{ |
|
bool changed = ( mCheckMail != check ); |
|
mCheckMail = check; |
|
if ( changed ) |
|
account()->slotUpdateFolderList(); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::setAlreadyRemoved( bool removed ) |
|
{ |
|
mAlreadyRemoved = removed; |
|
if ( folder()->child() ) |
|
{ |
|
// pass through to childs |
|
KMFolderNode* node; |
|
QPtrListIterator<KMFolderNode> it( *folder()->child() ); |
|
for ( ; (node = it.current()); ) |
|
{ |
|
++it; |
|
if (node->isDir()) continue; |
|
KMFolder *folder = static_cast<KMFolder*>(node); |
|
static_cast<KMFolderImap*>(folder->storage())->setAlreadyRemoved( removed ); |
|
} |
|
} |
|
} |
|
|
|
void KMFolderImap::slotCreatePendingFolders() |
|
{ |
|
QStringList::Iterator it = mFoldersPendingCreation.begin(); |
|
for ( ; it != mFoldersPendingCreation.end(); ++it ) { |
|
createFolder( *it ); |
|
} |
|
mFoldersPendingCreation.clear(); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::search( KMSearchPattern* pattern ) |
|
{ |
|
if ( !pattern ) |
|
{ |
|
// not much to do here |
|
QValueList<Q_UINT32> serNums; |
|
emit searchDone( folder(), serNums ); |
|
return; |
|
} |
|
// generate imap search command and save local search patterns |
|
QString searchString = searchStringFromPattern( pattern ); |
|
if ( searchString.isEmpty() ) // skip imap search and download the messages |
|
return slotSearchData( 0, QString::null ); |
|
|
|
// do the IMAP search |
|
mSearchSerNums.clear(); |
|
KURL url = mAccount->getUrl(); |
|
url.setPath( imapPath() + ";SECTION=" + searchString ); |
|
QByteArray packedArgs; |
|
QDataStream stream( packedArgs, IO_WriteOnly ); |
|
stream << (int) 'E' << url; |
|
KIO::SimpleJob *job = KIO::special( url, packedArgs, false ); |
|
KIO::Scheduler::assignJobToSlave(mAccount->slave(), job); |
|
connect( job, SIGNAL(infoMessage(KIO::Job*,const QString&)), |
|
SLOT(slotSearchData(KIO::Job*,const QString&)) ); |
|
connect( job, SIGNAL(result(KIO::Job *)), |
|
SLOT(slotSearchResult(KIO::Job *)) ); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::search( KMSearchPattern* pattern, Q_UINT32 serNum ) |
|
{ |
|
if ( !pattern ) |
|
{ |
|
// not much to do here |
|
emit searchDone( folder(), 0 ); |
|
return; |
|
} |
|
QString searchString = searchStringFromPattern( pattern ); |
|
if ( searchString.isEmpty() ) |
|
{ |
|
// download the message and search local |
|
int idx = -1; |
|
KMFolder *aFolder = 0; |
|
kmkernel->msgDict()->getLocation( serNum, &aFolder, &idx ); |
|
|
|
KMMessage * msg = getMsg( idx ); |
|
ImapJob *job = new ImapJob( msg ); |
|
job->setParentFolder( this ); |
|
connect( job, SIGNAL(messageRetrieved(KMMessage*)), |
|
this, SLOT(slotSearchSingleMessage(KMMessage*)) ); |
|
job->start(); |
|
} else |
|
{ |
|
// imap search |
|
// remember the serNum so that we don't have to reconstruct it later |
|
mSearchSerNums.clear(); |
|
mSearchSerNums.append( serNum ); |
|
int idx = -1; |
|
KMFolder *aFolder = 0; |
|
kmkernel->msgDict()->getLocation( serNum, &aFolder, &idx ); |
|
assert(aFolder && (idx != -1)); |
|
KMMsgBase *mb = getMsgBase( idx ); |
|
|
|
// only search for that UID |
|
searchString += " UID " + QString::number( mb->UID() ); |
|
KURL url = mAccount->getUrl(); |
|
url.setPath( imapPath() + ";SECTION=" + searchString ); |
|
QByteArray packedArgs; |
|
QDataStream stream( packedArgs, IO_WriteOnly ); |
|
stream << (int) 'E' << url; |
|
KIO::SimpleJob *job = KIO::special( url, packedArgs, false ); |
|
KIO::Scheduler::assignJobToSlave(mAccount->slave(), job); |
|
connect( job, SIGNAL(infoMessage(KIO::Job*,const QString&)), |
|
SLOT(slotSearchDataSingleMessage(KIO::Job*,const QString&)) ); |
|
connect( job, SIGNAL(result(KIO::Job *)), |
|
SLOT(slotSearchResult(KIO::Job *)) ); |
|
} |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
QString KMFolderImap::searchStringFromPattern( KMSearchPattern* pattern ) |
|
{ |
|
QStringList parts; |
|
// this is for the search pattern that can only be done local |
|
mLocalSearchPattern = new KMSearchPattern(); |
|
mLocalSearchPattern->setOp( pattern->op() ); |
|
|
|
for ( QPtrListIterator<KMSearchRule> it( *pattern ) ; it.current() ; ++it ) |
|
{ |
|
// construct an imap search command |
|
bool accept = true; |
|
QString result; |
|
QString field = (*it)->field(); |
|
if ( (*it)->function() == KMSearchRule::FuncContainsNot ) |
|
result = "NOT "; |
|
else if ( (*it)->function() == KMSearchRule::FuncIsGreater && |
|
(*it)->field() == "<size>" ) |
|
result = "LARGER "; |
|
else if ( (*it)->function() == KMSearchRule::FuncIsLess && |
|
(*it)->field() == "<size>" ) |
|
result = "SMALLER "; |
|
else if ( (*it)->function() != KMSearchRule::FuncContains ) |
|
accept = false; |
|
|
|
if ( (*it)->field() == "<message>" ) |
|
result += "TEXT \"" + (*it)->contents() + "\""; |
|
else if ( (*it)->field() == "<body>" ) |
|
result += "BODY \"" + (*it)->contents() + "\""; |
|
else if ( (*it)->field() == "<recipients>" ) |
|
result += " (OR HEADER To \"" + (*it)->contents() + "\" HEADER Cc \"" + |
|
(*it)->contents() + "\" HEADER Bcc \"" + (*it)->contents() + "\")"; |
|
else if ( (*it)->field() == "<size>" ) |
|
result += (*it)->contents(); |
|
else if ( (*it)->field() == "<age in days>" || |
|
(*it)->field() == "<status>" || |
|
(*it)->field() == "<any header>" ) |
|
accept = false; |
|
else |
|
result += "HEADER "+ field + " \"" + (*it)->contents() + "\""; |
|
|
|
if ( result.isEmpty() ) |
|
accept = false; |
|
|
|
if ( accept ) |
|
parts += result; |
|
else |
|
mLocalSearchPattern->append( *it ); |
|
} |
|
|
|
QString search; |
|
if ( pattern->op() == KMSearchPattern::OpOr ) |
|
search = "(OR " + parts.join(" ") + ")"; |
|
else |
|
search = parts.join(" "); |
|
|
|
kdDebug(5006) << k_funcinfo << search << ";localSearch=" << mLocalSearchPattern->asString() << endl; |
|
return search; |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::slotSearchData( KIO::Job* job, const QString& data ) |
|
{ |
|
if ( job && job->error() ) |
|
return; |
|
|
|
if ( mLocalSearchPattern->isEmpty() && data.isEmpty() ) |
|
{ |
|
// no local search and the server found nothing |
|
QValueList<Q_UINT32> serNums; |
|
emit searchDone( folder(), serNums ); |
|
} else |
|
{ |
|
// remember the uids the server found |
|
mImapSearchData = data; |
|
|
|
// get the folder to make sure we have all messages |
|
connect ( this, SIGNAL( folderComplete( KMFolderImap*, bool ) ), |
|
this, SLOT( slotSearch()) ); |
|
getFolder(); |
|
} |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::slotSearch() |
|
{ |
|
disconnect ( this, SIGNAL( folderComplete( KMFolderImap*, bool ) ), |
|
this, SLOT( slotSearch()) ); |
|
|
|
if ( mLocalSearchPattern->isEmpty() ) |
|
{ |
|
// search for the serial number of the UIDs |
|
// data contains all found uids separated by blank |
|
QValueList<Q_UINT32> serNums; |
|
for ( int i = 0; i < count(); ++i ) |
|
{ |
|
KMMsgBase * base = getMsgBase( i ); |
|
if ( mImapSearchData.contains( QString::number(base->UID()) ) ) |
|
{ |
|
Q_UINT32 serNum = kmkernel->msgDict()->getMsgSerNum( folder(), i ); |
|
serNums.append( serNum ); |
|
} |
|
} |
|
emit searchDone( folder(), serNums ); |
|
} else |
|
{ |
|
// we have search patterns that can not be handled by the server |
|
// so we need to download all messages and check |
|
mRemainingMsgs = 0; |
|
QString question = i18n("To execute your search all messages of the folder %1 " |
|
"have to be downloaded from the server. This may take some time. " |
|
"Do you want to continue your search?").arg( label() ); |
|
if ( KMessageBox::warningContinueCancel( 0, question, |
|
i18n("Continue Search"), i18n("&Search"), |
|
"continuedownloadingforsearch" ) != KMessageBox::Continue ) |
|
{ |
|
QValueList<Q_UINT32> serNums; |
|
emit searchDone( folder(), serNums ); |
|
return; |
|
} |
|
for ( int i = 0; i < count(); ++i ) |
|
{ |
|
KMMessage * msg = getMsg( i ); |
|
ImapJob *job = new ImapJob( msg ); |
|
job->setParentFolder( this ); |
|
connect( job, SIGNAL(messageRetrieved(KMMessage*)), |
|
this, SLOT(slotSearchMessageArrived(KMMessage*)) ); |
|
++mRemainingMsgs; |
|
job->start(); |
|
} |
|
} |
|
|
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::slotSearchDataSingleMessage( KIO::Job* job, const QString& data ) |
|
{ |
|
if ( job && job->error() ) |
|
return; |
|
|
|
if ( !data.isEmpty() ) |
|
emit searchDone( folder(), mSearchSerNums.first() ); |
|
else |
|
emit searchDone( folder(), 0 ); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::slotSearchSingleMessage( KMMessage* msg ) |
|
{ |
|
if ( mLocalSearchPattern->matches( msg ) ) |
|
emit searchDone( folder(), msg->getMsgSerNum() ); |
|
else |
|
emit searchDone( folder(), 0 ); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::slotSearchMessageArrived( KMMessage* msg ) |
|
{ |
|
--mRemainingMsgs; |
|
if ( mLocalSearchPattern->op() == KMSearchPattern::OpAnd ) |
|
{ |
|
// imap and local search have to match |
|
if ( mLocalSearchPattern->matches( msg ) && |
|
( mImapSearchData.contains( QString::number(msg->UID()) ) || |
|
mImapSearchData.isEmpty() ) ) |
|
{ |
|
Q_UINT32 serNum = msg->getMsgSerNum(); |
|
mSearchSerNums.append( serNum ); |
|
} |
|
} else if ( mLocalSearchPattern->op() == KMSearchPattern::OpOr ) |
|
{ |
|
// imap or local search have to match |
|
if ( mLocalSearchPattern->matches( msg ) || |
|
mImapSearchData.contains( QString::number(msg->UID()) ) ) |
|
{ |
|
Q_UINT32 serNum = msg->getMsgSerNum(); |
|
mSearchSerNums.append( serNum ); |
|
} |
|
} |
|
int idx = -1; |
|
KMFolder * p = 0; |
|
kmkernel->msgDict()->getLocation( msg, &p, &idx ); |
|
if ( idx != -1 ) |
|
unGetMsg( idx ); |
|
if ( mRemainingMsgs == 0 ) |
|
{ |
|
emit searchDone( folder(), mSearchSerNums ); |
|
mImapSearchData = ""; |
|
} |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMFolderImap::slotSearchResult( KIO::Job *job ) |
|
{ |
|
if ( job->error() ) |
|
{ |
|
mAccount->handleJobError( job, i18n("Error while searching.") ); |
|
if ( mSearchSerNums.empty() ) |
|
{ |
|
QValueList<Q_UINT32> serNums; |
|
emit searchDone( folder(), serNums ); |
|
} else |
|
emit searchDone( folder(), 0 ); |
|
} |
|
} |
|
|
|
#include "kmfolderimap.moc"
|
|
|