summaryrefslogtreecommitdiff
path: root/usr.sbin/smtpd/smtpd.h
diff options
context:
space:
mode:
authorGilles Chehade <gilles@cvs.openbsd.org>2009-01-29 15:20:35 +0000
committerGilles Chehade <gilles@cvs.openbsd.org>2009-01-29 15:20:35 +0000
commite2b18f0d5ff0167bc4b80dcf25048e540c91bdf2 (patch)
treefe409b0dbed0973526b5cbcc13e17c99b6a40b28 /usr.sbin/smtpd/smtpd.h
parent35cc60cd8cea267c000de42a3b430ac40a4148eb (diff)
Received header line was incomplete for mail submitted through the enqueuer
as well as for some outgoing messages, this is fixed now
Diffstat (limited to 'usr.sbin/smtpd/smtpd.h')
-rw-r--r--usr.sbin/smtpd/smtpd.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/smtpd.h b/usr.sbin/smtpd/smtpd.h
index c3a588594f5..0199cbbfc1e 100644
--- a/usr.sbin/smtpd/smtpd.h
+++ b/usr.sbin/smtpd/smtpd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: smtpd.h,v 1.59 2009/01/29 14:25:55 gilles Exp $ */
+/* $OpenBSD: smtpd.h,v 1.60 2009/01/29 15:20:34 gilles Exp $ */
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
@@ -490,6 +490,10 @@ struct batch {
char hostname[MAXHOSTNAMELEN];
char errorline[MAX_LINE_SIZE];
+ char session_helo[MAXHOSTNAMELEN];
+ char session_hostname[MAXHOSTNAMELEN];
+ struct sockaddr_storage session_ss;
+
int8_t getaddrinfo_error;
struct mxhost mxarray[MXARRAYSIZE*2];
u_int8_t mx_cnt;