Re: Mark articles/replies in thread in which I replied previously

James Thomas <[email protected]> Sun, 11 Aug 2024 09:59:45 +0530
Newsgroups gmane.emacs.gnus.general
Message-ID <[email protected]>
Björn Bidar wrote:

> James Thomas <[email protected]> writes:
>
>> Björn Bidar wrote:
>>
>>> I want to mark articles/replies in a thread that I replied previously so
>>> I don't loose track of threads I replied too.
>>
>>> I want that the whole thread will have the reply mark and not just to
>>> the exact message I replied to.
>>
>> This works:
>>
>> / r
>> M P b
>> M-& / T
>
> How would you do it in a function? Say in a reply send message hook?

Well, every command in Emacs, including these, does have an underlying
function; and if even that's bothersome there's keyboard macros.

But this feels like the 'XY problem': Are you trying to do a 'mail
merge'? If so, you could try something like this:

M P b
M-& R
M-x ibuffer
% n *unsent RET (or: % m message RET)
(kill the reply text)
W (progn (goto-char (point-max)) (yank) (message-send-and-exit))

>> and if required: M P b
>>
>> (But I think I saw the scope for at least one bug report, while figuring
>> it out...)
>
>
> At least? For what exactly?

Well, i'm wondering why this doesn't seem to work as advertised:

(setq gnus-process-mark-toggle nil)
/ r
M P b
/ w
M-& T #

> PS: Why are all the Gnus backends prefixed with nn?

Started with 'nntp', which was legitimate.

Regards,
James