summaryrefslogtreecommitdiffstats
path: root/received.h
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2020-11-20 01:03:21 +0100
committermanuel <manuel@mausz.at>2020-11-20 01:03:21 +0100
commitddb3069bf287af8f0a634110b7bb95203f147b51 (patch)
tree56a067665efcb7262819b8126bd0aa21ea7938c9 /received.h
parent761862206401416f69aee98e81d67fb749fb9607 (diff)
downloadqmail-ddb3069bf287af8f0a634110b7bb95203f147b51.tar.gz
qmail-ddb3069bf287af8f0a634110b7bb95203f147b51.tar.bz2
qmail-ddb3069bf287af8f0a634110b7bb95203f147b51.zip
Add X-UD-Smtp-Session to unauthed smtp session aswell
Diffstat (limited to 'received.h')
-rw-r--r--received.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/received.h b/received.h
index 7c98c28..473c3ca 100644
--- a/received.h
+++ b/received.h
@@ -1,7 +1,13 @@
1#ifndef RECEIVED_H 1#ifndef RECEIVED_H
2#define RECEIVED_H 2#define RECEIVED_H
3 3
4extern void received(); 4#include "qmail.h"
5extern void received_authed(); 5
6void received(const struct qmail *qqt, const char *protocol,
7 const char *local, const char *remoteip, const char *remotehost,
8 const char *remoteinfo, const char *remotesession, const char *helo
9);
10void received_authed(const struct qmail *qqt, const char *protocol,
11 const char *local, const char *remoteinfo, const char *remotesession);
6 12
7#endif 13#endif