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.
 
 
 

689 lines
21 KiB

/* -*- mode: C++; c-file-style: "gnu" -*-
This file is part of KMail, the KDE mail client.
Copyright (c) 1997 Markus Wuebben <markus.wuebben@kde.org>
Copyright (c) 2009 Laurent Montel <montel@kde.org>
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; either version 2 of the License, or
(at your option) any later version.
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.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
// define this to copy all html that is written to the readerwindow to
// filehtmlwriter.out in the current working directory
#include "kmreaderwin.h"
#include "globalsettings.h"
#include "kmversion.h"
#include "kmmainwidget.h"
#include "kmreadermainwin.h"
#include <kpimutils/email.h>
#include <kpimutils/kfileio.h>
#include <libkdepim/addemailaddressjob.h>
#include <libkdepim/openemailaddressjob.h>
#include "kmcommands.h"
#include "mdnadvicedialog.h"
#include <QByteArray>
#include <QVBoxLayout>
#include "messageviewer/headerstrategy.h"
#include "messageviewer/headerstyle.h"
#include "messageviewer/mailwebview.h"
#include "messageviewer/globalsettings.h"
#include "messageviewer/csshelper.h"
using MessageViewer::CSSHelper;
#include "util.h"
#include <kicon.h>
#include "messageviewer/attachmentdialog.h"
#include "stringutil.h"
#include <kmime/kmime_mdn.h>
using namespace KMime;
#include "messageviewer/viewer.h"
using namespace MessageViewer;
#include "messageviewer/attachmentstrategy.h"
#include "messagecomposer/messagesender.h"
#include "messagecomposer/messagefactory.h"
using MessageComposer::MessageFactory;
#include "messagecore/messagehelpers.h"
// KABC includes
#include <kabc/addressee.h>
#include <kabc/vcardconverter.h>
#include <kde_file.h>
#include <kactionmenu.h>
// for the click on attachment stuff (dnaber):
#include <kcharsets.h>
#include <kmenu.h>
#include <kdebug.h>
#include <kfiledialog.h>
#include <klocale.h>
#include <kmessagebox.h>
#include <kmimetypetrader.h>
#include <kglobalsettings.h>
#include <krun.h>
#include <ktemporaryfile.h>
#include <kdialog.h>
#include <kaction.h>
#include <kfontaction.h>
#include <kiconloader.h>
#include <kcodecs.h>
#include <kascii.h>
#include <kselectaction.h>
#include <kstandardaction.h>
#include <ktoggleaction.h>
#include <kconfiggroup.h>
#include <QClipboard>
// X headers...
#undef Never
#undef Always
#include <unistd.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <stdio.h>
#include <ctype.h>
#include <string.h>
using namespace KMail;
//-----------------------------------------------------------------------------
KMReaderWin::KMReaderWin(QWidget *aParent,
QWidget *mainWindow,
KActionCollection* actionCollection,
Qt::WindowFlags aFlags )
: QWidget(aParent, aFlags ),
mMainWindow( mainWindow ),
mActionCollection( actionCollection ),
mMailToComposeAction( 0 ),
mMailToReplyAction( 0 ),
mMailToForwardAction( 0 ),
mAddAddrBookAction( 0 ),
mOpenAddrBookAction( 0 ),
mUrlSaveAsAction( 0 ),
mAddBookmarksAction( 0 )
{
createActions();
QVBoxLayout * vlay = new QVBoxLayout( this );
vlay->setMargin( 0 );
mViewer = new Viewer( this, mainWindow, mActionCollection );
mViewer->setAppName( "KMail" );
connect( mViewer, SIGNAL(urlClicked( const Akonadi::Item &, const KUrl & ) ),
this, SLOT( slotUrlClicked( const Akonadi::Item &, const KUrl& ) ) );
connect( mViewer, SIGNAL( requestConfigSync() ), kmkernel, SLOT( slotRequestConfigSync() ) );
connect( mViewer, SIGNAL( showReader( KMime::Content* , bool, const QString& ) ),
this, SLOT( slotShowReader( KMime::Content* , bool, const QString& ) ) );
connect( mViewer, SIGNAL( showMessage(KMime::Message::Ptr, const QString&) ),
this, SLOT( slotShowMessage(KMime::Message::Ptr, const QString& ) ) );
connect( mViewer, SIGNAL( showStatusBarMessage( const QString & ) ),
this, SIGNAL( showStatusBarMessage( const QString & ) ) );
connect( mViewer, SIGNAL( deleteMessage( Akonadi::Item ) ),
this, SLOT( slotDeleteMessage( Akonadi::Item ) ) );
vlay->addWidget( mViewer );
readConfig();
mDelayedMarkTimer.setSingleShot( true );
connect( &mDelayedMarkTimer, SIGNAL(timeout()),
this, SLOT(slotTouchMessage()) );
}
void KMReaderWin::createActions()
{
KActionCollection *ac = mActionCollection;
if ( !ac ) {
return;
}
//
// Message Menu
//
// new message to
mMailToComposeAction = new KAction( KIcon( "mail-message-new" ),
i18n( "New Message To..." ), this );
ac->addAction("mail_new", mMailToComposeAction );
connect( mMailToComposeAction, SIGNAL(triggered(bool)),
SLOT(slotMailtoCompose()) );
// reply to
mMailToReplyAction = new KAction( KIcon( "mail-reply-sender" ),
i18n( "Reply To..." ), this );
ac->addAction( "mailto_reply", mMailToReplyAction );
connect( mMailToReplyAction, SIGNAL(triggered(bool)),
SLOT(slotMailtoReply()) );
// forward to
mMailToForwardAction = new KAction( KIcon( "mail-forward" ),
i18n( "Forward To..." ), this );
ac->addAction( "mailto_forward", mMailToForwardAction );
connect( mMailToForwardAction, SIGNAL(triggered(bool)),
SLOT(slotMailtoForward()) );
// add to addressbook
mAddAddrBookAction = new KAction( KIcon( "contact-new" ),
i18n( "Add to Address Book" ), this );
ac->addAction( "add_addr_book", mAddAddrBookAction );
connect( mAddAddrBookAction, SIGNAL(triggered(bool)),
SLOT(slotMailtoAddAddrBook()) );
// open in addressbook
mOpenAddrBookAction = new KAction( KIcon( "view-pim-contacts" ),
i18n( "Open in Address Book" ), this );
ac->addAction( "openin_addr_book", mOpenAddrBookAction );
connect( mOpenAddrBookAction, SIGNAL(triggered(bool)),
SLOT(slotMailtoOpenAddrBook()) );
// bookmark message
mAddBookmarksAction = new KAction( KIcon( "bookmark-new" ), i18n( "Bookmark This Link" ), this );
ac->addAction( "add_bookmarks", mAddBookmarksAction );
connect( mAddBookmarksAction, SIGNAL(triggered(bool)),
SLOT(slotAddBookmarks()) );
// save URL as
mUrlSaveAsAction = new KAction( i18n( "Save Link As..." ), this );
ac->addAction( "saveas_url", mUrlSaveAsAction );
connect( mUrlSaveAsAction, SIGNAL(triggered(bool)), SLOT(slotUrlSave()) );
// find text
KAction *action = new KAction(KIcon("edit-find"), i18n("&Find in Message..."), this);
ac->addAction("find_in_messages", action );
connect(action, SIGNAL(triggered(bool)), SLOT(slotFind()));
action->setShortcut(KStandardShortcut::find());
}
void KMReaderWin::setUseFixedFont( bool useFixedFont )
{
mViewer->setUseFixedFont( useFixedFont );
}
bool KMReaderWin::isFixedFont() const
{
return mViewer->isFixedFont();
}
//-----------------------------------------------------------------------------
KMReaderWin::~KMReaderWin()
{
}
//-----------------------------------------------------------------------------
void KMReaderWin::readConfig(void)
{
mViewer->readConfig();
}
void KMReaderWin::setAttachmentStrategy( const AttachmentStrategy * strategy ) {
mViewer->setAttachmentStrategy( strategy );
}
void KMReaderWin::setHeaderStyleAndStrategy( HeaderStyle * style,
const HeaderStrategy * strategy ) {
mViewer->setHeaderStyleAndStrategy( style, strategy );
}
//-----------------------------------------------------------------------------
void KMReaderWin::setOverrideEncoding( const QString & encoding )
{
mViewer->setOverrideEncoding( encoding );
}
//-----------------------------------------------------------------------------
void KMReaderWin::clearCache()
{
clear();
mDelayedMarkTimer.stop();
}
// enter items for the "Important changes" list here:
static const char * const kmailChanges[] = {
"KMail is now based on the Akonadi Personal Information Management framework, which brings many "
"changes all around."
};
static const int numKMailChanges =
sizeof kmailChanges / sizeof *kmailChanges;
// enter items for the "new features" list here, so the main body of
// the welcome page can be left untouched (probably much easier for
// the translators). Note that the <li>...</li> tags are added
// automatically below:
static const char * const kmailNewFeatures[] = {
"Push email (IMAP IDLE)",
"Improved virtual folders",
"Improved searches",
"Support for adding notes (annotations) to mails",
"Tag folders",
"Less GUI freezes, mail checks happen in the background"
};
static const int numKMailNewFeatures =
sizeof kmailNewFeatures / sizeof *kmailNewFeatures;
//-----------------------------------------------------------------------------
//static
QString KMReaderWin::newFeaturesMD5()
{
QByteArray str;
for ( int i = 0 ; i < numKMailChanges ; ++i )
str += kmailChanges[i];
for ( int i = 0 ; i < numKMailNewFeatures ; ++i )
str += kmailNewFeatures[i];
KMD5 md5( str );
return md5.base64Digest();
}
//-----------------------------------------------------------------------------
void KMReaderWin::displaySplashPage( const QString &info )
{
mViewer->displaySplashPage( info );
}
void KMReaderWin::displayBusyPage()
{
QString info =
i18n( "<h2 style='margin-top: 0px;'>Retrieving Folder Contents</h2><p>Please wait . . .</p>&nbsp;" );
displaySplashPage( info );
}
void KMReaderWin::displayOfflinePage()
{
QString info =
i18n( "<h2 style='margin-top: 0px;'>Offline</h2><p>KMail is currently in offline mode. "
"Click <a href=\"kmail:goOnline\">here</a> to go online . . .</p>&nbsp;" );
displaySplashPage( info );
}
//-----------------------------------------------------------------------------
void KMReaderWin::displayAboutPage()
{
KLocalizedString info =
ki18nc("%1: KMail version; %2: help:// URL; "
"%3: generated list of new features; "
"%4: First-time user text (only shown on first start); "
"%5: generated list of important changes; "
"--- end of comment ---",
"<h2 style='margin-top: 0px;'>Welcome to KMail %1</h2><p>KMail is the email client by KDE."
"It is designed to be fully compatible with "
"Internet mailing standards including MIME, SMTP, POP3, and IMAP."
"</p>\n"
"<ul><li>KMail has many powerful features which are described in the "
"<a href=\"%2\">documentation</a></li>\n"
"%5\n" // important changes
"%3\n" // new features
"%4\n" // first start info
"<p>We hope that you will enjoy KMail.</p>\n"
"<p>Thank you,</p>\n"
"<p style='margin-bottom: 0px'>&nbsp; &nbsp; The KMail Team</p>")
.subs( KMAIL_VERSION )
.subs( "help:/kmail/index.html" );
if ( ( numKMailNewFeatures > 1 ) || ( numKMailNewFeatures == 1 && strlen(kmailNewFeatures[0]) > 0 ) ) {
QString featuresText =
i18n("<p>Some of the new features in this release of KMail include "
"(compared to KMail %1, which is part of KDE Software Compilation %2):</p>\n",
QString("1.13"), KDE::versionRelease() ); // prior KMail and KDE version
featuresText += "<ul>\n";
for ( int i = 0 ; i < numKMailNewFeatures ; i++ )
featuresText += "<li>" + i18n( kmailNewFeatures[i] ) + "</li>\n";
featuresText += "</ul>\n";
info = info.subs( featuresText );
}
else
info = info.subs( QString() ); // remove the place holder
if( kmkernel->firstStart() ) {
info = info.subs( i18n("<p>Please take a moment to fill in the KMail "
"configuration panel at Settings-&gt;Configure "
"KMail.\n"
"You need to create at least a default identity and "
"an incoming as well as outgoing mail account."
"</p>\n") );
} else {
info = info.subs( QString() ); // remove the place holder
}
if ( ( numKMailChanges > 1 ) || ( numKMailChanges == 1 && strlen(kmailChanges[0]) > 0 ) ) {
QString changesText =
i18n("<p><span style='font-size:125%; font-weight:bold;'>"
"Important changes</span> (compared to KMail %1):</p>\n",
QString("1.13"));
changesText += "<ul>\n";
for ( int i = 0 ; i < numKMailChanges ; i++ )
changesText += i18n("<li>%1</li>\n", i18n( kmailChanges[i] ) );
changesText += "</ul>\n";
info = info.subs( changesText );
}
else
info = info.subs( QString() ); // remove the place holder
displaySplashPage( info.toString() );
}
//-----------------------------------------------------------------------------
void KMReaderWin::slotTouchMessage()
{
if ( !message().isValid() )
return;
MessageStatus status;
status.setStatusFromFlags( message().flags() );
if ( !status.isUnread() )
return;
Akonadi::Item::List items;
items.append( message() );
KMCommand *command = new KMSetStatusCommand( MessageStatus::statusRead(), items );
command->start();
#if 0
// should we send an MDN?
if ( MessageViewer::GlobalSettings::notSendWhenEncrypted() &&
message()->encryptionState() != KMMsgNotEncrypted &&
message()->encryptionState() != KMMsgEncryptionStateUnknown )
return;
#else
kDebug() << "AKONADI PORT: Disabled code in " << Q_FUNC_INFO;
#endif
Akonadi::Collection col = message().parentCollection();
if ( col.isValid() &&
( KMKernel::self()->folderIsSentMailFolder( col ) ||
KMKernel::self()->folderIsTrash( col ) ||
KMKernel::self()->folderIsDraftOrOutbox( col ) ||
KMKernel::self()->folderIsTemplates( col ) ) )
return;
KMime::Message::Ptr msg = MessageCore::Util::message( message() );
if ( !msg )
return;
KMime::MDN::SendingMode s = MDNAdviceDialog::checkMDNHeaders( msg );
KConfigGroup mdnConfig( KMKernel::config(), "MDN" );
int quote = mdnConfig.readEntry<int>( "quote-message", 0 );
MessageFactory factory( msg, mViewer->messageItem().id() );
factory.setIdentityManager( KMKernel::self()->identityManager() );
factory.setFolderIdentity( KMail::Util::folderIdentity( message() ) );
KMime::Message::Ptr receipt = factory.createMDN( KMime::MDN::ManualAction, MDN::Displayed, s, quote );
if (receipt ) {
if ( !kmkernel->msgSender()->send( receipt ) ) // send or queue
KMessageBox::error( this, i18n("Could not send MDN.") );
}
}
//-----------------------------------------------------------------------------
void KMReaderWin::slotFind()
{
mViewer->slotFind();
}
//-----------------------------------------------------------------------------
void KMReaderWin::slotCopySelectedText()
{
QString selection = mViewer->selectedText();
selection.replace( QChar::Nbsp, ' ' );
QApplication::clipboard()->setText( selection );
}
//-----------------------------------------------------------------------------
void KMReaderWin::setMsgPart( KMime::Content* aMsgPart )
{
mViewer->setMessagePart( aMsgPart );
}
//-----------------------------------------------------------------------------
QString KMReaderWin::copyText() const
{
QString temp = mViewer->selectedText();
return temp;
}
//-----------------------------------------------------------------------------
void KMReaderWin::setHtmlOverride( bool override )
{
mViewer->setHtmlOverride( override );
}
bool KMReaderWin::htmlOverride() const
{
return mViewer->htmlOverride();
}
//-----------------------------------------------------------------------------
void KMReaderWin::setHtmlLoadExtOverride( bool override )
{
mViewer->setHtmlLoadExtOverride( override );
}
//-----------------------------------------------------------------------------
bool KMReaderWin::htmlMail()
{
return mViewer->htmlMail();
}
//-----------------------------------------------------------------------------
bool KMReaderWin::htmlLoadExternal()
{
return mViewer->htmlLoadExternal();
}
//-----------------------------------------------------------------------------
Akonadi::Item KMReaderWin::message() const
{
return mViewer->messageItem();
}
//-----------------------------------------------------------------------------
void KMReaderWin::slotMailtoCompose()
{
KMCommand *command = new KMMailtoComposeCommand( urlClicked(), message() );
command->start();
}
//-----------------------------------------------------------------------------
void KMReaderWin::slotMailtoForward()
{
KMCommand *command = new KMMailtoForwardCommand( mMainWindow, urlClicked(),
message() );
command->start();
}
//-----------------------------------------------------------------------------
void KMReaderWin::slotMailtoAddAddrBook()
{
const QString emailString = KPIMUtils::decodeMailtoUrl( urlClicked() );
KPIM::AddEmailAddressJob *job = new KPIM::AddEmailAddressJob( emailString, mMainWindow, this );
job->start();
}
//-----------------------------------------------------------------------------
void KMReaderWin::slotMailtoOpenAddrBook()
{
const QString emailString = KPIMUtils::decodeMailtoUrl( urlClicked() );
KPIM::OpenEmailAddressJob *job = new KPIM::OpenEmailAddressJob( emailString, mMainWindow, this );
job->start();
}
//-----------------------------------------------------------------------------
void KMReaderWin::slotAddBookmarks()
{
KMCommand *command = new KMAddBookmarksCommand( urlClicked(), this );
command->start();
}
//-----------------------------------------------------------------------------
void KMReaderWin::slotUrlSave()
{
KMCommand *command = new KMUrlSaveCommand( urlClicked(), mMainWindow );
command->start();
}
//-----------------------------------------------------------------------------
void KMReaderWin::slotMailtoReply()
{
KMCommand *command = new KMMailtoReplyCommand( mMainWindow, urlClicked(),
message(), copyText() );
command->start();
}
CSSHelper* KMReaderWin::cssHelper() const
{
return mViewer->cssHelper();
}
bool KMReaderWin::htmlLoadExtOverride() const
{
return mViewer->htmlLoadExtOverride();
}
void KMReaderWin::setDecryptMessageOverwrite( bool overwrite )
{
mViewer->setDecryptMessageOverwrite( overwrite );
}
const AttachmentStrategy * KMReaderWin::attachmentStrategy() const
{
return mViewer->attachmentStrategy();
}
QString KMReaderWin::overrideEncoding() const
{
return mViewer->overrideEncoding();
}
KToggleAction *KMReaderWin::toggleFixFontAction()
{
return mViewer->toggleFixFontAction();
}
KAction *KMReaderWin::toggleMimePartTreeAction()
{
return mViewer->toggleMimePartTreeAction();
}
KAction *KMReaderWin::selectAllAction()
{
return mViewer->selectAllAction();
}
const HeaderStrategy * KMReaderWin::headerStrategy() const
{
return mViewer->headerStrategy();
}
HeaderStyle * KMReaderWin::headerStyle() const
{
return mViewer->headerStyle();
}
KAction *KMReaderWin::copyURLAction()
{
return mViewer->copyURLAction();
}
KAction *KMReaderWin::copyAction()
{
return mViewer->copyAction();
}
KAction *KMReaderWin::urlOpenAction()
{
return mViewer->urlOpenAction();
}
void KMReaderWin::setPrinting(bool enable)
{
mViewer->setPrinting( enable );
}
void KMReaderWin::clear(bool force )
{
mViewer->clear( force ? Viewer::Force : Viewer::Delayed );
}
void KMReaderWin::setMessage( const Akonadi::Item &item, Viewer::UpdateMode updateMode)
{
kDebug() << Q_FUNC_INFO << parentWidget();
mViewer->setMessageItem( item, updateMode );
mDelayedMarkTimer.stop();
if ( item.isValid() ) {
MessageStatus status;
status.setStatusFromFlags( item.flags() );
if ( status.isUnread() && MessageViewer::GlobalSettings::self()->delayedMarkAsRead() ) {
if (MessageViewer::GlobalSettings::self()->delayedMarkTime() != 0 )
mDelayedMarkTimer.start( MessageViewer::GlobalSettings::self()->delayedMarkTime() * 1000 );
else
slotTouchMessage();
}
}
}
void KMReaderWin::setMessage(Message::Ptr message)
{
mViewer->setMessage( message );
}
KUrl KMReaderWin::urlClicked() const
{
return mViewer->urlClicked();
}
void KMReaderWin::update( bool force )
{
mViewer->update( force ? Viewer::Force : Viewer::Delayed );
}
void KMReaderWin::slotUrlClicked( const Akonadi::Item & item, const KUrl & url )
{
KMMainWidget *mainWidget = dynamic_cast<KMMainWidget*>( mMainWindow );
uint identity = 0;
if ( item.isValid() && item.parentCollection().isValid() ) {
QSharedPointer<FolderCollection> fd = FolderCollection::forCollection( item.parentCollection() );
identity = fd->identity();
}
KMail::Util::handleClickedURL( url, identity );
}
void KMReaderWin::slotShowReader( KMime::Content* msgPart, bool htmlMail, const QString &encoding )
{
KMReaderMainWin *win = new KMReaderMainWin( msgPart, htmlMail, encoding );
win->show();
}
void KMReaderWin::slotShowMessage( KMime::Message::Ptr message, const QString& encoding )
{
KMReaderMainWin *win = new KMReaderMainWin();
win->showMessage( encoding, message );
win->show();
}
void KMReaderWin::slotDeleteMessage(const Akonadi::Item& item)
{
if ( !item.isValid() )
return;
KMTrashMsgCommand *command = new KMTrashMsgCommand( item.parentCollection(), item, -1 );
command->start();
}
#include "kmreaderwin.moc"