blob: 247645497440df1c8a2edf3540d3ce94309fef8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef RECEIVED_H
#define RECEIVED_H
#include "qmail.h"
void received(const struct qmail *qqt, const char *protocol,
const char *local, const char *remoteip, const char *remotehost,
const char *remoteinfo, const char *helo
);
void received_authed(const struct qmail *qqt, const char *protocol,
const char *local);
void xsmtpsession(const struct qmail *qqt,
const char *remoteinfo, const char *remotesession);
#endif
|