Custom Query (44 matches)
Results (37 - 39 of 44)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#132 | fixed | auth_krb5: use the modern function calls to get the Kerberos error | ||
Description |
auth_krb5 needs to be ported to the modern function calls to get the Kerberos error instead of using com_err, which will eliminate the need for including com_err.h or et/com_err.h which are no longer part of the official Kerberos API. This requires a replacement for krb5_{get,free}_error_message on older systems. rra-c-util does this in portable/krb5.h and portable/krb5-extra.c (along with a ton of other Kerberos portability stuff). It would be possible to add a subset of that logic, although it will require some surgery to fit into the INN compilation framework. INN's configure will then no longer have to clear KRB5_LIBS if neither et/com_err.h nor com_err.h could be found and --with-krb5 was not given. |
|||
#139 | fixed | Improve the colon-space check in headers | ||
Description |
Posting the below article generates that log in news.err: Sep 15 21:37:08 news nnrpd[29674]: Bad header copying headers for Perl: 'message-id <test@…>' nnrpd should check that syntax before calling the Perl filter. POST 340 Ok, recommended message-ID <mt9rvr$sva$1@…> From: <test@…> Newsgroups: trigofacile.test Subject: test Date: Mon, 14 Sep 2015 15:40:14 +0000 (UTC) message-id <test@…> Test . 441 437 No colon-space in "message-id <test@…>" header |
|||
#144 | fixed | inews rejects valid headers | ||
Description |
inews wrongly rejects articles that contain header fields whose length exceeds 998 bytes. That length should be the one of a header line, not a whole header field. Reported by Jeffery Small in inn-workers. |