Check-in Number:
|
926 | |
Date: |
2001-Sep-11 08:41:59 (local)
2001-Sep-11 06:41:59 (UTC) |
User: | thl |
Branch: | |
Comment: |
RFC1891 ENVID, 6.2 is not the way to go findind out the queue-ID from
sendmail. It is a information stored in the message envelope and received and
forwarded by sendmail but it has no relationship to the queue-ID. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/lmtp2nntp/00TODO 1.31 -> 1.32
--- 00TODO 2001/09/10 12:50:35 1.31
+++ 00TODO 2001/09/11 06:41:59 1.32
@@ -16,7 +16,7 @@
AUTHORS
THANKS - contributors
-[B<-i> I<messageid>] use L2 for logging, grab ID through RFC1891 ENVID, 6.2
+[B<-i> I<messageid>]
CU/CUS
|
|
ossp-pkg/lmtp2nntp/lmtp2nntp.c 1.49 -> 1.50
--- lmtp2nntp.c 2001/09/10 14:11:33 1.49
+++ lmtp2nntp.c 2001/09/11 06:41:59 1.50
@@ -88,8 +88,6 @@
#define STDSTRLEN 128
#define MAXNEWSSERVICES 16
-//FIXME extern void lmtp_debug_dumplmtp(lmtp_t *lmtp);
-
static lmtp_rc_t lmtp_cb_lhlo(lmtp_t *lmtp, lmtp_io_t *io, lmtp_req_t *req, void *ctx);
static lmtp_rc_t lmtp_cb_mail(lmtp_t *lmtp, lmtp_io_t *io, lmtp_req_t *req, void *ctx);
static lmtp_rc_t lmtp_cb_rcpt(lmtp_t *lmtp, lmtp_io_t *io, lmtp_req_t *req, void *ctx);
@@ -901,8 +899,7 @@
"ENHANCEDSTATUSCODES\n" /* RFC2034 */
"DSN\n" /* RFC1894 */
"PIPELINING\n" /* RFC1854 */
- "8BITMIME\n" /* RFC1652 */
- "ENVID", /* FIXME */
+ "8BITMIME\n", /* RFC1652 */
ctx->uname.nodename,
ctx->session.lhlo_domain);
res.statuscode = "250";
|
|