Displaying 4 results from an estimated 4 matches for "quota_fil".
Did you mean:
quota_fs
2004 May 07
3
samba quotas
Hi guys, we need to update our samba service from 2.2.8a to samba 3.0.x
(so that we
can upgrade our AD from Win2k to Win2k3). The problem I am having is
with the quotas.
We mount user home directories NFS and then export them to Windows users
via samba.
In 2.2.8a I was able to get quotas working. However with samba 3.0.x, I
cannot.
I compiled --with-quotas.
Now when a user uses a 3.0
2002 Apr 17
1
dfree command
...9;ve tried to write my own dfree command and add it
in smb.conf.
dfree.sh:
#!/bin/sh
used_space=`/usr/bin/quota -u $1 | tail -1 | awk '{print $2}'`
quota_space=`/usr/bin/quota -u $1 | tail -1 | awk '{print $4}'`
used_files=`/usr/bin/quota -u $1 | tail -1 | awk '{print $5}'`
quota_files=`/usr/bin/quota -u $1 | tail -1 | awk '{print $7}'`
if [ "$used_files" == "$quota_files" ];
then used_space=$quota_space
fi
free_space=`expr $quota_space - $used_space`
echo "$quota_space $free_space"
First problem:
Why is dfree command run as root a...
2014 Mar 25
1
Getting second quota limit out of database
Hello there,
I am working with dovecot v2.2.12, and have setup a user and domain
quota by using a quota/quota_rule for user and quota2/quota2_rule for
the domain.
This works fine when the limit configuration for both is stored inside
dovecot configuration files. However, I would like to have the limits
configurable on a user and domain base, and that data is stored inside
my SQL database.
2013 Dec 19
2
Does quota-status respect quota_grace?
..._grace = 18%%
quota_grace = 18%%
quota_status_nouser = DUNNO
quota_status_overquota = 552 5.2.2 Mailbox is full
quota_status_success = DUNNO
Quota rules are read from PostgreSQL (snippet)
user_query = ...
'*:bytes=' || domains.quota_size || 'M:messages=' ||
domains.quota_files as quota_rule, \
'*:bytes=' || mailboxes.quota_size || 'M:messages=' ||
mailboxes.quota_files as quota2_rule, \
...
As far as I can tell, quota enforcing in dovecot-lda works correctly.
User is allowed one message which brings him over quota (provided the
message fits in...