--- lmtp2nntp.c 2001/08/27 14:25:33 1.28
+++ lmtp2nntp.c 2001/08/27 14:29:11 1.29
@@ -298,7 +298,6 @@
}
/* remaining arguments are Groupargs */
for (i = optind; i < argc; i++) {
- /*fprintf(stderr, "DEBUG: argv[i] = ***%s***\n", argv[i]); */
argz_add(&ctx->azGroupargs, &ctx->asGroupargs, argv[i]);
}
@@ -433,16 +432,13 @@
do {
bOk = TRUE;
if (connect(ctx->ns[i].s, ctx->ns[i].sa->sa_buf, ctx->ns[i].sa->sa_len) < 0) {
- /*fprintf(stderr, "DEBUG: connect failed: %s\n", strerror(errno)); */
bOk = FALSE;
}
if (bOk && ((ctx->ns[i].nntp = nntp_create(ctx->ns[i].s, ctx->ns[i].s,
ctx->option_tracing ? &nntp_io : NULL)) == NULL)) {
- /*fprintf(stderr, "DEBUG: nntp_create failed: %s\n", strerror(errno)); */
bOk = FALSE;
}
if (bOk && ((rc = nntp_init(ctx->ns[i].nntp)) != NNTP_OK)) {
- /*fprintf(stderr, "DEBUG: nntp_init failed: %s\n", nntp_error(rc)); */
bOk = FALSE;
}
if (bOk)
@@ -975,13 +971,6 @@
}
}
-#if 0 /*DEBUG and LOGGING paragraph */
- rcpt = NULL;
- while ((rcpt = argz_next(ctx->msg->azNewsgroups, ctx->msg->asNewsgroups, rcpt)) != NULL) {
- fprintf(stderr, "DEBUG: commited group ***%s***\n", rcpt);
- }
-#endif
-
/* RFC0821 4.2.1. REPLY CODES BY FUNCTION GROUPS 554 Transaction failed
* RFC1893 2. Status Codes 5.X.X Permanent Failure
* RFC1893 3.5 Network and Routing Status X.6.5 Conversion Failed
@@ -997,11 +986,9 @@
}
return LMTP_OK;
}
- /*fprintf(stderr, "DEBUG: after msg_join\n"); */
bSuccess = NNTP_EOF; /* assume a hard error for the worst case */
for (i = 0; i < ctx->nsc; i++) {
- /*fprintf(stderr, "DEBUG: trying service %s\n", ctx->ns[i].h); */
switch (ctx->option_deliverymode) {
case DELIVERYMODE_FAKE:
break;
|