Displaying 4 results from an estimated 4 matches for "quota_user".
Did you mean:
quota_used
2002 Mar 04
2
SGI XFS 1.0.2a, ACLs and samba 2.2.3a with win2k perms
...to use winbindd to facilitate this?
Some of my smb.conf settings are as follows:
[global]
workgroup=TESTZONE
security = domain
password server = test3
nt acl support = yes
[downloads]
path = /xfs/downloads
public = yes
only guest = no
writable = yes
printable = no
write list = @quota_users
The samba box is running RH7.2, samba 2.2.3a and is using the SGI XFS
filesystem (1.0.2a).
The downloads samba share is residing on an XFS file system that supports
acl's. The pc is a member of the domain (smbpasswd -j ...). Domain users
that have an account on this machine and are a memb...
2010 Jun 22
1
quota_set leak
...p of the quota_set. If on the other hand you intended for quota_init to assume ownership of the quota_set, then the quota_settings_deinit call belongs in quota_deinit.
--- a/src/plugins/quota/quota-storage.c (beta6)
+++ b/src/plugins/quota/quota-storage.c (patched)
@@ -427,6 +427,7 @@
{
struct quota_user *quser = QUOTA_USER_CONTEXT(user);
+ quota_settings_deinit(&quser->quota->set);
quota_deinit(&quser->quota);
quser->module_ctx.super.deinit(user);
}
2007 Jan 08
1
quota in mysql not being updated
I'm having trouble getting the quota plugin to work with deliver.
The quota in the database is not getting set.
I am using dovecot-1.0-rc15. This server is not yet in production.
Some values below are because I'm trying to test with the simplest
possible case, and some because it's reading from a different
database. Also, I noticed that "dovecot -n" doesn't display any
2013 Aug 01
1
[PATCH] quota-status: allow different action for messages that are too large (over maximum quota)
...0200
+++ b/src/plugins/quota/quota-status.c 2013-08-01 18:03:30.000000000 +0200
@@ -46,13 +46,12 @@
}
static int
-quota_check(struct mail_user *user, uoff_t mail_size, const char **error_r)
+quota_check(struct mail_user *user, uoff_t mail_size, const char **error_r, bool *too_large)
{
struct quota_user *quser = QUOTA_USER_CONTEXT(user);
struct mail_namespace *ns;
struct mailbox *box;
struct quota_transaction_context *ctx;
- bool too_large;
int ret;
if (quser == NULL) {
@@ -64,7 +63,7 @@
box = mailbox_alloc(ns->list, "INBOX", 0);
ctx = quota_transaction_begin(box);
-...