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.
833 lines
26 KiB
833 lines
26 KiB
// KMAcctExpPop.cpp |
|
// Authors: Don Sanders, (based on kmacctpop by) |
|
// Stefan Taferner and Markus Wuebben |
|
|
|
#ifdef HAVE_CONFIG_H |
|
#include <config.h> |
|
#endif |
|
|
|
#include "kmacctexppop.h" |
|
|
|
#include "kmbroadcaststatus.h" |
|
#include "kmfoldermgr.h" |
|
#include "kmfiltermgr.h" |
|
#include "kmpopfiltercnfrmdlg.h" |
|
|
|
#include <kdebug.h> |
|
#include <kstandarddirs.h> |
|
#include <klocale.h> |
|
#include <kmessagebox.h> |
|
#include <kio/scheduler.h> |
|
#include <kio/passdlg.h> |
|
#include <kconfig.h> |
|
using KIO::MetaData; |
|
|
|
static const unsigned short int pop3DefaultPort = 110; |
|
|
|
//----------------------------------------------------------------------------- |
|
KMAcctExpPop::KMAcctExpPop(KMAcctMgr* aOwner, const QString& aAccountName) |
|
: base(aOwner, aAccountName), |
|
headerIt(headersOnServer) |
|
{ |
|
init(); |
|
job = 0; |
|
mSlave = 0; |
|
mPort = defaultPort(); |
|
stage = Idle; |
|
indexOfCurrentMsg = -1; |
|
curMsgStrm = 0; |
|
processingDelay = 2*100; |
|
mProcessing = false; |
|
dataCounter = 0; |
|
|
|
headersOnServer.setAutoDelete(true); |
|
connect(&processMsgsTimer,SIGNAL(timeout()),SLOT(slotProcessPendingMsgs())); |
|
ss = new QTimer(); |
|
connect( ss, SIGNAL( timeout() ), this, SLOT( slotGetNextMsg() )); |
|
KIO::Scheduler::connect( |
|
SIGNAL(slaveError(KIO::Slave *, int, const QString &)), |
|
this, SLOT(slotSlaveError(KIO::Slave *, int, const QString &))); |
|
|
|
headerDeleteUids.clear(); |
|
headerDownUids.clear(); |
|
headerLaterUids.clear(); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
KMAcctExpPop::~KMAcctExpPop() |
|
{ |
|
if (job) { |
|
job->kill(); |
|
idsOfMsgsPendingDownload.clear(); |
|
lensOfMsgsPendingDownload.clear(); |
|
processRemainingQueuedMessagesAndSaveUidList(); |
|
} |
|
delete ss; |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
QString KMAcctExpPop::type(void) const |
|
{ |
|
return "pop"; |
|
} |
|
|
|
QString KMAcctExpPop::protocol() const { |
|
return useSSL() ? "pop3s" : "pop3"; |
|
} |
|
|
|
unsigned short int KMAcctExpPop::defaultPort() const { |
|
return pop3DefaultPort; |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAcctExpPop::init(void) |
|
{ |
|
base::init(); |
|
|
|
mUsePipelining = FALSE; |
|
mLeaveOnServer = FALSE; |
|
mFilterOnServer = FALSE; |
|
//tz todo |
|
mFilterOnServerCheckSize = 50000; |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAcctExpPop::pseudoAssign( const KMAccount * a ) { |
|
slotAbortRequested(); |
|
base::pseudoAssign( a ); |
|
|
|
const KMAcctExpPop * p = dynamic_cast<const KMAcctExpPop*>( a ); |
|
if ( !p ) return; |
|
|
|
setUsePipelining( p->usePipelining() ); |
|
setLeaveOnServer( p->leaveOnServer() ); |
|
setFilterOnServer( p->filterOnServer() ); |
|
setFilterOnServerCheckSize( p->filterOnServerCheckSize() ); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAcctExpPop::processNewMail(bool _interactive) |
|
{ |
|
if (stage == Idle) { |
|
|
|
if(mAskAgain || mPasswd.isEmpty() || mLogin.isEmpty()) { |
|
QString passwd = decryptStr(mPasswd); |
|
bool b = FALSE; |
|
if (KIO::PasswordDialog::getNameAndPassword(mLogin, passwd, &b, |
|
i18n("You need to supply a username and a password to access this " |
|
"mailbox."), FALSE, QString::null, mName, i18n("Account:")) |
|
!= QDialog::Accepted) |
|
{ |
|
checkDone(false, 0); |
|
return; |
|
} else { |
|
mPasswd = encryptStr(passwd); |
|
mAskAgain = FALSE; |
|
} |
|
} |
|
|
|
QString seenUidList = locateLocal( "data", "kmail/" + mLogin + ":" + "@" + |
|
mHost + ":" + QString("%1").arg(mPort) ); |
|
KConfig config( seenUidList ); |
|
uidsOfSeenMsgs = config.readListEntry( "seenUidList" ); |
|
headerLaterUids = config.readListEntry( "downloadLater" ); |
|
uidsOfNextSeenMsgs.clear(); |
|
|
|
interactive = _interactive; |
|
mUidlFinished = FALSE; |
|
startJob(); |
|
} |
|
else { |
|
checkDone(false, -1); |
|
return; |
|
} |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAcctExpPop::readConfig(KConfig& config) |
|
{ |
|
base::readConfig(config); |
|
|
|
mUsePipelining = config.readNumEntry("pipelining", FALSE); |
|
mLeaveOnServer = config.readNumEntry("leave-on-server", FALSE); |
|
mFilterOnServer = config.readNumEntry("filter-on-server", FALSE); |
|
mFilterOnServerCheckSize = config.readUnsignedNumEntry("filter-os-check-size", 50000); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAcctExpPop::writeConfig(KConfig& config) |
|
{ |
|
base::writeConfig(config); |
|
|
|
config.writeEntry("pipelining", mUsePipelining); |
|
config.writeEntry("leave-on-server", mLeaveOnServer); |
|
config.writeEntry("filter-on-server", mFilterOnServer); |
|
config.writeEntry("filter-os-check-size", mFilterOnServerCheckSize); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAcctExpPop::setUsePipelining(bool b) |
|
{ |
|
mUsePipelining = b; |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAcctExpPop::setLeaveOnServer(bool b) |
|
{ |
|
mLeaveOnServer = b; |
|
} |
|
|
|
|
|
//--------------------------------------------------------------------------- |
|
void KMAcctExpPop::setFilterOnServer(bool b) |
|
{ |
|
mFilterOnServer = b; |
|
} |
|
|
|
//--------------------------------------------------------------------------- |
|
void KMAcctExpPop::setFilterOnServerCheckSize(unsigned int aSize) |
|
{ |
|
mFilterOnServerCheckSize = aSize; |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAcctExpPop::connectJob() { |
|
KIO::Scheduler::assignJobToSlave(mSlave, job); |
|
if (stage != Dele) |
|
connect(job, SIGNAL( data( KIO::Job*, const QByteArray &)), |
|
SLOT( slotData( KIO::Job*, const QByteArray &))); |
|
connect(job, SIGNAL( result( KIO::Job * ) ), |
|
SLOT( slotResult( KIO::Job * ) ) ); |
|
connect(job, SIGNAL(infoMessage( KIO::Job*, const QString & )), |
|
SLOT( slotMsgRetrieved(KIO::Job*, const QString &))); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAcctExpPop::slotCancel() |
|
{ |
|
idsOfMsgsPendingDownload.clear(); |
|
lensOfMsgsPendingDownload.clear(); |
|
processRemainingQueuedMessagesAndSaveUidList(); |
|
slotJobFinished(); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAcctExpPop::slotProcessPendingMsgs() |
|
{ |
|
if (mProcessing) // not reentrant |
|
return; |
|
mProcessing = true; |
|
|
|
bool addedOk; |
|
QValueList<KMMessage*>::Iterator cur = msgsAwaitingProcessing.begin(); |
|
QStringList::Iterator curId = msgIdsAwaitingProcessing.begin(); |
|
QStringList::Iterator curUid = msgUidsAwaitingProcessing.begin(); |
|
|
|
while (cur != msgsAwaitingProcessing.end()) { |
|
// note we can actually end up processing events in processNewMsg |
|
// this happens when send receipts is turned on |
|
// hence the check for re-entry at the start of this method. |
|
// -sanders Update processNewMsg should no longer process events |
|
|
|
addedOk = processNewMsg(*cur); //added ok? Error displayed if not. |
|
|
|
if (!addedOk) { |
|
idsOfMsgsPendingDownload.clear(); |
|
lensOfMsgsPendingDownload.clear(); |
|
msgIdsAwaitingProcessing.clear(); |
|
msgUidsAwaitingProcessing.clear(); |
|
break; |
|
} |
|
else { |
|
idsOfMsgsToDelete.append( *curId ); |
|
uidsOfNextSeenMsgs.append( *curUid ); |
|
} |
|
++cur; |
|
++curId; |
|
++curUid; |
|
} |
|
|
|
msgsAwaitingProcessing.clear(); |
|
msgIdsAwaitingProcessing.clear(); |
|
msgUidsAwaitingProcessing.clear(); |
|
mProcessing = false; |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAcctExpPop::slotAbortRequested() |
|
{ |
|
if (stage == Idle) return; |
|
disconnect(KMBroadcastStatus::instance(), SIGNAL(signalAbortRequested()), |
|
this, SLOT(slotAbortRequested())); |
|
stage = Quit; |
|
if (job) job->kill(); |
|
job = 0; |
|
mSlave = 0; |
|
slotCancel(); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAcctExpPop::startJob() { |
|
|
|
// Run the precommand |
|
if (!runPrecommand(precommand())) |
|
{ |
|
KMessageBox::sorry(0, |
|
i18n("Couldn't execute precommand: %1").arg(precommand()), |
|
i18n("KMail Error Message")); |
|
checkDone((idsOfMsgs.count() > 0), -1); |
|
return; |
|
} |
|
// end precommand code |
|
|
|
KURL url = getUrl(); |
|
|
|
if ( url.isMalformed() ) { |
|
KMessageBox::error(0, i18n("Source URL is malformed"), |
|
i18n("Kioslave Error Message") ); |
|
return; |
|
} |
|
|
|
idsOfMsgsPendingDownload.clear(); |
|
lensOfMsgsPendingDownload.clear(); |
|
idsOfMsgs.clear(); |
|
uidsOfMsgs.clear(); |
|
idsOfMsgsToDelete.clear(); |
|
//delete any headers if there are some this have to be done because of check again |
|
headersOnServer.clear(); |
|
headers = false; |
|
indexOfCurrentMsg = -1; |
|
KMBroadcastStatus::instance()->reset(); |
|
KMBroadcastStatus::instance()->setStatusProgressEnable( "P" + mName, true ); |
|
KMBroadcastStatus::instance()->setStatusMsg( |
|
i18n("Preparing transmission from \"%1\"...").arg(mName)); |
|
connect(KMBroadcastStatus::instance(), SIGNAL(signalAbortRequested()), |
|
this, SLOT(slotAbortRequested())); |
|
|
|
numBytes = 0; |
|
numBytesRead = 0; |
|
stage = List; |
|
mSlave = KIO::Scheduler::getConnectedSlave( url, slaveConfig() ); |
|
if (!mSlave) |
|
{ |
|
slotSlaveError(0, KIO::ERR_CANNOT_LAUNCH_PROCESS, url.protocol()); |
|
return; |
|
} |
|
url.setPath(QString("/index")); |
|
job = KIO::get( url, false, false ); |
|
connectJob(); |
|
} |
|
|
|
MetaData KMAcctExpPop::slaveConfig() const { |
|
MetaData m = base::slaveConfig(); |
|
|
|
m.insert("progress", "off"); |
|
m.insert("pipelining", (mUsePipelining) ? "on" : "off"); |
|
if (mAuth == "PLAIN" || mAuth == "LOGIN" || mAuth == "CRAM-MD5" || |
|
mAuth == "DIGEST-MD5") { |
|
m.insert("auth", "SASL"); |
|
m.insert("sasl", mAuth); |
|
} else if ( mAuth == "*" ) |
|
m.insert("auth", "USER"); |
|
else |
|
m.insert("auth", mAuth); |
|
|
|
return m; |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
// one message is finished |
|
// add data to a KMMessage |
|
void KMAcctExpPop::slotMsgRetrieved(KIO::Job*, const QString & infoMsg) |
|
{ |
|
if (infoMsg != "message complete") return; |
|
KMMessage *msg = new KMMessage; |
|
curMsgData.resize(curMsgData.size() + 1); |
|
curMsgData[curMsgData.size() - 1] = '\0'; |
|
msg->fromString(QCString(curMsgData),TRUE); |
|
if (stage == Head) |
|
{ |
|
kdDebug(5006) << "Size of Message: " << (*lensOfMsgsPendingDownload.at( |
|
uidsOfMsgs.findIndex(headerIt.current()->uid()))) << endl; |
|
msg->setMsgLength(*lensOfMsgsPendingDownload.at( |
|
uidsOfMsgs.findIndex(headerIt.current()->uid()))); |
|
headerIt.current()->setHeader(msg); |
|
++headerIt; |
|
slotGetNextHdr(); |
|
} else { |
|
kdDebug(5006) << "stage == Retr" << endl; |
|
kdDebug(5006) << QString( "curMsgData.size() %1" ).arg( curMsgData.size() ) << endl; |
|
|
|
msgsAwaitingProcessing.append(msg); |
|
msgIdsAwaitingProcessing.append(idsOfMsgs[indexOfCurrentMsg]); |
|
msgUidsAwaitingProcessing.append(uidsOfMsgs[indexOfCurrentMsg]); |
|
slotGetNextMsg(); |
|
} |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
// finit state machine to cycle trow the stages |
|
void KMAcctExpPop::slotJobFinished() { |
|
QStringList emptyList; |
|
if (stage == List) { |
|
kdDebug(5006) << "stage == List" << endl; |
|
KURL url = getUrl(); |
|
url.setPath(QString("/uidl")); |
|
job = KIO::get( url, false, false ); |
|
connectJob(); |
|
stage = Uidl; |
|
} |
|
else if (stage == Uidl) { |
|
kdDebug(5006) << "stage == Uidl" << endl; |
|
mUidlFinished = TRUE; |
|
|
|
if (mLeaveOnServer && uidsOfMsgs.isEmpty() && uidsOfNextSeenMsgs.isEmpty() |
|
&& !idsOfMsgs.isEmpty()) |
|
{ |
|
KMessageBox::sorry(0, i18n("Your POP3 server doesn't support the UIDL " |
|
"command. This command is required to determine in a reliable way, " |
|
"which of the mails on the server KMail has already seen before.\n" |
|
"The feature to leave the mails on the server will therefore not " |
|
"work properly.")); |
|
} |
|
// An attempt to work around buggy pop servers, these seem to be popular. |
|
if (uidsOfNextSeenMsgs.isEmpty()) |
|
uidsOfNextSeenMsgs = uidsOfSeenMsgs; |
|
|
|
//check if filter on server |
|
if (mFilterOnServer == true) { |
|
QStringList::Iterator hids = idsOfMsgsPendingDownload.begin(); |
|
for (hids = idsOfMsgsPendingDownload.begin(); |
|
hids != idsOfMsgsPendingDownload.end(); hids++) { |
|
int idx = idsOfMsgsPendingDownload.findIndex(*hids); |
|
kdDebug(5006) << "Length: " << *(lensOfMsgsPendingDownload.at(idx)) << endl; |
|
//check for mails bigger mFilterOnServerCheckSize |
|
if ((unsigned int)*(lensOfMsgsPendingDownload.at(idx)) |
|
>= mFilterOnServerCheckSize) { |
|
kdDebug(5006) << "bigger than " << mFilterOnServerCheckSize << endl; |
|
headersOnServer.append(new KMPopHeaders(*idsOfMsgsPendingDownload.at(idx), |
|
*uidsOfMsgs.at(idx), |
|
Later));//TODO |
|
//set Action if already known |
|
if(headerDeleteUids.contains(headersOnServer.current()->uid())) { |
|
headersOnServer.current()->setAction(Delete); |
|
} |
|
else if(headerDownUids.contains(headersOnServer.current()->uid())) { |
|
headersOnServer.current()->setAction(Down); |
|
} |
|
else if(headerLaterUids.contains(headersOnServer.current()->uid())) { |
|
headersOnServer.current()->setAction(Later); |
|
} |
|
} |
|
} |
|
// delete the uids so that you don't get them twice in the list |
|
headerDeleteUids.clear(); |
|
headerDownUids.clear(); |
|
headerLaterUids.clear(); |
|
} |
|
// kdDebug(5006) << "Num of Msgs to Filter: " << headersOnServer.count() << endl; |
|
// if there are mails which should be checkedc download the headers |
|
if ((headersOnServer.count() > 0) && (mFilterOnServer == true)) { |
|
headerIt.toFirst(); |
|
KURL url = getUrl(); |
|
QString headerIds; |
|
while (headerIt.current()) |
|
{ |
|
headerIds += headerIt.current()->id(); |
|
if (!headerIt.atLast()) headerIds += ","; |
|
++headerIt; |
|
} |
|
headerIt.toFirst(); |
|
url.setPath(QString("/headers/") + headerIds); |
|
job = KIO::get( url, false, false ); |
|
connectJob(); |
|
slotGetNextHdr(); |
|
stage = Head; |
|
} |
|
else { |
|
stage = Retr; |
|
numMsgs = idsOfMsgsPendingDownload.count(); |
|
numBytesToRead = 0; |
|
QValueList<int>::Iterator len = lensOfMsgsPendingDownload.begin(); |
|
for (len = lensOfMsgsPendingDownload.begin(); |
|
len != lensOfMsgsPendingDownload.end(); len++) |
|
numBytesToRead += *len; |
|
KURL url = getUrl(); |
|
url.setPath("/download/" + idsOfMsgsPendingDownload.join(",")); |
|
job = KIO::get( url, false, false ); |
|
connectJob(); |
|
slotGetNextMsg(); |
|
processMsgsTimer.start(processingDelay); |
|
} |
|
} |
|
else if (stage == Head) { |
|
kdDebug(5006) << "stage == Head" << endl; |
|
|
|
// All headers have been downloaded, check which mail you want to get |
|
// data is in list headersOnServer |
|
|
|
// check if headers apply to a filter |
|
// if set the action of the filter |
|
KMPopFilterAction action; |
|
bool dlgPopup = false; |
|
for (headersOnServer.first(); headersOnServer.current(); headersOnServer.next()) { |
|
action = (KMPopFilterAction)kernel->popFilterMgr()->process(headersOnServer.current()->header()); |
|
//debug todo |
|
switch ( action ) { |
|
case NoAction: |
|
kdDebug(5006) << "PopFilterAction = NoAction" << endl; |
|
break; |
|
case Later: |
|
kdDebug(5006) << "PopFilterAction = Later" << endl; |
|
break; |
|
case Delete: |
|
kdDebug(5006) << "PopFilterAction = Delete" << endl; |
|
break; |
|
case Down: |
|
kdDebug(5006) << "PopFilterAction = Down" << endl; |
|
break; |
|
default: |
|
kdDebug(5006) << "PopFilterAction = default oops!" << endl; |
|
break; |
|
} |
|
switch ( action ) { |
|
case NoAction: |
|
//kdDebug(5006) << "PopFilterAction = NoAction" << endl; |
|
dlgPopup = true; |
|
break; |
|
case Later: |
|
if (kernel->popFilterMgr()->showLaterMsgs()) |
|
dlgPopup = true; |
|
default: |
|
headersOnServer.current()->setAction(action); |
|
headersOnServer.current()->setRuleMatched(true); |
|
break; |
|
} |
|
} |
|
|
|
// if there are some messages which are not coverd by a filter |
|
// show the dialog |
|
headers = true; |
|
if (dlgPopup) { |
|
KMPopFilterCnfrmDlg dlg(&headersOnServer, this->name(), kernel->popFilterMgr()->showLaterMsgs()); |
|
dlg.exec(); |
|
} |
|
|
|
for (headersOnServer.first(); headersOnServer.current(); headersOnServer.next()) { |
|
if (headersOnServer.current()->action() == Delete || |
|
headersOnServer.current()->action() == Later) { |
|
//remove entries form the lists when the mails sould not be downloaded |
|
//(deleted or downloaded later) |
|
int idx = idsOfMsgsPendingDownload.findIndex(headersOnServer.current()->id()); |
|
if (idx != -1) { |
|
idsOfMsgsPendingDownload.remove( idsOfMsgsPendingDownload |
|
.at( idx )); |
|
lensOfMsgsPendingDownload.remove( lensOfMsgsPendingDownload |
|
.at( idx )); |
|
idsOfMsgs.remove(idsOfMsgs.at( idx )); |
|
uidsOfMsgs.remove(uidsOfMsgs.at( idx )); |
|
} |
|
if (headersOnServer.current()->action() == Delete) { |
|
headerDeleteUids.append(headersOnServer.current()->uid()); |
|
uidsOfNextSeenMsgs.append(headersOnServer.current()->uid()); |
|
idsOfMsgsToDelete.append(headersOnServer.current()->id()); |
|
} |
|
else { |
|
headerLaterUids.append(headersOnServer.current()->uid()); |
|
} |
|
} |
|
else if (headersOnServer.current()->action() == Down) { |
|
headerDownUids.append(headersOnServer.current()->uid()); |
|
} |
|
} |
|
|
|
headersOnServer.clear(); |
|
stage = Retr; |
|
numMsgs = idsOfMsgsPendingDownload.count(); |
|
numBytesToRead = 0; |
|
QValueList<int>::Iterator len = lensOfMsgsPendingDownload.begin(); |
|
for (len = lensOfMsgsPendingDownload.begin(); |
|
len != lensOfMsgsPendingDownload.end(); len++) |
|
numBytesToRead += *len; |
|
KURL url = getUrl(); |
|
url.setPath("/download/" + idsOfMsgsPendingDownload.join(",")); |
|
job = KIO::get( url, false, false ); |
|
connectJob(); |
|
slotGetNextMsg(); |
|
processMsgsTimer.start(processingDelay); |
|
} |
|
else if (stage == Retr) { |
|
processRemainingQueuedMessagesAndSaveUidList(); |
|
|
|
headerDeleteUids.clear(); |
|
headerDownUids.clear(); |
|
headerLaterUids.clear(); |
|
|
|
kernel->folderMgr()->syncAllFolders(); |
|
|
|
KURL url = getUrl(); |
|
if (mLeaveOnServer || idsOfMsgsToDelete.isEmpty()) { |
|
url.setPath(QString("/commit")); |
|
job = KIO::get(url, false, false ); |
|
} |
|
else { |
|
stage = Dele; |
|
url.setPath("/remove/" + idsOfMsgsToDelete.join(",")); |
|
idsOfMsgsToDelete.clear(); |
|
job = KIO::get( url, false, false ); |
|
} |
|
connectJob(); |
|
} |
|
else if (stage == Dele) { |
|
kdDebug(5006) << "stage == Dele" << endl; |
|
KURL url = getUrl(); |
|
url.setPath(QString("/commit")); |
|
job = KIO::get( url, false, false ); |
|
stage = Quit; |
|
connectJob(); |
|
} |
|
else if (stage == Quit) { |
|
kdDebug(5006) << "stage == Quit" << endl; |
|
job = 0; |
|
if (mSlave) KIO::Scheduler::disconnectSlave(mSlave); |
|
mSlave = 0; |
|
stage = Idle; |
|
KMBroadcastStatus::instance()->setStatusProgressPercent( "P" + mName, 100 ); |
|
int numMessages = (KMBroadcastStatus::instance()->abortRequested()) ? |
|
indexOfCurrentMsg : idsOfMsgs.count(); |
|
KMBroadcastStatus::instance()->setStatusMsgTransmissionCompleted( |
|
numMessages, numBytes, numBytesRead, numBytesToRead, mLeaveOnServer ); |
|
KMBroadcastStatus::instance()->setStatusProgressEnable( "P" + mName, |
|
false ); |
|
KMBroadcastStatus::instance()->reset(); |
|
|
|
checkDone((numMessages > 0), numMessages); |
|
} |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAcctExpPop::processRemainingQueuedMessagesAndSaveUidList() |
|
{ |
|
kdDebug(5006) << "processRemainingQueuedMessagesAndSaveUidList" << endl; |
|
slotProcessPendingMsgs(); // Force processing of any messages still in the queue |
|
processMsgsTimer.stop(); |
|
|
|
stage = Quit; |
|
kernel->folderMgr()->syncAllFolders(); |
|
|
|
// Don't update the seen uid list unless we successfully got |
|
// a new list from the server |
|
if (!mUidlFinished) return; |
|
QString seenUidList = locateLocal( "data", "kmail/" + mLogin + ":" + "@" + |
|
mHost + ":" + QString("%1").arg(mPort) ); |
|
|
|
KConfig config( seenUidList ); |
|
config.writeEntry( "seenUidList", uidsOfNextSeenMsgs ); |
|
config.writeEntry( "downloadLater", headerLaterUids ); |
|
config.sync(); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAcctExpPop::slotGetNextMsg() |
|
{ |
|
QStringList::Iterator next = idsOfMsgsPendingDownload.begin(); |
|
QValueList<int>::Iterator nextLen = lensOfMsgsPendingDownload.begin(); |
|
|
|
curMsgData.resize(0); |
|
numMsgBytesRead = 0; |
|
curMsgLen = 0; |
|
if (curMsgStrm) |
|
delete curMsgStrm; |
|
curMsgStrm = 0; |
|
|
|
if (next == idsOfMsgsPendingDownload.end()) { |
|
kdDebug(5006) << "KMAcctExpPop::slotGetNextMsg was called too often" << endl; |
|
} |
|
else { |
|
curMsgStrm = new QDataStream( curMsgData, IO_WriteOnly ); |
|
curMsgLen = *nextLen; |
|
++indexOfCurrentMsg; |
|
idsOfMsgsPendingDownload.remove( next ); |
|
kdDebug(5006) << QString("Length of message about to get %1").arg( *nextLen ) << endl; |
|
lensOfMsgsPendingDownload.remove( nextLen ); //xxx |
|
} |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAcctExpPop::slotData( KIO::Job* job, const QByteArray &data) |
|
{ |
|
if (data.size() == 0) { |
|
kdDebug(5006) << "Data: <End>" << endl; |
|
if ((stage == Retr) && (numMsgBytesRead < curMsgLen)) |
|
numBytesRead += curMsgLen - numMsgBytesRead; |
|
else if (stage == Head){ |
|
kdDebug(5006) << "Head: <End>" << endl; |
|
} |
|
return; |
|
} |
|
|
|
int oldNumMsgBytesRead = numMsgBytesRead; |
|
if (stage == Retr) { |
|
headers = false; |
|
curMsgStrm->writeRawBytes( data.data(), data.size() ); |
|
numMsgBytesRead += data.size(); |
|
if (numMsgBytesRead > curMsgLen) |
|
numMsgBytesRead = curMsgLen; |
|
numBytesRead += numMsgBytesRead - oldNumMsgBytesRead; |
|
dataCounter++; |
|
if (dataCounter % 5 == 0) |
|
{ |
|
QString msg; |
|
if (numBytes != numBytesToRead && mLeaveOnServer) |
|
{ |
|
msg = i18n("Fetching message %1 of %2 (%3 of %4 KB) from %5 " |
|
"(%6 KB remain on the server).") |
|
.arg(indexOfCurrentMsg+1).arg(numMsgs).arg(numBytesRead/1024) |
|
.arg(numBytesToRead/1024).arg(mHost).arg(numBytes/1024); |
|
} |
|
else |
|
{ |
|
msg = i18n("Fetching message %1 of %2 (%3 of %4 KB) from %5.") |
|
.arg(indexOfCurrentMsg+1).arg(numMsgs).arg(numBytesRead/1024) |
|
.arg(numBytesToRead/1024).arg(mHost); |
|
} |
|
KMBroadcastStatus::instance()->setStatusMsg( msg ); |
|
KMBroadcastStatus::instance()->setStatusProgressPercent("P" + mName, |
|
(numBytesToRead <= 100) ? 50 // We never know what the server tells us |
|
// This way of dividing is reqired for > 21MB of mail |
|
: (numBytesRead / (numBytesToRead / 100)) ); |
|
} |
|
return; |
|
} |
|
|
|
if (stage == Head) { |
|
curMsgStrm->writeRawBytes( data.data(), data.size() ); |
|
return; |
|
} |
|
|
|
// otherwise stage is List Or Uidl |
|
QString qdata = data; |
|
qdata = qdata.simplifyWhiteSpace(); // Workaround for Maillennium POP3/UNIBOX |
|
int spc = qdata.find( ' ' ); |
|
if (spc > 0) { |
|
if (stage == List) { |
|
QString length = qdata.mid(spc+1); |
|
if (length.find(' ') != -1) length = length.left(length.find(' ')); |
|
int len = length.toInt(); |
|
numBytes += len; |
|
QString id = qdata.left(spc); |
|
idsOfMsgs.append( id ); |
|
lensOfMsgsPendingDownload.append( len ); |
|
idsOfMsgsPendingDownload.append( id ); |
|
} |
|
else { // stage == Uidl |
|
QString uid = qdata.mid(spc + 1); |
|
uidsOfMsgs.append( uid ); |
|
if (uidsOfSeenMsgs.contains(uid)) { |
|
QString id = qdata.left(spc); |
|
int idx = idsOfMsgsPendingDownload.findIndex(id); |
|
if (idx != -1) { |
|
lensOfMsgsPendingDownload.remove( lensOfMsgsPendingDownload |
|
.at( idx )); |
|
idsOfMsgsPendingDownload.remove( id ); |
|
idsOfMsgs.remove( id ); |
|
uidsOfMsgs.remove( uid ); |
|
} |
|
else |
|
kdDebug(5006) << "KMAcctExpPop::slotData synchronization failure." << endl; |
|
if (uidsOfSeenMsgs.contains( uid )) |
|
idsOfMsgsToDelete.append( id ); |
|
uidsOfNextSeenMsgs.append( uid ); |
|
} |
|
} |
|
} |
|
else { |
|
stage = Idle; |
|
if (job) job->kill(); |
|
job = 0; |
|
mSlave = 0; |
|
KMessageBox::error(0, i18n( "Unable to complete LIST operation" ), |
|
i18n("Invalid Response From Server")); |
|
return; |
|
} |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAcctExpPop::slotResult( KIO::Job* ) |
|
{ |
|
if (!job) return; |
|
if ( job->error() ) |
|
{ |
|
if (interactive) { |
|
if (headers) { // nothing to be done for headers |
|
idsOfMsgs.clear(); |
|
} |
|
if (stage == Head && job->error() == KIO::ERR_COULD_NOT_READ) |
|
{ |
|
KMessageBox::error(0, i18n("Your server does not support the " |
|
"TOP command. Therefore it is not possible to fetch the headers " |
|
"of large emails first, before downloading them.")); |
|
slotCancel(); |
|
return; |
|
} |
|
// force the dialog to be shown next time the account is checked |
|
if (!mStorePasswd) mPasswd = ""; |
|
job->showErrorDialog(); |
|
} |
|
slotCancel(); |
|
} |
|
else |
|
slotJobFinished(); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAcctExpPop::slotSlaveError(KIO::Slave *aSlave, int error, |
|
const QString &errorMsg) |
|
{ |
|
if (aSlave != mSlave) return; |
|
if (error == KIO::ERR_SLAVE_DIED) mSlave = 0; |
|
if (interactive) { |
|
KMessageBox::error(0, KIO::buildErrorString(error, errorMsg)); |
|
} |
|
|
|
|
|
stage = Quit; |
|
if (error == KIO::ERR_COULD_NOT_LOGIN && !mStorePasswd) |
|
mAskAgain = TRUE; |
|
/* We need a timer, otherwise slotSlaveError of the next account is also |
|
executed, if it reuses the slave, because the slave member variable |
|
is changed too early */ |
|
QTimer::singleShot(0, this, SLOT(slotCancel())); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAcctExpPop::slotGetNextHdr(){ |
|
kdDebug(5006) << "slotGetNextHeader" << endl; |
|
|
|
curMsgData.resize(0); |
|
delete curMsgStrm; |
|
curMsgStrm = 0; |
|
|
|
curMsgStrm = new QDataStream( curMsgData, IO_WriteOnly ); |
|
} |
|
|
|
void KMAcctExpPop::killAllJobs( bool ) { |
|
// must reimpl., but we don't use it yet |
|
} |
|
|
|
#include "kmacctexppop.moc"
|
|
|