"Fossies" - the Fresh Open Source Software Archive 
Member "courier-1.2.2/libs/sqwebmail/acl.h" (20 Jan 2022, 550 Bytes) of package /linux/misc/courier-1.2.2.tar.bz2:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "acl.h" see the
Fossies "Dox" file reference documentation.
1 /*
2 */
3 #ifndef acl_h
4 #define acl_h
5
6 /*
7 ** Copyright 2004 Double Precision, Inc. See COPYING for
8 ** distribution information.
9 */
10
11
12 #include "config.h"
13
14 #include "maildir/maildiraclt.h"
15 #include "maildir/maildirinfo.h"
16
17 int acl_read(maildir_aclt_list *l, const char *folder,
18 char **owner);
19 int acl_read2(maildir_aclt_list *l,
20 struct maildir_info *minfo,
21 char **owner);
22 void acl_computeRights(maildir_aclt_list *l, char *rights,
23 const char *owner);
24
25 void acl_computeRightsOnFolder(const char *folder, char *rights);
26
27 #endif