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
|
/*++
/* NAME
/* opened 3
/* SUMMARY
/* log that a message was opened
/* SYNOPSIS
/* #include <opened.h>
/*
/* void opened(queue_id, sender, size, nrcpt, format, ...)
/* const char *queue_id;
/* const char *sender;
/* long size;
/* int nrcpt;
/* const char *format;
/* DESCRIPTION
/* opened() logs that a message was successfully delivered.
/*
/* vopened() implements an alternative interface.
/*
/* Arguments:
/* .IP queue_id
/* Message queue ID.
/* .IP sender
/* Sender address.
/* .IP size
/* Message content size.
/* .IP nrcpt
/* Number of recipients.
/* .IP format
/* Format of optional text.
/* DIAGNOSTICS
/* Fatal: out of memory.
/* BUGS
/* Should be replaced by routines with an attribute-value based
/* interface instead of an interface that uses a rigid argument list.
/* LICENSE
/* .ad
/* .fi
/* The Secure Mailer license must be distributed with this software.
/* AUTHOR(S)
/* Wietse Venema
/* IBM T.J. Watson Research
/* P.O. Box 704
/* Yorktown Heights, NY 10598, USA
/*
/* Wietse Venema
/* Google, Inc.
/* 111 8th Avenue
/* New York, NY 10011, USA
/*--*/
/* System library. */
#include <sys_defs.h>
#include <stdlib.h> /* 44BSD stdarg.h uses abort() */
#include <stdarg.h>
/* Utility library. */
#include <msg.h>
#include <vstring.h>
/* Global library. */
#include <opened.h>
#include <info_log_addr_form.h>
/* opened - log that a message was opened */
void opened(const char *queue_id, const char *sender, long size, int nrcpt,
const char *fmt,...)
{
va_list ap;
va_start(ap, fmt);
vopened(queue_id, sender, size, nrcpt, fmt, ap);
va_end(ap);
}
/* vopened - log that a message was opened */
void vopened(const char *queue_id, const char *sender, long size, int nrcpt,
const char *fmt, va_list ap)
{
VSTRING *text = vstring_alloc(100);
#define TEXT (vstring_str(text))
vstring_vsprintf(text, fmt, ap);
msg_info("%s: from=<%s>, size=%ld, nrcpt=%d%s%s%s",
queue_id, info_log_addr_form_sender(sender), size, nrcpt,
*TEXT ? " (" : "", TEXT, *TEXT ? ")" : "");
vstring_free(text);
}
|