bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#16743: 24.3.50; Rmail incompatibility with mailutils-2.99


From: Ingo Brunberg
Subject: bug#16743: 24.3.50; Rmail incompatibility with mailutils-2.99
Date: Thu, 13 Feb 2014 12:39:30 +0100

Rmail determines the wrong value of rmail-movemail-variant-in-use when
working with GNU mailutils-2.99.

The output of "movemail --version" is something like:
movemail (GNU Mailutils) 2.99.98
...

To fix simply remove the space in the pattern with the following patch:

=== modified file 'lisp/mail/rmail.el'
--- lisp/mail/rmail.el  2014-01-22 01:50:40 +0000
+++ lisp/mail/rmail.el  2014-02-13 11:25:28 +0000
@@ -254,7 +254,7 @@
        (cond
         ((looking-at ".*movemail: invalid option")
          'emacs)    ;; Possibly...
-        ((looking-at "movemail (GNU Mailutils .*)")
+        ((looking-at "movemail (GNU Mailutils.*)")
          'mailutils)
         (t
          ;; FIXME:






reply via email to

[Prev in Thread] Current Thread [Next in Thread]