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
|
/*++
/* NAME
/* deliver_attr 3
/* SUMMARY
/* initialize message delivery attributes
/* SYNOPSIS
/* #include "virtual.h"
/*
/* void deliver_attr_init(attrp)
/* DELIVER_ATTR *attrp;
/*
/* void deliver_attr_dump(attrp)
/* DELIVER_ATTR *attrp;
/*
/* void deliver_attr_free(attrp)
/* DELIVER_ATTR *attrp;
/* DESCRIPTION
/* deliver_attr_init() initializes a structure with message delivery
/* attributes to a known initial state (all zeros).
/*
/* deliver_attr_dump() logs the contents of the given attribute list.
/*
/* deliver_attr_free() releases memory that was allocated by
/* deliver_attr_init().
/* 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
/*--*/
/* System library. */
#include <sys_defs.h>
/* Utility library. */
#include <msg.h>
#include <vstream.h>
/* Application-specific. */
#include "virtual.h"
/* deliver_attr_init - set message delivery attributes to all-zero state */
void deliver_attr_init(DELIVER_ATTR *attrp)
{
attrp->level = 0;
attrp->fp = 0;
attrp->queue_name = 0;
attrp->queue_id = 0;
attrp->offset = 0;
attrp->sender = 0;
RECIPIENT_ASSIGN(&(attrp->rcpt), 0, 0, 0, 0, 0);
attrp->user = 0;
attrp->delivered = 0;
attrp->relay = 0;
attrp->why = dsb_create();
}
/* deliver_attr_dump - log message delivery attributes */
void deliver_attr_dump(DELIVER_ATTR *attrp)
{
msg_info("level: %d", attrp->level);
msg_info("path: %s", VSTREAM_PATH(attrp->fp));
msg_info("fp: 0x%lx", (long) attrp->fp);
msg_info("queue_name: %s", attrp->queue_name ? attrp->queue_name : "null");
msg_info("queue_id: %s", attrp->queue_id ? attrp->queue_id : "null");
msg_info("offset: %ld", attrp->offset);
msg_info("sender: %s", attrp->sender ? attrp->sender : "null");
msg_info("recipient: %s", attrp->rcpt.address ? attrp->rcpt.address : "null");
msg_info("user: %s", attrp->user ? attrp->user : "null");
msg_info("delivered: %s", attrp->delivered ? attrp->delivered : "null");
msg_info("relay: %s", attrp->relay ? attrp->relay : "null");
msg_info("why: %s", attrp->why ? "buffer" : "null");
}
/* deliver_attr_free - release storage */
void deliver_attr_free(DELIVER_ATTR *attrp)
{
dsb_free(attrp->why);
}
|