One Hat Cyber Team
Your IP :
3.139.104.134
Server IP :
103.133.214.160
Server :
Linux venus.ewebguru.net 4.18.0-553.30.1.el8_10.x86_64 #1 SMP Tue Nov 26 02:30:26 EST 2024 x86_64
Server Software :
Apache/2
PHP Version :
8.1.30
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
include
/
dovecot
/
View File Name :
acl-plugin.h
#ifndef ACL_PLUGIN_H #define ACL_PLUGIN_H #include "mail-user.h" #include "mail-storage-private.h" #include "mailbox-list-private.h" #include "acl-storage.h" #define ACL_CONTEXT(obj) \ MODULE_CONTEXT(obj, acl_storage_module) #define ACL_CONTEXT_REQUIRE(obj) \ MODULE_CONTEXT_REQUIRE(obj, acl_storage_module) #define ACL_LIST_CONTEXT(obj) \ MODULE_CONTEXT(obj, acl_mailbox_list_module) #define ACL_LIST_CONTEXT_REQUIRE(obj) \ MODULE_CONTEXT_REQUIRE(obj, acl_mailbox_list_module) #define ACL_USER_CONTEXT(obj) \ MODULE_CONTEXT(obj, acl_user_module) #define ACL_USER_CONTEXT_REQUIRE(obj) \ MODULE_CONTEXT_REQUIRE(obj, acl_user_module) struct acl_user { union mail_user_module_context module_ctx; const char *acl_user; const char *acl_env; const char *const *groups; struct acl_lookup_dict *acl_lookup_dict; }; struct acl_storage_rights_context { struct acl_backend *backend; unsigned int acl_storage_right_idx[ACL_STORAGE_RIGHT_COUNT]; }; struct acl_mailbox_list { union mailbox_list_module_context module_ctx; struct acl_storage_rights_context rights; time_t last_shared_add_check; bool ignore_acls; }; struct acl_mailbox { union mailbox_module_context module_ctx; struct acl_object *aclobj; bool skip_acl_checks; bool acl_enabled; bool no_read_right; }; extern MODULE_CONTEXT_DEFINE(acl_storage_module, &mail_storage_module_register); extern MODULE_CONTEXT_DEFINE(acl_user_module, &mail_user_module_register); extern MODULE_CONTEXT_DEFINE(acl_mailbox_list_module, &mailbox_list_module_register); void acl_mailbox_list_created(struct mailbox_list *list); void acl_mail_namespace_storage_added(struct mail_namespace *ns); void acl_mail_user_created(struct mail_user *list); void acl_mailbox_allocated(struct mailbox *box); void acl_mail_allocated(struct mail *mail); struct acl_backend *acl_mailbox_list_get_backend(struct mailbox_list *list); int acl_mailbox_list_have_right(struct mailbox_list *list, const char *name, bool parent, unsigned int acl_storage_right_idx, bool *can_see_r) ATTR_NULL(5); void acl_plugin_init(struct module *module); void acl_plugin_deinit(void); #endif