// KMail startup and initialize code // Author: Stefan Taferner #include #include #include #include #ifdef HAVE_PATHS_H #include #endif #include #include #include #include #include #include "kmkernel.h" //control center #undef Status // stupid X headers #include "kmailIface_stub.h" // to call control center of master kmail #include #include #include "kmversion.h" // OLD about text. This is horrbly outdated. /*const char* aboutText = "KMail [" KMAIL_VERSION "] by\n\n" "Stefan Taferner ,\n" "Markus Wübben \n\n" "based on the work of:\n" "Lynx ,\n" "Stephan Meyer ,\n" "and the above authors.\n\n" "This program is covered by the GPL.\n\n" "Please send bugreports to taferner@kde.org"; */ static KCmdLineOptions kmoptions[] = { { "s", 0 , 0 }, { "subject ", I18N_NOOP("Set subject of msg."), 0 }, { "c", 0 , 0 }, { "cc
", I18N_NOOP("Send CC: to 'address'."), 0 }, { "b", 0 , 0 }, { "bcc
", I18N_NOOP("Send BCC: to 'addres'."), 0 }, { "h", 0 , 0 }, { "header
", I18N_NOOP("Add 'header' to msg."), 0 }, { "msg ", I18N_NOOP("Read msg-body from 'file'."), 0 }, { "body ", I18N_NOOP("Set body of msg."), 0 }, { "check", I18N_NOOP("Check for new mail only."), 0 }, { "composer", I18N_NOOP("Open only composer window."), 0 }, { "+[address]", I18N_NOOP("Send msg to 'address'."), 0 }, // { "+[file]", I18N_NOOP("Show message from file 'file'."), 0 }, { 0, 0, 0} }; static void signalHandler(int sigId); static void setSignalHandler(void (*handler)(int)); //----------------------------------------------------------------------------- // Crash recovery signal handler static void signalHandler(int sigId) { setSignalHandler(SIG_DFL); fprintf(stderr, "*** KMail got signal %d (Exiting)\n", sigId); // try to cleanup all windows kernel->dumpDeadLetters(); ::exit(-1); // } // Crash recovery signal handler static void crashHandler(int sigId) { setSignalHandler(SIG_DFL); fprintf(stderr, "*** KMail got signal %d (Crashing)\n", sigId); // try to cleanup all windows kernel->dumpDeadLetters(); // Return to DrKonqi. } //----------------------------------------------------------------------------- static void setSignalHandler(void (*handler)(int)) { signal(SIGKILL, handler); signal(SIGTERM, handler); signal(SIGHUP, handler); KCrash::setEmergencySaveFunction(crashHandler); } //----------------------------------------------------------------------------- class KMailApplication : public KUniqueApplication { public: KMailApplication() : KUniqueApplication() { }; virtual int newInstance(); }; int KMailApplication::newInstance() { QString to, cc, bcc, subj, body; KURL messageFile = QString::null; bool mailto = false; bool checkMail = false; //bool viewOnly = false; // process args: KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); if (args->getOption("subject")) { mailto = true; subj = args->getOption("subject"); } if (args->getOption("cc")) { mailto = true; cc = args->getOption("cc"); } if (args->getOption("bcc")) { mailto = true; bcc = args->getOption("bcc"); } if (args->getOption("msg")) { mailto = true; messageFile = QString::fromLocal8Bit(args->getOption("msg")); } if (args->getOption("body")) { mailto = true; body = args->getOption("body"); } if (args->isSet("composer")) mailto = true; if (args->isSet("check")) checkMail = true; for(int i= 0; i < args->count(); i++) { if (!to.isEmpty()) to += ", "; if (strncasecmp(args->arg(i),"mailto:",7)==0) to += args->arg(i); else to += args->arg(i); mailto = true; } args->clear(); kernel->action (mailto, checkMail, to, cc, bcc, subj, body, messageFile); return 0; } int main(int argc, char *argv[]) { // WABA: KMail is a KUniqueApplication. Unfortunately this makes debugging // a bit harder: You should pass --nofork as commandline argument when using // a debugger. In gdb you can do this by typing "set args --nofork" before // typing "run". KAboutData *about = new KAboutData("kmail", I18N_NOOP("KMail"), KMAIL_VERSION, I18N_NOOP("A KDE E-Mail client."), KAboutData::License_GPL, "(c) 1997-2000, The KMail developers", "http://kmail.kde.org"); about->addAuthor( "Don Sanders", I18N_NOOP("Current maintainer"), "don@sanders.org" ); about->addAuthor( "Waldo Bastian", QString::null, "bastian@kde.org" ); about->addAuthor( "Andreas Gungl", QString::null, "a.gungl@gmx.de" ); about->addAuthor( "Michael Haeckel", QString::null, "michael@haeckel.net" ); about->addAuthor( "Lars Knoll", QString::null, "knoll@kde.org" ); about->addAuthor( "J. Nick Koston", QString::null, "bdraco@darkorb.net" ); about->addAuthor( "Daniel Naber", QString::null, "daniel.naber@t-online.de" ); about->addAuthor( "Sven Radej", QString::null, "radej@kde.org" ); about->addAuthor( "Espen Sand", QString::null, "espen@kde.org" ); about->addAuthor( "George Staikos", QString::null, "staikos@kde.org" ); about->addAuthor( "Stefan Taferner ", QString::null, "taferner@kde.org" ); about->addAuthor( "Mario Weilguni", QString::null, "mweilguni@sime.com" ); about->addAuthor( "Robert D. Williams", QString::null, "rwilliams@kde.org" ); about->addAuthor( "Markus Wuebben", QString::null, "markus.wuebben@kde.org" ); KCmdLineArgs::init(argc, argv, about); KCmdLineArgs::addCmdLineOptions( kmoptions ); // Add kmail options if (!KMailApplication::start()) exit(0); KMailApplication app; kapp->dcopClient()->suspend(); // Don't handle DCOP requests yet //local, do the init KMKernel kmailKernel; kmailKernel.init(); kapp->dcopClient()->setDefaultObject( kmailKernel.objId() ); // and session management kmailKernel.doSessionManagement(); // any dead letters? kmailKernel.recoverDeadLetters(); setSignalHandler(signalHandler); kapp->dcopClient()->resume(); // Ok. We are ready for DCOP requests. // Go! int ret = kapp->exec(); // clean up kmailKernel.cleanup(); return ret; }