equal
deleted
inserted
replaced
5 VirtualMailManager.constants |
5 VirtualMailManager.constants |
6 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
6 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
7 |
7 |
8 VirtualMailManager's constants: |
8 VirtualMailManager's constants: |
9 * version information |
9 * version information |
|
10 * upper and lower limits MIN_* / MAX_* |
10 * exit codes |
11 * exit codes |
11 * error codes |
12 * error codes |
12 """ |
13 """ |
13 # version information |
14 # version information |
14 |
15 |
18 VERSION = '0.5.2' |
19 VERSION = '0.5.2' |
19 __author__ = AUTHOR |
20 __author__ = AUTHOR |
20 __copyright__ = 'Copyright (c) 2007-2010 %s' % __author__ |
21 __copyright__ = 'Copyright (c) 2007-2010 %s' % __author__ |
21 __date__ = RELDATE |
22 __date__ = RELDATE |
22 __version__ = VERSION |
23 __version__ = VERSION |
|
24 |
|
25 |
|
26 # limits |
|
27 |
|
28 MIN_GID = 70000 |
|
29 MIN_UID = 70000 |
23 |
30 |
24 |
31 |
25 # exit codes |
32 # exit codes |
26 |
33 |
27 EX_SUCCESS = 0 |
34 EX_SUCCESS = 0 |