Gijs Hillenius <[email protected]> writes:
Hi Gijs,
> This is most likely a local bug: when I want to resend an email, I do
> `SDr`. Invariably, when hitting C-c C-c, the result is
> "message-make-from: Wrong type argument: stringp, mail-user-name"
>
> Alternatively, SDe just works.
>
> Debugger entered--Lisp error: (wrong-type-argument stringp mail-user-name)
> string-match("[^- !#-'*+/-9=?A-Z^-~]" mail-user-name)
> message-make-from()
Looking at the code, the line with the error is
(string-match "[^- !#-'*+/-9=?A-Z^-~]" fullname)
where fullname is let-bound to
(or name
(and (boundp 'user-full-name)
user-full-name)
(user-full-name))
`name' is not provided according to your backtrace. So I guess you have
somewhere in your init file
(setq user-full-name 'mail-user-name)
whereas you probably wanted to write
(setq user-full-name mail-user-name)
That is, you accidentally set `user-full-name' to the symbol
mail-user-name instead to the value of that variable.
Bye,
Tassilo
_______________________________________________
info-gnus-english mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/info-gnus-english