search for: have_fs_quota

Displaying 5 results from an estimated 5 matches for "have_fs_quota".

2006 Aug 09
0
Issue building rc6 on Mac OS X (quota)
I haven't had time to put together a patch, but quota-fs.c fails to compile on Mac OS X. Any chance we could get a configuration switch that says "--without- quota"? I've resolved the problem temporarily by forcing HAVE_FS_QUOTA to undef in quota-fs.h. James
2006 Feb 03
0
rquotad (NFS) quota plugin
...l.location+quota/src/plugins/quota/quota.c Wed Feb 1 00:00:09 2006 *************** *** 10,22 **** extern struct quota dirsize_quota; extern struct quota dict_quota; extern struct quota fs_quota; static struct quota *quota_classes[] = { &dirsize_quota, &dict_quota, #ifdef HAVE_FS_QUOTA ! &fs_quota #endif }; #define QUOTA_CLASS_COUNT (sizeof(quota_classes)/sizeof(quota_classes[0])) --- 10,24 ---- extern struct quota dirsize_quota; extern struct quota dict_quota; extern struct quota fs_quota; + extern struct quota rquotad_quota; static struct quota *quota_c...
2005 Dec 16
1
a problem in building dovecot @ opensolaris
Hi, I'm trying to build dovecot from snapshot dovecot-20051215.tar.gz on OpenSolaris Nevada build 28. I have added to the PATH directories for make, gcc and automake/autoconf (in BASH): $ export PATH=/opt/sfw/bin:/usr/ccs/bin:/usr/sfw/bin:$PATH then executed --- $ aclocal $ libtoolize --force $ automake --add-missing $ autoheader $ autoconf --- And then make finished with --- Install prefix
2006 Jun 20
1
Group-based filesystem quota
Hello. After using Dovecot for over a year, I have just started experimenting with the filesystem quotas, and I have a suggestion for improvement. On my mail server, I use group-based quotas, and would like to have Dovecot be able to report these quotas. It should be simple to implement, requiring only changes to the quota-fs.c file of the quota plugin. Simply changing USRQUOTA to
2006 Aug 21
2
Filesystem Quota Enhancement Patch
...rt -------------- /* Copyright (C) 2005-2006 Timo Sirainen */ /* Only for reporting filesystem quota */ #include "lib.h" #include "array.h" #include "str.h" #include "mountpoint.h" #include "quota-private.h" #include "quota-fs.h" #ifdef HAVE_FS_QUOTA #include <stdio.h> #include <stdlib.h> #include <fcntl.h> #include <unistd.h> #include <sys/stat.h> #ifdef HAVE_LINUX_DQBLK_XFS_H # include <linux/dqblk_xfs.h> # define HAVE_XFS_QUOTA #elif defined (HAVE_XFS_XQM_H) # include <xfs/xqm.h> /* CentOS 4.x at...