Sysop: | Amessyroom |
---|---|
Location: | Fayetteville, NC |
Users: | 27 |
Nodes: | 6 (0 / 6) |
Uptime: | 38:05:47 |
Calls: | 631 |
Calls today: | 2 |
Files: | 1,187 |
D/L today: |
22 files (29,767K bytes) |
Messages: | 173,683 |
I don't know if any readers use the 'recommended Message-ID' line for anything, but i
so I guess the question is, is there a way to not send this info at all?
In article <82047ed9fe64034c6e2327f0131dddae8f595c4e@i2pn2.org> Retro Guy wrote:
I don't know if any readers use the 'recommended Message-ID' line for anything, but i
tin uses it
a) as message-id (not an issue if the posting ends up with a diffrent id)
b) for cancel-locks (that will be an issue)
tinews (nntp inews in perl) uses it
a) as message-id (not an issue if the posting ends up with a diffrent id)
b) for cancel-locks (that will be an issue)
c) for header signing (that will be an issue)
so I guess the question is, is there a way to not send this info at all?
then the user/reader may still send it's own message-id and you should not overwirte it as that may break cancel-locks or header signing.
On my servers if the client sends it's own message-id, that is the mid used >for the message, so if I'm reading properly it should not be an issue in
most cases. Hoping I understand correctly :)
Retro Guy <retroguy@novabbs.com> wrote or quoted:
On my servers if the client sends it's own message-id, that is the mid used >>for the message, so if I'm reading properly it should not be an issue in >>most cases. Hoping I understand correctly :)
Yeah, it's the same here. I write the message-ID I want in my
headers. Then I send my message with a small Python script.
That script shows the messages from the news server verbatim:
|b'340 Ok, recommended ID <A>\r\n'
|b'240 Article posted <B>\r\n'
, where <A> is the ID the server recommends and <B> is the
message-ID from my header lines.
'recommended Message-ID' line [...]
is there a way to not send this info at all?
|b'340 Ok, recommended ID <A>\r\n'
|b'240 Article posted <B>\r\n'
What I want to avoid is a client using the "Ok, recommended ID", not
sending a MID, then relying on that recommended ID. My server creates a MID for messages that do NOT contain a MID, after the message is received, but before the connection is closed.
Hi Retro Guy,
'recommended Message-ID' line [...]
is there a way to not send this info at all?
This information is always sent by INN and cannot be deactivated.
<snip>|b'340 Ok, recommended ID <A>\r\n'
|b'240 Article posted <B>\r\n'
What I want to avoid is a client using the "Ok, recommended ID", not
sending a MID, then relying on that recommended ID. My server creates a
MID
for messages that do NOT contain a MID, after the message is received,
but
before the connection is closed.
A news client is not supposed to do that. The data following the 340
and 240 codes are just comments, with no special meaning defined by the
NNTP protocol. See the example in RFC 3977:
If a news client wants to parse the comments for possible Message-IDs as
INN and maybe other news servers provide them, let's trust the developer
to implement it right and take the one of the 240 response. That would otherwise be a bug in the implementation.
And if not implemented, you don't mind.