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.
 
 
 

337 lines
8.7 KiB

// KMail Account
#include <stdlib.h>
#include <unistd.h>
#include <assert.h>
#include <kapplication.h>
#include <klocale.h>
#include <kmessagebox.h>
#include <kdebug.h>
#include "kmacctmgr.h"
#include "kmacctfolder.h"
#include "kmfoldermgr.h"
#include "kmfiltermgr.h"
#include "kmsender.h"
#include "kmbroadcaststatus.h"
//----------------------
#include "kmaccount.moc"
//-----------------------------------------------------------------------------
KMPrecommand::KMPrecommand(const QString &precommand, QObject *parent)
: QObject(parent), mPrecommand(precommand)
{
KMBroadcastStatus::instance()->setStatusMsg(
i18n("Executing precommand %1").arg(precommand ));
mPrecommandProcess << precommand;
connect(&mPrecommandProcess, SIGNAL(processExited(KProcess *)),
SLOT(precommandExited(KProcess *)));
}
//-----------------------------------------------------------------------------
KMPrecommand::~KMPrecommand()
{
}
//-----------------------------------------------------------------------------
bool KMPrecommand::start()
{
bool ok = mPrecommandProcess.start( KProcess::NotifyOnExit );
if (!ok) KMessageBox::error(0, i18n("Couldn't execute precommand '%1'.")
.arg(mPrecommand));
return ok;
}
//-----------------------------------------------------------------------------
void KMPrecommand::precommandExited(KProcess *p)
{
int exitCode = p->normalExit() ? p->exitStatus() : -1;
if (exitCode)
KMessageBox::error(0, i18n("The precommand exited with code %1:\n%2")
.arg(exitCode).arg(strerror(exitCode)));
emit finished(!exitCode);
}
//-----------------------------------------------------------------------------
KMAccount::KMAccount(KMAcctMgr* aOwner, const QString& aName)
: mName(aName),
mOwner(aOwner),
mFolder(0),
mTimer(0),
mInterval(0),
mExclude(false),
mCheckingMail(false),
mPrecommandSuccess(true)
{
assert(aOwner != NULL);
connect(&mReceiptTimer,SIGNAL(timeout()),SLOT(sendReceipts()));
}
//-----------------------------------------------------------------------------
KMAccount::~KMAccount()
{
if (!kernel->shuttingDown() && mFolder) mFolder->removeAccount(this);
if (mTimer) deinstallTimer();
}
//-----------------------------------------------------------------------------
void KMAccount::setName(const QString& aName)
{
mName = (aName.isEmpty()) ? i18n("Unnamed") : aName;
}
//-----------------------------------------------------------------------------
void KMAccount::clearPasswd()
{
}
//-----------------------------------------------------------------------------
void KMAccount::setFolder(KMFolder* aFolder, bool addAccount)
{
if(!aFolder)
{
kdDebug(5006) << "KMAccount::setFolder() : aFolder == NULL" << endl;
mFolder = NULL;
return;
}
mFolder = (KMAcctFolder*)aFolder;
if (addAccount) mFolder->addAccount(this);
}
//-----------------------------------------------------------------------------
void KMAccount::readConfig(KConfig& config)
{
QString folderName;
mFolder = NULL;
folderName = config.readEntry("Folder", "");
setCheckInterval(config.readNumEntry("check-interval", 0));
setCheckExclude(config.readBoolEntry("check-exclude", false));
setPrecommand(config.readEntry("precommand"));
if (!folderName.isEmpty())
{
setFolder(kernel->folderMgr()->findIdString(folderName), true);
}
}
//-----------------------------------------------------------------------------
void KMAccount::writeConfig(KConfig& config)
{
config.writeEntry("Type", type());
config.writeEntry("Name", mName);
config.writeEntry("Folder", mFolder ? mFolder->idString() : QString::null);
config.writeEntry("check-interval", mInterval);
config.writeEntry("check-exclude", mExclude);
config.writeEntry("precommand", mPrecommand);
}
//-----------------------------------------------------------------------------
void KMAccount::sendReceipt(KMMessage* aMsg)
{
KConfig* cfg = kapp->config();
bool sendReceipts;
KConfigGroupSaver saver(cfg, "General");
sendReceipts = cfg->readBoolEntry("send-receipts", false);
if (!sendReceipts) return;
KMMessage *newMsg = aMsg->createDeliveryReceipt();
if (newMsg) {
mReceipts.append(newMsg);
mReceiptTimer.start(0,true);
}
}
//-----------------------------------------------------------------------------
bool KMAccount::processNewMsg(KMMessage* aMsg)
{
int rc, processResult;
assert(aMsg != NULL);
// checks whether we should send delivery receipts
// and sends them.
sendReceipt(aMsg);
// Set status of new messages that are marked as old to read, otherwise
// the user won't see which messages newly arrived.
if (aMsg->status()==KMMsgStatusOld)
aMsg->setStatus(KMMsgStatusUnread); // -sanders
// aMsg->setStatus(KMMsgStatusRead);
else aMsg->setStatus(KMMsgStatusNew);
// 0==message moved; 1==processing ok, no move; 2==critical error, abort!
processResult = kernel->filterMgr()->process(aMsg,KMFilterMgr::Inbound);
if (processResult == 2) {
perror("Critical error: Unable to collect mail (out of space?)");
KMessageBox::information(0,(i18n("Critical error: "
"Unable to collect mail (out of space?)")));
return false;
}
else if (processResult == 1)
{
kernel->filterMgr()->tempOpenFolder(mFolder);
rc = mFolder->addMsg(aMsg);
if (rc) {
perror("failed to add message");
KMessageBox::information(0, i18n("Failed to add message:\n") +
QString(strerror(rc)));
return false;
}
int count = mFolder->count();
// If count == 1, the message is immediately displayed
if (count != 1) mFolder->unGetMsg(count - 1);
}
return true; //Everything's fine - message has been added by filter }
}
//-----------------------------------------------------------------------------
void KMAccount::setCheckInterval(int aInterval)
{
if (aInterval <= 0)
{
mInterval = 0;
deinstallTimer();
}
else
{
mInterval = aInterval;
installTimer();
}
}
//-----------------------------------------------------------------------------
void KMAccount::setCheckExclude(bool aExclude)
{
mExclude = aExclude;
}
//-----------------------------------------------------------------------------
void KMAccount::installTimer()
{
if (mInterval <= 0) return;
if(!mTimer)
{
mTimer = new QTimer();
connect(mTimer,SIGNAL(timeout()),SLOT(mailCheck()));
}
else
{
mTimer->stop();
}
mTimer->start(mInterval*60000);
}
//-----------------------------------------------------------------------------
void KMAccount::deinstallTimer()
{
if(mTimer) {
delete mTimer;
mTimer = NULL;
}
}
//-----------------------------------------------------------------------------
bool KMAccount::runPrecommand(const QString &precommand)
{
// Run the pre command if there is one
if ( precommand.isEmpty() )
return true;
KMPrecommand precommandProcess(precommand, this);
KMBroadcastStatus::instance()->setStatusMsg(
i18n("Executing precommand %1").arg(precommand ));
connect(&precommandProcess, SIGNAL(finished(bool)),
SLOT(precommandExited(bool)));
kdDebug(5006) << "Running precommand " << precommand << endl;
if (!precommandProcess.start()) return false;
kapp->enter_loop();
return mPrecommandSuccess;
}
//-----------------------------------------------------------------------------
void KMAccount::precommandExited(bool success)
{
mPrecommandSuccess = success;
kapp->exit_loop();
}
//-----------------------------------------------------------------------------
void KMAccount::mailCheck()
{
if (mCheckingMail) return;
mCheckingMail = TRUE;
kernel->acctMgr()->singleCheckMail(this,false);
mCheckingMail = FALSE;
}
//-----------------------------------------------------------------------------
void KMAccount::sendReceipts()
{
// re-entrant
QValueList<KMMessage*> receipts;
QValueList<KMMessage*>::Iterator it;
for(it = mReceipts.begin(); it != mReceipts.end(); ++it)
receipts.append(*it);
mReceipts.clear();
for(it = receipts.begin(); it != receipts.end(); ++it)
kernel->msgSender()->send(*it); //might process events
}
//-----------------------------------------------------------------------------
QString KMAccount::encryptStr(const QString &aStr)
{
QString result;
for (uint i = 0; i < aStr.length(); i++)
result += (aStr[i].unicode() < 0x20) ? aStr[i] :
QChar(0x1001F - aStr[i].unicode());
return result;
}
//-----------------------------------------------------------------------------
QString KMAccount::importPassword(const QString &aStr)
{
unsigned int i, val;
unsigned int len = aStr.length();
QCString result;
result.resize(len+1);
for (i=0; i<len; i++)
{
val = aStr[i] - ' ';
val = (255-' ') - val;
result[i] = (char)(val + ' ');
}
result[i] = '\0';
return encryptStr(result);
}