/******************************************************************************* ** ** Filename : util ** Created on : 03 April, 2005 ** Copyright : (c) 2005 Till Adam ** Email : ** *******************************************************************************/ /******************************************************************************* ** ** 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. ** ** It 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 ** ** In addition, as a special exception, the copyright holders give ** permission to link the code of this program with any edition of ** the Qt library by Trolltech AS, Norway (or with modified versions ** of Qt that use the same license as Qt), and distribute linked ** combinations including the two. You must obey the GNU General ** Public License in all respects for all of the code used other than ** Qt. If you modify this file, you may extend this exception to ** your version of the file, but you are not obligated to do so. If ** you do not wish to do so, delete this exception statement from ** your version. ** *******************************************************************************/ #include "util.h" #include "kmkernel.h" #include "messagecore/stringutil.h" #include "messagecomposer/messagehelper.h" #include #include #include #include #include #include "foldercollection.h" using namespace MailCommon; KMime::Types::Mailbox::List KMail::Util::mailingListsFromMessage( const Akonadi::Item& item ) { KMime::Types::Mailbox::List addresses; // determine the mailing list posting address Akonadi::Collection parentCollection = item.parentCollection(); if ( parentCollection.isValid() ) { const QSharedPointer fd = FolderCollection::forCollection( parentCollection, false ); if ( fd->isMailingListEnabled() && !fd->mailingListPostAddress().isEmpty() ) { addresses << MessageCore::StringUtil::mailboxFromUnicodeString( fd->mailingListPostAddress() ); } } return addresses; } Akonadi::Item::Id KMail::Util::putRepliesInSameFolder( const Akonadi::Item& item ) { Akonadi::Collection parentCollection = item.parentCollection(); if ( parentCollection.isValid() ) { const QSharedPointer fd = FolderCollection::forCollection( parentCollection, false ); if( fd->putRepliesInSameFolder() ) { return parentCollection.id(); } } return -1; } void KMail::Util::launchAccountWizard( QWidget *w ) { QStringList lst; lst.append( "--type" ); lst.append( "message/rfc822" ); const QString path = KStandardDirs::findExe( QLatin1String("accountwizard" ) ); if( !QProcess::startDetached( path, lst ) ) KMessageBox::error( w, i18n( "Could not start the account wizard. " "Please check your installation." ), i18n( "Unable to start account wizard" ) ); } void KMail::Util::handleClickedURL( const KUrl &url, uint identity ) { if ( url.protocol() == QLatin1String( "mailto" ) ) { KMime::Message::Ptr msg ( new KMime::Message ); MessageHelper::initHeader( msg, KMKernel::self()->identityManager(), identity ); msg->contentType()->setCharset("utf-8"); QMap fields = MessageCore::StringUtil::parseMailtoUrl( url ); msg->to()->fromUnicodeString( fields.value( "to" ),"utf-8" ); if ( !fields.value( "subject" ).isEmpty() ) msg->subject()->fromUnicodeString( fields.value( "subject" ),"utf-8" ); if ( !fields.value( "body" ).isEmpty() ) msg->setBody( fields.value( "body" ).toUtf8() ); if ( !fields.value( "cc" ).isEmpty() ) msg->cc()->fromUnicodeString( fields.value( "cc" ),"utf-8" ); KMail::Composer * win = KMail::makeComposer( msg, KMail::Composer::New, identity ); win->setFocusToSubject(); win->show(); } else { kWarning() << "Can't handle URL:" << url; } } void KMail::Util::mailingListsHandleURL( const KUrl::List& lst,const QSharedPointer &folder ) { const QString handler = ( folder->mailingList().handler() == MailingList::KMail ) ? QLatin1String( "mailto" ) : QLatin1String( "https" ); KUrl urlToHandle; KUrl::List::ConstIterator end( lst.constEnd() ); for ( KUrl::List::ConstIterator itr = lst.constBegin(); itr != end; ++itr ) { if ( handler == (*itr).protocol() ) { urlToHandle = *itr; break; } } if ( urlToHandle.isEmpty() && !lst.empty() ) { urlToHandle = lst.first(); } if ( !urlToHandle.isEmpty() ) { KMail::Util::handleClickedURL( urlToHandle, folder->identity() ); } else { kWarning()<< "Can't handle url"; } } void KMail::Util::mailingListPost( const QSharedPointer &fd ) { if ( fd ) KMail::Util::mailingListsHandleURL( fd->mailingList().postUrls(),fd ); } void KMail::Util::mailingListSubscribe( const QSharedPointer &fd ) { if ( fd ) KMail::Util::mailingListsHandleURL( fd->mailingList().subscribeUrls(),fd ); } void KMail::Util::mailingListUnsubscribe( const QSharedPointer &fd ) { if ( fd ) KMail::Util::mailingListsHandleURL( fd->mailingList().unsubscribeUrls(),fd ); } void KMail::Util::mailingListArchives( const QSharedPointer &fd ) { if ( fd ) KMail::Util::mailingListsHandleURL( fd->mailingList().archiveUrls(),fd ); } void KMail::Util::mailingListHelp( const QSharedPointer &fd ) { if ( fd ) KMail::Util::mailingListsHandleURL( fd->mailingList().helpUrls(),fd ); }