search for: have_rquota

Displaying 2 results from an estimated 2 matches for "have_rquota".

2009 Dec 09
0
rquota in dovecot-1.2.8-0_103.el5.x86_64.rpm
...ror in the dovecot log (and quota was not working): Dec 9 10:50:43 webmailtest2 dovecot: IMAP(auser) rip=127.0.0.1: quotactl(Q_GETQUOTA, nfsserver.geneseo.edu:/vol/email/users) failed: No such file or directory I had seen some messages on the mailing list talking about making sure you build with HAVE_RQUOTA defined at compile time. I wasn't able to determine if the RPM on the aforementioned page was simply missing the rquota code, but upon building the SRPM from the same place (http://atrpms.net/dist/el5/dovecot/, SRPM itself is http://dl.atrpms.net/all/dovecot-1.2.8-0_103.src.rpm) I saw HAVE_RQUO...
2010 Jun 29
1
NFS(4) IMAP Quota
...t->type, "nfs") == 0 || strcmp(mount->type, "nfs4") == 0) { if (strchr(mount->device_path, ':') == NULL) { i_error("quota-fs: %s is not a valid NFS device path", mount->device_path); @@ -210,7 +210,7 @@ #ifdef FS_QUOTA_SOLARIS #ifdef HAVE_RQUOTA - if (strcmp(mount->type, "nfs") == 0) { + if (strcmp(mount->type, "nfs") == 0 || strcmp(mount->type, "nfs4") == 0) { /* using rquota for this mount */ } else #endif @@ -319,6 +319,11 @@ host = t_strdup_until(mount->device_path, path); path++; +...