* mu4e: check that message-signature is a string
This commit is contained in:
@ -53,7 +53,8 @@ messages. This is the mu4e-specific version of
|
||||
:group 'mu4e-compose)
|
||||
|
||||
(defcustom mu4e-compose-signature
|
||||
(or message-signature "Sent with my mu4e")
|
||||
(or (and (stringp message-signature) message-signature)
|
||||
message-signature "Sent with my mu4e")
|
||||
"The message signature (i.e. the blob at the bottom of
|
||||
messages). This is the mu4e-specific version of
|
||||
`message-signature'."
|
||||
@ -66,7 +67,6 @@ messages (if it is set)."
|
||||
:type 'boolean
|
||||
:group 'mu4e-compose)
|
||||
|
||||
|
||||
(defun mu4e~draft-user-agent-construct ()
|
||||
"Return the User-Agent string for mu4e.
|
||||
This is either the value of `mu4e-user-agent', or, if not set, a
|
||||
|
||||
Reference in New Issue
Block a user