Gnus development mailing list
 help / color / mirror / Atom feed
* Can't reply
@ 2003-03-27 18:42 Shigeki UNO
  2003-03-27 19:48 ` Reiner Steib
  0 siblings, 1 reply; 3+ messages in thread
From: Shigeki UNO @ 2003-03-27 18:42 UTC (permalink / raw)


I just found that I'm having the following trouble. 

When I try to reply one mail with {r,R,Sw,SW,Sv,SV} key bindings I've got these
errors. (ShengHuo ZHU, Don't mind it. I'm just givin' examples.)
There were no such errors in "Oort Gnus v0.16 Emacs/21.3.50".

Any clues? 

[r]
Debugger entered--Lisp error: (wrong-type-argument stringp t)
  string-match(t "zsh@cs.rochester.edu")
  rmail-dont-reply-to("ShengHuo ZHU <zsh@cs.rochester.edu>")
  message-get-reply-headers(nil nil)
  message-reply(nil nil)
  gnus-summary-reply(nil)
  call-interactively(gnus-summary-reply)

[R]
Debugger entered--Lisp error: (wrong-type-argument stringp t)
  string-match(t "zsh@cs.rochester.edu")
  rmail-dont-reply-to("ShengHuo ZHU <zsh@cs.rochester.edu>")
  message-get-reply-headers(nil nil)
  message-reply(nil nil)
  gnus-summary-reply((546) nil)
  gnus-summary-reply-with-original(nil)
  call-interactively(gnus-summary-reply-with-original)

[Sw]
Debugger entered--Lisp error: (wrong-type-argument stringp t)
  string-match(t "ding@gnus.org")
  rmail-dont-reply-to("ding@gnus.org")
  message-get-reply-headers(t nil)
  message-reply(nil t)
  gnus-summary-reply(nil t)
  gnus-summary-wide-reply(nil)
  call-interactively(gnus-summary-wide-reply)

[SW]
Debugger entered--Lisp error: (wrong-type-argument stringp t)
  string-match(t "ding@gnus.org")
  rmail-dont-reply-to("ding@gnus.org")
  message-get-reply-headers(t nil)
  message-reply(nil t)
  gnus-summary-reply((546) t)
  gnus-summary-reply-with-original(nil t)
  gnus-summary-wide-reply-with-original(nil)
  call-interactively(gnus-summary-wide-reply-with-original)

[Sv]
Debugger entered--Lisp error: (wrong-type-argument stringp t)
  string-match(t "ding@gnus.org")
  rmail-dont-reply-to("ding@gnus.org")
  message-get-reply-headers(t nil)
  message-reply(nil t)
  gnus-summary-reply(nil t (546))
  gnus-summary-very-wide-reply(nil)
  call-interactively(gnus-summary-very-wide-reply)

[SV]
Debugger entered--Lisp error: (wrong-type-argument stringp t)
  string-match(t "ding@gnus.org")
  rmail-dont-reply-to("ding@gnus.org")
  message-get-reply-headers(t nil)
  message-reply(nil t)
  gnus-summary-reply((546) t (546))
  gnus-summary-very-wide-reply-with-original(nil)
  call-interactively(gnus-summary-very-wide-reply-with-original)

---
Shigeki UNO




^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Can't reply
  2003-03-27 18:42 Can't reply Shigeki UNO
@ 2003-03-27 19:48 ` Reiner Steib
  2003-03-28  6:39   ` Shigeki UNO
  0 siblings, 1 reply; 3+ messages in thread
From: Reiner Steib @ 2003-03-27 19:48 UTC (permalink / raw)


On Thu, Mar 27 2003, Shigeki UNO wrote:

> Debugger entered--Lisp error: (wrong-type-argument stringp t)
>   string-match(t "zsh@cs.rochester.edu")
>   rmail-dont-reply-to("ShengHuo ZHU <zsh@cs.rochester.edu>")
>   message-get-reply-headers(nil nil)
>   message-reply(nil nil)
>   gnus-summary-reply(nil)
>   call-interactively(gnus-summary-reply)

What is your value of `rmail-dont-reply-to-names' (use `C-h v
rmail-dont-reply-to-names RET' to check it)?

,----
| ELISP> (setq rmail-dont-reply-to-names t)
| t
| ELISP> (rmail-dont-reply-to "ShengHuo ZHU <zsh@cs.rochester.edu>")
| *** Eval error ***  Wrong type argument: stringp, t
`----

This gives me a similar backtrace:

,----
| Debugger entered--Lisp error: (wrong-type-argument stringp t)
|   string-match(t "zsh@cs.rochester.edu")
|   rmail-dont-reply-to("ShengHuo ZHU <zsh@cs.rochester.edu>")
|   eval((rmail-dont-reply-to "ShengHuo ZHU <zsh@cs.rochester.edu>"))
`----

Bye, Reiner.
-- 
       ,,,
      (o o)
---ooO-(_)-Ooo--- PGP key available via WWW   http://rsteib.home.pages.de/




^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Can't reply
  2003-03-27 19:48 ` Reiner Steib
@ 2003-03-28  6:39   ` Shigeki UNO
  0 siblings, 0 replies; 3+ messages in thread
From: Shigeki UNO @ 2003-03-28  6:39 UTC (permalink / raw)


Reiner Steib <4.uce.03.r.s@nurfuerspam.de> writes:

> On Thu, Mar 27 2003, Shigeki UNO wrote:
>
>> Debugger entered--Lisp error: (wrong-type-argument stringp t)
>>   string-match(t "zsh@cs.rochester.edu")
>>   rmail-dont-reply-to("ShengHuo ZHU <zsh@cs.rochester.edu>")
>>   message-get-reply-headers(nil nil)
>>   message-reply(nil nil)
>>   gnus-summary-reply(nil)
>>   call-interactively(gnus-summary-reply)
>
> What is your value of `rmail-dont-reply-to-names' (use `C-h v
> rmail-dont-reply-to-names RET' to check it)?

Duh, _I made a failure of it_. 

I looked into .gnus.el and found the following line.

$HOME/.gnus.el

(setq message-dont-reply-to-names t)

After deletion of this line, reply functions _work_ without any problems.

I'm an idiot. :(  Sorry for troubling you.
  
Regards,

---
Shigeki UNO




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2003-03-28  6:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-03-27 18:42 Can't reply Shigeki UNO
2003-03-27 19:48 ` Reiner Steib
2003-03-28  6:39   ` Shigeki UNO

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).