comparison src/context.h @ 2:32b57406b656

initial version
author carl
date Fri, 10 Mar 2006 10:47:12 -0800
parents 616666e2f34c
children 01268466f0dc
comparison
equal deleted inserted replaced
1:45c8592d5d13 2:32b57406b656
11 // the only mutable stuff once it has been loaded from the config file 11 // the only mutable stuff once it has been loaded from the config file
12 int reference_count; // protected by the global config_mutex 12 int reference_count; // protected by the global config_mutex
13 // all the rest is constant after loading from the config file 13 // all the rest is constant after loading from the config file
14 int generation; 14 int generation;
15 time_t load_time; 15 time_t load_time;
16 string_set config_files;
16 string_map env_from; // map senders to archive mailboxes 17 string_map env_from; // map senders to archive mailboxes
17 string_map rcpt_to; // map recipients to archive mailboxes 18 string_map rcpt_to; // map recipients to archive mailboxes
18 19
19 CONFIG(); 20 CONFIG();
20 ~CONFIG(); 21 ~CONFIG();