Mercurial > sm-archive
comparison src/sm-archive.h @ 8:ed73e6361570 stable-1-0
initial version
author | carl |
---|---|
date | Fri, 10 Mar 2006 12:55:07 -0800 |
parents | 32b57406b656 |
children | 75e1a9bcbc2e |
comparison
equal
deleted
inserted
replaced
7:5241a079fe03 | 8:ed73e6361570 |
---|---|
11 struct mlfiPriv | 11 struct mlfiPriv |
12 { | 12 { |
13 // connection specific data | 13 // connection specific data |
14 CONFIG *pc; // global filtering configuration | 14 CONFIG *pc; // global filtering configuration |
15 // message specific data | 15 // message specific data |
16 char *mailaddr; // envelope from value | 16 char *mailaddr; // envelope from value |
17 char *queueid; // sendmail queue id | 17 char *queueid; // sendmail queue id |
18 bool processed_from; // looked at env_from address | 18 string_set targets; // targets to add at eom, strings are owned by the config |
19 mlfiPriv(); | 19 mlfiPriv(); |
20 ~mlfiPriv(); | 20 ~mlfiPriv(); |
21 void reset(bool final = false); // for a new message | 21 void reset(bool final = false); // for a new message |
22 }; | 22 }; |
23 | 23 |