Summary: | A patch that adds support for the Claws Mail MUA | ||
---|---|---|---|
Product: | [Applications] digikam | Reporter: | Paul Mangan <paul> |
Component: | Plugin-Generic-SendByMail | Assignee: | Digikam Developers <digikam-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | ||
Priority: | NOR | ||
Version: | 5.6.0 | ||
Target Milestone: | --- | ||
Platform: | Debian testing | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | 0.1.0 | |
Sentry Crash Report: | |||
Attachments: | Patch against SVN to add support for Claws Mail MUA |
Description
Paul Mangan
2006-12-02 11:08:21 UTC
Created attachment 18752 [details]
Patch against SVN to add support for Claws Mail MUA
Any news on this patch? SVN commit 632707 by hoechstetter: BUG:138241; Added a patch that adds support for the Claws Mail MUA by paul@claws-mail.org M +6 -3 sendimages.cpp M +2 -0 sendimagesdialog.cpp --- trunk/extragear/libs/kipi-plugins/sendimages/sendimages.cpp #632706:632707 @@ -431,14 +431,17 @@ agentInvoked = true; } - // Sylpheed mail agent call. + // Claws Mail and Sylpheed mail agent call. - if ( m_sendImagesDialog->m_mailAgentName->currentText() == "Sylpheed" || + if ( m_sendImagesDialog->m_mailAgentName->currentText() == "Claws Mail" || + m_sendImagesDialog->m_mailAgentName->currentText() == "Sylpheed" || m_sendImagesDialog->m_mailAgentName->currentText() == "Sylpheed-Claws" ) { m_mailAgentProc = new KProcess; - if ( m_sendImagesDialog->m_mailAgentName->currentText() == "Sylpheed") + if ( m_sendImagesDialog->m_mailAgentName->currentText() == "Claws Mail") + *m_mailAgentProc << "claws-mail"; + else if ( m_sendImagesDialog->m_mailAgentName->currentText() == "Sylpheed") *m_mailAgentProc << "sylpheed"; else *m_mailAgentProc << "sylpheed-claws"; --- trunk/extragear/libs/kipi-plugins/sendimages/sendimagesdialog.cpp #632706:632707 @@ -362,6 +362,7 @@ m_mailAgentName = new QComboBox( false, page_setupEmailOptions ); m_mailAgentName->insertItem( "Default" ); m_mailAgentName->insertItem( "Balsa" ); + m_mailAgentName->insertItem( "Claws Mail" ); m_mailAgentName->insertItem( "Evolution" ); m_mailAgentName->insertItem( "GmailAgent" ); m_mailAgentName->insertItem( "KMail" ); @@ -374,6 +375,7 @@ QWhatsThis::add( m_mailAgentName, i18n("<p>Select here your preferred external mail agent program." "These mail agent versions are supported:<p>" "<b>Balsa</b>: >= 2.x<p>" + "<b>Claws Mail</b>: >= 2.6.1<p>" "<b>Evolution</b>: >= 1.4<p>" "<b>GmailAgent</b>: >= 0.2<p>" "<b>KMail</b>: >= 1.3<p>" |