search for: mountpoint_get

Displaying 9 results from an estimated 9 matches for "mountpoint_get".

2006 Apr 18
3
mountpoint_get broke the quota plugin
Looks like the new mountpoint_get code broke the quota plugin. I am getting this error when trying to start dovecot, using last night's CVS on Red Hat ES3: # service dovecot start Starting Dovecot Imap: Edlopen(/usr/lib/dovecot/imap/lib01_quota_plugin.so) failed: /usr/lib/dovecot/imap/lib01_quota_plugin.so: undefined symbol:...
2007 Jul 17
3
Small problem with src/lib/mountpoint.c [now with patch attached!]
...ered a slight problem with src/lib/mountpoint.c I had things working on a Solaris 10 test machine which had the mailstore mounted 'normally' using an entry in /etc/vfstab. However when I changed to use the automounter for the mailstore obtaining the quota broke. The problem lies with mountpoint_get(). On a 'normally' mounted filestore this obtains the device_path of the remote filestore in the form remoteservername.some.domain:/remote/path However when the mailstore was automounted I was instead getting back auto_direct which is the name of the automounter map we...
2009 Jun 06
3
Expire/Quota error
...n/dovecot --exec-mail ext /usr/local/libexec/dovecot/expire-tool --test /usr/local/sbin/dovecot --exec-mail ext /usr/local/libexec/dovecot/expire-tool --testError: dlopen(/usr/local/lib/dovecot/imap/lib10_quota_plugin.so) failed: /usr/local/lib/dovecot/imap/lib10_quota_plugin.so: undefined symbol: mountpoint_get # 1.2.rc5: /usr/local/etc/dovecot.conf # OS: Linux 2.6.27.21-170.2.56.fc10.i686 i686 Fedora release 10 (Cambridge) ext3 protocols: imap imaps managesieve listen: *:143 ssl_listen: *:993 ssl_cert_file: /etc/postfix/SSL/mail.mattrude.com.cert ssl_key_file: /etc/postfix/SSL/mail.mattrude.com.key log...
2007 Jul 17
0
Small problem with src/lib/mountpoint.c
...ered a slight problem with src/lib/mountpoint.c I had things working on a Solaris 10 test machine which had the mailstore mounted 'normally' using an entry in /etc/vfstab. However when I changed to use the automounter for the mailstore obtaining the quota broke. The problem lies with mountpoint_get(). On a 'normally' mounted filestore this obtains the device_path of the remote filestore in the form remoteservername.some.domain:/remote/path However when the mailstore was automounted I was instead getting back auto_direct which is the name of the automounter map we...
2006 Jun 27
1
POP3 quota trouble
...ser Maildirs. However, I need quota to work for POP3 as well. If I enable the quota plugin in the "protocol pop3 { }" section, I get the following error in the log: dlopen(/usr/lib/dovecot/pop3/lib01_quota_plugin.so) failed: /usr/lib/dovecot/pop3/lib01_quota_plugin.so: undefined symbol: mountpoint_get Along with this error, POP3 logins are not possible. The server crashes, and client connection is closed. Is there a fix for this problem? Regards, -- Anand
2006 Jun 06
1
Strange Error after some hour of inactivity.
...log: ... Jun 1 20:29:40 srv1 dovecot: Dovecot v1.0.beta8 starting up Jun 1 20:29:41 srv1 dovecot: auth(default): pgsql: Connected to hosting Jun 1 20:29:44 srv1 dovecot: POP3(ramas): dlopen(/usr/lib/dovecot/lib01_quota_plugin.so) failed: /usr/lib/dovecot/lib01_quota_plugin.so: undefined symbol: mountpoint_get Jun 1 20:29:44 srv1 dovecot: pop3-login: Login: user=<ramas>, method=PLAIN, rip=192.168.0.3, lip=192.168.0.6, TLS Jun 1 20:29:44 srv1 dovecot: child 21465 (pop3) returned error 89 Jun 1 20:43:09 srv1 dovecot: Killed with signal 15 ... For this issue i found solution with manual compilatio...
2010 Sep 12
2
dovecot 2.0.2 compile issues on Solaris 10u8 Sparc
...-I. -I../.. -std=gnu99 -g -O2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -I/usr/sfw/include -MT mountpoint.lo -MD -MP -MF .deps/mountpoint.Tpo -c mountpoint.c -fPIC -DPIC -o .libs/mountpoint.o mountpoint.c: In function `mountpoint_get': mountpoint.c:88: error: field `ent' has incomplete type mountpoint.c:89: error: field `ext' has incomplete type mountpoint.c:172: warning: implicit declaration of function `resetmnttab' mountpoint.c:173: warning: implicit declaration of function `getextmntent' mountpoint.c:174...
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
...i_free(mount); } static void fs_quota_deinit(struct quota_root *_root) { struct fs_quota_root *root = (struct fs_quota_root *)_root; if (root->mount != NULL) fs_quota_mountpoint_free(root->mount); i_free(root->root.name); i_free(root); } static struct fs_quota_mountpoint *fs_quota_mountpoint_get(const char *dir) { struct fs_quota_mountpoint *mount; struct mountpoint point; int ret; ret = mountpoint_get(dir, default_pool, &point); if (ret <= 0) return NULL; mount = i_new(struct fs_quota_mountpoint, 1); mount->device_path = point.device_path; mount->mount_path = poin...