Displaying 4 results from an estimated 4 matches for "quota_us".
Did you mean:
quota_fs
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 me...
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
...quota = dict:storage=1024000: proxy::quotadict
}
from dovecot-sql.conf:
user_query = SELECT 225 as uid, 225 as gid, mailbox_path as home,
mailbox_path as mail, 'dirsize:storage=10240:messages=1000' as quota
FROM transports WHERE email = '%u'
dict-quota.conf:
connect = ...
table = quota_used
select_field = quota_used_kb
where_field = quota_type
username_field = username_and_realm
in mysql:
describe quota_used;
+--------------------+--------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+--------------------+--------------+...
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);...