Displaying 16 results from an estimated 16 matches for "capability_string".
2009 Jul 08
1
expire plugin with 1.2 cronjob undefined symbol: capability_string
...l --test
Info: Loading modules from directory: /usr/lib/dovecot/modules/imap
Info: Module loaded: /usr/lib/dovecot/modules/imap/lib01_acl_plugin.so
Error: dlopen(/usr/lib/dovecot/modules/imap/lib02_imap_acl_plugin.so)
failed: /usr/lib/dovecot/modules/imap/lib02_imap_acl_plugin.so:
undefined symbol: capability_string
Fatal: Couldn't load required plugins
someone tips how to fix it ?
perhaps problems relate to mail_location settings?
dovecot --version
1.2.rc8
--
Best Regards
MfG Robert Schetterer
Germany/Munich/Bavaria
2009 Nov 10
2
v1.2.7 released
http://dovecot.org/releases/1.2/dovecot-1.2.7.tar.gz
http://dovecot.org/releases/1.2/dovecot-1.2.7.tar.gz.sig
* IMAP: IDLE now sends "Still here" notifications to same user's
connections at the same time. This hopefully reduces power usage
of some mobile clients that use multiple IDLEing connections.
* IMAP: If imap_capability is set, show it in the login banner.
+ IMAP:
2009 Nov 10
2
v1.2.7 released
http://dovecot.org/releases/1.2/dovecot-1.2.7.tar.gz
http://dovecot.org/releases/1.2/dovecot-1.2.7.tar.gz.sig
* IMAP: IDLE now sends "Still here" notifications to same user's
connections at the same time. This hopefully reduces power usage
of some mobile clients that use multiple IDLEing connections.
* IMAP: If imap_capability is set, show it in the login banner.
+ IMAP:
2010 Aug 01
2
error 89 when loading plugin
...difficult for me.
I have written a small plugin change_passwd_plugin.c
I would like this custom IMAP command to be available to all users.
The code contains the following.
void change_passwd_plugin_init(void)
{
command_register("XCHANGEPASSWORD", cmd_xchangepasswd, 0);
str_append(capability_string, " XCHANGEPASSWORD");
}
void change_passwd_plugin_deinit(void)
{
command_unregister("XCHANGEPASSWORD");
}
% nm
0000000000000920 T change_passwd_plugin_deinit
00000000000008ec T change_passwd_plugin_init
0000000000201248 D change_passwd_plugin_version
dovecot.conf...
2008 Oct 26
1
PATCH: Advertise X-REFERENCES2
...NC ESEARCH SEARCHRES WITHIN CONTEXT=SEARCH"
+capability="$capability_banner SORT THREAD=REFERENCES
THREAD=X-REFERENCES2 MULTIAPPEND UNSELECT IDLE CHILDREN NAMESPACE
UIDPLUS LIST-EXTENDED I18NLEVEL=1 CONDSTORE QRESYNC ESEARCH SEARCHRES
WITHIN CONTEXT=SEARCH"
AC_DEFINE_UNQUOTED(CAPABILITY_STRING, "$capability", IMAP capabilities)
AC_DEFINE_UNQUOTED(CAPABILITY_BANNER_STRING, "$capability_banner",
IMAP capabilities advertised in banner)
michael
2006 May 24
1
imap proxy and passwd-like passdb/userdb
...the
documentation right? ;-) Are there reasons not to use dovecot this way
(other than scalability / maintainability)? Are there bugs I've not yet
seen? (am I the only one using dovecot this way?)
thanks-in-advance,
HenkJan
1) i'm proxying to a courier backend, had to modify dovecots
capability_string, because the emailclient gets the capabilities from
dovecot, while it uses the proxied server (=courier). Had some strange
errors with append, as courier doesn't support Literal+, modifying
dovecot so that it stopped advertising Literal+ solved the problem....
-------------- next part --...
2014 Aug 30
1
Need help to compile and install a minimal dovecot imap plugin
...plugin that adds a new IMAP capability. So far I have this:
const char *foo_plugin_version = DOVECOT_ABI_VERSION;
static struct module *foo_module;
static imap_client_created_func_t *next_hook_client_created;
static void foo_client_created(struct client **client)
{
str_append((*client)->capability_string, " XFOO");
if (next_hook_client_created != NULL) {
next_hook_client_created(client);
}
}
void foo_plugin_init(struct module *module)
{
i_info(?init?);
foo_module = module;
next_hook_client_created = imap_client_created_hook_set(foo_client_created);
}
void foo_plugin...
2006 Mar 09
3
Getting maildir++ quotas working
Can somebody post details for how to get maildir++ quotas working in the
latest CVS?
I have tried but can't get the CAPABILITY string to show "QUOTA"; and the
GETQUOTAROOT command is recognized, but returns nothing...
2 GETQUOTAROOT INBOX
* QUOTAROOT "INBOX" ""
* QUOTA "" ()
2 OK Getquotaroot completed.
These are the settings I have... am I
2009 Jun 06
3
Expire/Quota error
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Using both 1.2rc5 and hg version a9d3108d0cec from today, when I run the
expire tools program, I receive the following error.
# /usr/local/sbin/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:
2003 Jun 30
1
Dovecot first impressions
Hi,
I have only recently become aware of Dovecot and gave it a try. The
previous 0.99.9.1 version didn't work well for me (OpenSSL), I dropped
it, but 0.99.10 has come just in time (saw it on freshmeat) and I
thought I'd give it another try if it promised SSL fixes, and it's sorta
working for me (i. e. it works with mutt, Mozilla, sylpheed, but not
cone -- but cone is beta and has SSL
2008 Nov 07
6
Cannot get the libwrap patch work
Hello there,
I have been trying to make the patch work for libwrap(TCP
Wrappers) posted on http://dovecot.org/patches
<http://dovecot.org/patches%20Patch%20of%201.1> Patch of 1.1 but could not
get it work. Any help will be highly appreciated. After compiling and
running it I get error "Error: login_tcp_wrappers can't be used because
Dovecot wasn't built with
2005 Dec 15
2
Patch: More of kqueue() support.
...fy requested but kevent() is not available])
+ notify=""
+ else
+ have_notify=kqueue
+ AC_DEFINE(IOLOOP_NOTIFY_KQUEUE,,
+ Use BSD kqueue directory changes notificaton)
+ fi
else
AC_MSG_ERROR([Unknown notify method: $notify])
fi
@@ -1494,6 +1512,7 @@ AC_DEFINE_UNQUOTED(CAPABILITY_STRING, "$
CFLAGS="$CFLAGS $EXTRA_CFLAGS"
+AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([
Makefile
doc/Makefile
Index: src/lib/ioloop-kqueue.c
===================================================================
RCS file: /home/cvs/dovecot/src/lib/ioloop-kqueue.c,v
retrieving revisi...
2016 Jul 11
4
2.3.0~alpha0-1~auto+197: Crash when openening a message via IMAP
>From the log:
Jul 11 13:12:42 mproxy dovecot: imap-login: Login: user=<hildeb>, method=PLAIN, rip=141.42.206.36, lip=141.42.206.11, mpid=27254, TLS, session=<TGwoO1o3id+NKs4k>
Jul 11 13:12:44 mproxy dovecot: imap(hildeb)<TGwoO1o3id+NKs4k>: Panic: file imap-client.c: line 854 (client_check_command_hangs): assertion failed: ((io_loop_find_fd_conditions(current_ioloop,
2008 Nov 08
1
dovecot Digest, Vol 67, Issue 19
...FORMAT=", set->login_log_format, NULL));
if (set->login_greeting_capability)
env_put("GREETING_CAPABILITY=1");
+ if (set->login_tcp_wrappers)
+ env_put("TCP_WRAPPERS=1");
if (group->mail_process_type == PROCESS_TYPE_IMAP) {
env_put(t_strconcat("CAPABILITY_STRING=",
--- src/master/master-settings.c.orig 2008-06-21 15:09:16.000000000 +0200
+++ src/master/master-settings.c 2008-07-07 20:28:37.000000000 +0200
@@ -208,6 +208,7 @@
MEMBER(login_process_per_connection) TRUE,
MEMBER(login_chroot) TRUE,
MEMBER(login_greeting_capability) FALSE,
+ MEMBER(lo...
2008 Feb 06
2
(message_parse_header_next): assertion failed:, +(IS_LWSP(line->value[0])) 1.1beta14
I noticed these happen when one of my users searches his Trash folder
which he doesn't empty.
He uses thunderbird and it is reproducable.
Feb 5 22:47:39 boomhauer dovecot: IMAP(username): file
message-header-parser.c: line 350 (message_parse_header_next): assertion
failed:
+(IS_LWSP(line->value[0]))
Feb 5 22:47:41 boomhauer dovecot: child 8022 (imap) killed with signal 6
Feb 5
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...bility="$capability_banner SORT SORT=DISPLAY THREAD=REFERENCES THREAD=REFS MULTIAPPEND CATENATE UNSELECT IDLE CHILDREN NAMESPACE UIDPLUS LIST-EXTENDED I18NLEVEL=1 CONDSTORE QRESYNC ESEARCH ESORT SEARCHRES WITHIN CONTEXT=SEARCH LIST-STATUS"
cat >>confdefs.h <<_ACEOF
#define CAPABILITY_STRING "$capability"
@@ -23089,7 +23089,7 @@
ac_config_headers="$ac_config_headers config.h"
-ac_config_files="$ac_config_files Makefile doc/Makefile doc/wiki/Makefile src/Makefile src/lib/Makefile src/lib-sql/Makefile src/lib-auth/Makefile src/lib-charset/Makefile src/lib-di...