azynheira / mu0

Automatically exported from code.google.com/p/mu0
0 stars 0 forks source link

mu4e: mu4e-send does not use mu #46

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Reply to email. Citation prefix incorrect.

What is the expected output? What do you see instead?
Expect: "> quoted text"
See: " > quoted text"

What version of the product are you using? On what operating system?
HEAD

Please provide any additional information below.

Not familiar with git hub to attempt a pull request -- this change seems to do 
the trick.

diff --git a/emacs/mu4e-send.el b/emacs/mu4e-send.el
index 1b1b125..e3db1a9 100644
--- a/emacs/mu4e-send.el
+++ b/emacs/mu4e-send.el
@@ -68,7 +68,7 @@ of mm and emacs."
        (or (caar from) (cdar from) "someone")
        "someone"))
    "\n\n"
-   (replace-regexp-in-string "^" " > " body)))))
+   (replace-regexp-in-string "^" mu4e-send-citation-prefix body)))))

 (defun mu4e-send-recipients-remove (lst email-to-remove)
   "Remove the recipient with EMAIL from the recipient list (of form

Original issue reported on code.google.com by ja...@ladan.ca on 16 Mar 2012 at 9:48

GoogleCodeExporter commented 8 years ago
Thanks -- fixed & pushed.

Original comment by digg...@gmail.com on 20 Mar 2012 at 10:03