org-msg
org-msg copied to clipboard
How to put the signature above the reply in org-msg?
trafficstars
Hi!
I'm using doom-emacs and I have org-msg activated (https://github.com/doomemacs/doomemacs/tree/master/modules/email/mu4e).
I want that my signature is above the reply. Something like this
#+begin_signature
--\\
My signature
#+end_signature
Me <[email protected]> writes:
> Old reply
> Old reply
> Old reply
> Old reply
I have this in my config.el but it doesn't work,
(after! mu4e
(setq message-cite-reply-position 'above))
What is the correct way to configure this?
Thanks for the help.
One workaround is to use the greeting as signature. With this, the signature is always positioned above the replies.
(setq org-msg-greeting-fmt "\n\n#+begin_signature\n--\nMy signature\n#+end_signature")
Best.