search for: mount_path

Displaying 6 results from an estimated 6 matches for "mount_path".

2014 Oct 10
1
fixes for quota support on NetBSD
....orig 2013-02-26 09:42:04.000000000 +0100 +++ src/plugins/quota/quota-fs.c 2013-08-06 01:00:32.000000000 +0200 @@ -672,34 +672,38 @@ { struct quotakey qk; struct quotaval qv; + struct quotahandle *qh; + int ret; - if (root->qh == NULL) { - if ((root->qh = quota_open(root->mount->mount_path)) == NULL) { - i_error("cannot open quota for %s: %m", - root->mount->mount_path); - fs_quota_root_disable(root, group); - return 0; - } - } + if ((qh = quota_open(root->mount->mount_path)) == NULL) { + i_error("cannot open quota for %s: %m", + root-&gt...
2006 Aug 21
2
Filesystem Quota Enhancement Patch
...a_error = quota_error + 1; + } } - quota_set_error(_root->setup->quota, - "Internal quota error"); + + value_r_t = dqblk.dqb_curblocks / 1024; + limit_r_t = dqblk.dqb_bsoftlimit; + } +#elif defined(HAVE_QUOTACTL) + /* BSD, AIX */ + if (quotactl(root->mount->mount_path, QCMD(Q_GETQUOTA, args[i]), + what[i], (void *)&dqblk) < 0) { + quota_error = quota_error + 1; + } + value_r_t = (uint64_t)dqblk.dqb_curblocks * 1024 / DEV_BSIZE; + limit_r_t = (uint64_t)dqblk.dqb_bsoftlimit * 1024 / DEV_BSIZE; +#else + /* Solaris */ + if (root->mount->fd...
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 Nov 07
2
(no subject)
Hello , I need to now how to get a mount path and password ,so I could broadcast can anyone help thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.xiph.org/pipermail/icecast/attachments/20061107/364f0e9c/attachment.htm>
2007 May 30
4
AIX mail quota plugin problems
From reading the wiki for a filesystem quota, I took my shot at 1) building my binaries using the mods in AIXPluginsSupport 2) changing dovecot.conf and 3) putting the plugins in the library But I'm getting this error message when I invoke dovecot: Plugin imap_quota not found from directory /usr/local/lib/dovecot Error: imap dump-capability process returned 89 It would seem that a) I have
2006 Nov 07
1
(no subject)
...st can anyone help thanks. > > > Hi, > > Have you already installed an icecast server on your machine? If so just > add the following lines to your icecast.xml, restart the server, setup your > streaming client and stream! > > <mount> > <mount-name>/mount_path</mount-name> > <username>source</username> > <password>password</password> > </mount> > > > > Hope that helps... > > best, > > Andreas > > > _______________________________________________ > Icecast mailing...