search for: dovecot_abi_version

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

2020 Jun 16
2
Plugin ABI compat between v2.3.8 and v2.3.9
...r recompiling that plugin with up to date dovecot headers, > > I didn't get crashes anymore. > > > > So I suspect there were ABI incompatible changes and it was > > forgotten to bump the minimum Plugin-ABI version supported. > > dovecot-2.3.8/configure > #define DOVECOT_ABI_VERSION "2.3.ABIv8($PACKAGE_VERSION)" > > dovecot-2.3.9/configure > #define DOVECOT_ABI_VERSION "2.3.ABIv9($PACKAGE_VERSION)" > > Did you disable version checking? (version_ignore = yes) Thanks for the hint. I couldn't find version_ignore anywhere in the configs. I...
2020 Jun 15
2
Plugin ABI compat between v2.3.8 and v2.3.9
Hi all! This is my first post on this list. Please pardon me if I overlooked or misunderstood some things. I had some imap crashes (sig11) starting at the end of 2019 after an upgrade of dovecot. I found out, that I didn't have any problems using version v2.3.8, but any version v2.3.9 and higher would trigger the crashes. After investigating more deeply and creating a core dump, I saw that
2020 Jun 16
0
Plugin ABI compat between v2.3.8 and v2.3.9
...etchmail_wakeup[1]. > > After recompiling that plugin with up to date dovecot headers, > I didn't get crashes anymore. > > So I suspect there were ABI incompatible changes and it was > forgotten to bump the minimum Plugin-ABI version supported. dovecot-2.3.8/configure #define DOVECOT_ABI_VERSION "2.3.ABIv8($PACKAGE_VERSION)" dovecot-2.3.9/configure #define DOVECOT_ABI_VERSION "2.3.ABIv9($PACKAGE_VERSION)" Did you disable version checking? (version_ignore = yes)
2020 Jun 16
0
Plugin ABI compat between v2.3.8 and v2.3.9
...o date dovecot headers, > > > I didn't get crashes anymore. > > > > > > So I suspect there were ABI incompatible changes and it was > > > forgotten to bump the minimum Plugin-ABI version supported. > > > > dovecot-2.3.8/configure > > #define DOVECOT_ABI_VERSION "2.3.ABIv8($PACKAGE_VERSION)" > > > > dovecot-2.3.9/configure > > #define DOVECOT_ABI_VERSION "2.3.ABIv9($PACKAGE_VERSION)" > > > > Did you disable version checking? (version_ignore = yes) > > Thanks for the hint. > > I couldn't find...
2013 Jan 08
0
dovecot-antispam-plugin compile error
$ hg --cwd ./work/dovecot-antispam-plugin-50 glog -l3 --style compact @ 50[tip] 0319240072d8 2012-12-20 03:56 +0200 Eugene Paskevich <eugene at raptor.kiev.ua> | Made use of new DOVECOT_ABI_VERSION macro. ... $ configure; make Compiling signature-log.c (plugin)... signature-log.c:122: error: too many arguments to function ?dict_init? ... Reverting src/signature-log.c from r49 to r30 allows make to succeed again. Regards, Bradley Giesbrecht (pixilla) -------------- next part -------------...
2014 Aug 30
1
Need help to compile and install a minimal dovecot imap plugin
I am trying to create a 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(...
2013 May 27
2
Dovecot 2.2 build rpm on Centos6
...: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "Dovecot" | #define PACKAGE_TARNAME "dovecot" | #define PACKAGE_VERSION "2.2.2" | #define PACKAGE_STRING "Dovecot 2.2.2" | #define PACKAGE_BUGREPORT "dovecot at dovecot.org" | #define DOVECOT_ABI_VERSION "2.2.ABIv2(2.2.2)" | #define PACKAGE "dovecot" | #define VERSION "2.2.2" | #define HAVE_SYSTEMD /**/ | /* end confdefs.h. */ | | int | main () | { | | ; | return 0; | } configure:4307: error: in `/home/builder/rpmbuild/BUILD/dovecot-2.2.2': configure:4310: e...
2019 Apr 14
0
[PATCH] Re: Solr connection timeout hardwired to 60s
...src/plugins/fts-solr/fts-solr-plugin.c.orig 2019-04-14 11:41:03.591782439 +0200 +++ src/plugins/fts-solr/fts-solr-plugin.c 2019-04-14 14:37:46.059433864 +0200 @@ -10,6 +10,8 @@ #include "fts-solr-plugin.h" +#define DEFAULT_SOLR_BATCH_SIZE 1000 + const char *fts_solr_plugin_version = DOVECOT_ABI_VERSION; struct http_client *solr_http_client = NULL; @@ -37,6 +39,10 @@ } else if (str_begins(*tmp, "default_ns=")) { set->default_ns_prefix = p_strdup(user->pool, *tmp + 11); + } else if (str_begins(*tmp, "batch_size=")) { + set->batch_size = atoi(*tmp + 11)...
2019 Apr 13
3
Solr connection timeout hardwired to 60s
On 4/13/2019 4:29 AM, John Fawcett via dovecot wrote: > If this value was made configurable people could set it to what they > want. However the underlying problem is likely on solr configuration. The Jetty that is included in Solr has its idle timeout set to 50 seconds. But in practice, I have not seen this timeout trigger ... and if the OP is seeing a 60 second timeout, then the 50