[Reportbug-commits] [SCM] Reportbug - reports bugs in the Debian distribution branch, master, updated. 6.0-102-g19fb757

Sandro Tosi morph at debian.org
Sat Apr 7 23:08:11 UTC 2012


The following commit has been merged in the master branch:
commit 19fb757df622419f39360627060c9bd0304e0e25
Author: Sandro Tosi <morph at debian.org>
Date:   Sun Apr 8 00:56:15 2012 +0200

    Fix crash when using claws-mail as a mailer; thanks to Valentin Lorentz for the report and (partial) patch: Closes: #667543

diff --git a/debian/changelog b/debian/changelog
index fc5e9f2..08e7451 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -18,6 +18,8 @@ reportbug (6.3.2) UNRELEASED; urgency=low
     - correctly report the installation status for each dependency packages, not
       just the last status applied to each pkgs; thanks to Piotr Engelking for
       the report; Closes: #657753
+    - Fix crash when using claws-mail as a mailer; thanks to Valentin Lorentz
+      for the report and (partial) patch: Closes: #667543
   * reportbug/utils.py, debian/control
     - updated claws-mail command to use the new cli switch to compose a mail
       from a file (adding a versioned depends); thanks to David Paleino for the
@@ -28,7 +30,7 @@ reportbug (6.3.2) UNRELEASED; urgency=low
     - report foreign architectures information (if m-a); thanks to Cyril
       Brulebois for the report; Closes: #658795
 
- -- Sandro Tosi <morph at debian.org>  Sat, 07 Apr 2012 01:37:58 +0200
+ -- Sandro Tosi <morph at debian.org>  Sun, 08 Apr 2012 00:55:40 +0200
 
 reportbug (6.3.1) unstable; urgency=low
 
diff --git a/reportbug/utils.py b/reportbug/utils.py
index a8614b5..acccb56 100644
--- a/reportbug/utils.py
+++ b/reportbug/utils.py
@@ -881,6 +881,8 @@ def mua_is_supported(mua):
         mua_tmp = 'gnus'
     elif mua == 'mutt' or mua == MUA['mutt']:
         mua_tmp = 'mutt'
+    elif mua == 'claws-mail' or mua == MUA['claws-mail']:
+        mua_tmp = 'claws-mail'
     else:
         mua_tmp = mua
     if mua_tmp not in MUA:
@@ -898,6 +900,8 @@ def mua_exists(mua):
         mua_tmp = MUA['gnus']
     elif mua == 'mutt' or mua == MUA['mutt']:
         mua_tmp = MUA['mutt']
+    elif mua == 'claws-mail' or mua == MUA['claws-mail']:
+        mua_tmp = MUA['claws-mail']
     else:
         mua_tmp = MUA[mua]
     output = '/dev/null'

-- 
Reportbug - reports bugs in the Debian distribution



More information about the Reportbug-commits mailing list