~ubuntu-branches/ubuntu/karmic/cyrus-imapd-2.2/karmic

« back to all changes in this revision

Viewing changes to lib/libcyr_cfg.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2006-07-11 18:51:39 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060711185139-gl3oe4tppp7g3euf
Tags: 2.2.13-4ubuntu1
Synchronize with Debian unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 *
41
41
 */
42
42
/*
43
 
 * $Id: libcyr_cfg.h,v 1.7 2004/03/09 15:05:58 ken3 Exp $
 
43
 * $Id: libcyr_cfg.h,v 1.9 2005/03/23 19:44:59 shadow Exp $
44
44
 */
45
45
 
46
46
#ifndef INCLUDED_LIBCYR_CFG_H
93
93
    CYRUSOPT_VIRTDOMAINS,
94
94
    /* BDB cache size (512KB) */
95
95
    CYRUSOPT_BERKELEY_CACHESIZE,
 
96
    /* authorization mechanism (unix) */
 
97
    CYRUSOPT_AUTH_MECH,
96
98
    /* BDB max locks (50000) */
97
99
    CYRUSOPT_BERKELEY_LOCKS_MAX,
98
100
    /* BDB max txns (100) */
104
106
 
105
107
union cyrus_config_value {
106
108
    const char *s; /* string */
107
 
    int i; /* int */
108
 
    int b; /* switch */
 
109
    long i; /* int */
 
110
    long b; /* switch */
109
111
};
110
112
 
111
113
struct cyrusopt_s {