1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
#include <bglibs/sysdeps.h>
#include <string.h>
#include <sys/stat.h>
#include <unistd.h>
#include <bglibs/msg.h>
#include <bglibs/striter.h>
#include "mailfront.h"
static response resp = { 250, 0 };
static str tmp;
static unsigned long databytes = 0;
static const response* reset(void)
{
databytes = 0;
return 0;
}
static int str_cat_params(str* s, const str* param)
{
striter i;
striter_loop(&i, param, 0)
if (!str_cat3s(s, " [", i.startptr, "]")) return 0;
return 1;
}
static const response* sender(str* s, str* params)
{
str_copys(&tmp, "Sender='");
str_cat(&tmp, s);
str_cats(&tmp, "'.");
str_cat_params(&tmp, params);
resp.message = tmp.s;
return &resp;
}
static const response* recipient(str* r, str* params)
{
str_copys(&tmp, "Recipient='");
str_cat(&tmp, r);
str_cats(&tmp, "'.");
str_cat_params(&tmp, params);
resp.message = tmp.s;
return &resp;
}
static const response* data_block(const char* bytes, unsigned long len)
{
if (databytes == 0) {
/* First line is always Received, log the first two lines. */
const char* ch;
ch = strchr(bytes, '\n');
str_copyb(&tmp, bytes, ch-bytes);
bytes = ch + 1;
if ((ch = strchr(bytes, '\n')) != 0)
str_catb(&tmp, bytes, ch-bytes);
msg1(tmp.s);
}
databytes += len;
return 0;
}
static const response* message_end(int fd)
{
struct stat st;
char buf[1024];
long rd;
char* lf;
char* ptr;
if (fd >= 0) {
/* Log the first two lines of the message, usually a Received: header */
lseek(fd, 0, SEEK_SET);
rd = read(fd, buf, sizeof buf - 1);
buf[rd] = 0;
if ((lf = strchr(buf, LF)) != 0) {
str_copyb(&tmp, buf, lf-buf);
ptr = lf + 1;
if ((lf = strchr(ptr, LF)) != 0)
str_catb(&tmp, ptr, lf-ptr);
msg1(tmp.s);
}
fstat(fd, &st);
databytes = st.st_size;
}
str_copys(&tmp, "Received ");
str_catu(&tmp, databytes);
str_cats(&tmp, " bytes.");
resp.message = tmp.s;
return &resp;
(void)fd;
}
struct plugin backend = {
.version = PLUGIN_VERSION,
.reset = reset,
.sender = sender,
.recipient = recipient,
.data_block = data_block,
.message_end = message_end,
};
|