ossp-pkg/lmtp2nntp/nntp.c 1.18 -> 1.19
--- nntp.c 2001/08/27 14:49:32 1.18
+++ nntp.c 2001/08/28 12:49:33 1.19
@@ -141,7 +141,7 @@
/* prepare for the INN kludge using 441 returns for other things but
* "Duplicate". Typical welcome string is "200 host InterNetNews NNRP
- * server INN 2.3.2 ready (posting * ok)."
+ * server INN 2.3.2 ready (posting ok)."
*/
if (strncmp(line, "200", 3) == 0 && strstr(line, " INN ") != NULL) {
nntp->kludgeinn441dup = TRUE;
@@ -256,7 +256,11 @@
* > POST
* < 340 Ok, recommended ID <...>
*
- * In other words, INN *requires* the use of "MODE READER".
+ * In other words, INN *requires* the use of "MODE READER". This has been
+ * verified when INN is configured for expecting both news readers and
+ * feeders from a given source address. When INN is configured to expect
+ * readers only for a given source address the use of "MODE READER" is
+ * optional.
*/
*line = NUL;
strcat(line, "MODE READER");
@@ -319,6 +323,7 @@
* 441 Duplicate "Newsgroups" header
* 441 Required "Subject" header is missing
* 441 Obsolete "Received" header
+ * 441 Line # too long
*
* In other words, INN uses 441 for other status messages as well.
*/
|
|