Open
Bug 3764
Opened 26 years ago
Updated 2 years ago
Omit malformed References from outgoing news messages
Categories
(MailNews Core :: Composition, defect)
MailNews Core
Composition
Tracking
(Not tracked)
NEW
People
(Reporter: phil, Unassigned)
References
(Blocks 1 open bug, )
Details
This is another problem brought up by the Good Netkeeping Seal of Approval
evaluation (see URL above).
When building the References header for outgoing news messages, we're supposed
to find invalid elements in the References list and drop them on the floor. The
requirement seems to be that the msg-id have the form <stuff@stuff>
Reporter | ||
Comment 1•26 years ago
|
||
JF, is this more a compose bug, or more a news bug (for sspitzer)?
Reporter | ||
Updated•26 years ago
|
Target Milestone: M8
Reporter | ||
Comment 2•26 years ago
|
||
M8
Updated•26 years ago
|
Assignee: ducarroz → rhp
Comment 3•26 years ago
|
||
reaasign to rhp
Updated•26 years ago
|
Status: NEW → ASSIGNED
Updated•25 years ago
|
Target Milestone: M8 → M12
Comment 4•25 years ago
|
||
Bumping out for now...
Seth: I think the issue is this:
7e Fails to omit `broken' Message-IDs.
How can you tell if its invalid or not?
Bumping way out...this is fine tuning.
- rhp
I believe this is cross platform? I'm going to change platform/OS from PC/WinNT
to All.
Updated•25 years ago
|
QA Contact: scurtis → huang
Comment 7•25 years ago
|
||
Change QA Contact to me since it's my feature now.
Updated•25 years ago
|
Target Milestone: M14 → M20
Updated•24 years ago
|
Target Milestone: M20 → Future
Comment 9•24 years ago
|
||
The gnksa.org website contains a small perl script that checks for malformed
references. It may be a useful reference. http://www.gnksa.org/restrict-refs.pl
Comment 10•24 years ago
|
||
That Perl script contains three different methods of weeding out bad references
(the first two are commented out):
Relatively permissive:
@refs = grep {/^<.+>$/} split /\s+/, $refs;
Relatively strict:
@refs = grep {/^<[^<>\@\s]+\@\S+\.\S+>$/} split /\s+/, $refs;
Very strict (RFC 1036bis):
@refs = grep {/^<[^<>!,;:\\\@\"\s]+\@\S+\.\S+>$/} split /\s+/, $refs;
Comment 12•23 years ago
|
||
Composition -> Sheela, Ccing Stephen since this is for news.
QA Contact: huang → sheelar
Updated•23 years ago
|
Target Milestone: mozilla0.9.7 → mozilla1.0.1
Updated•23 years ago
|
QA Contact: sheelar → stephend
Updated•20 years ago
|
Product: MailNews → Core
Comment 13•17 years ago
|
||
unassigning this bug since assignee hasn't touched it 6.5 years.
Assignee: ducarroz → nobody
Status: ASSIGNED → NEW
QA Contact: stephend → composition
Target Milestone: mozilla1.0.1 → ---
Assignee | ||
Updated•16 years ago
|
Product: Core → MailNews Core
Updated•7 years ago
|
Severity: normal → minor
Priority: P3 → --
Comment 14•2 years ago
|
||
The NetNews RFC got revised since, what is needed now is conformance with https://www.rfc-editor.org/rfc/rfc5536#section-3.2.10 that did take in account GNSKA.
Updated•2 years ago
|
Severity: minor → S4
You need to log in
before you can comment on or make changes to this bug.
Description
•