]> git.ipfire.org Git - thirdparty/dovecot/core.git/log
thirdparty/dovecot/core.git
9 months agolib-storage: Fix IMAP SPECIAL-USE capability when using global mailbox settings
Timo Sirainen [Thu, 15 Aug 2024 07:59:57 +0000 (10:59 +0300)] 
lib-storage: Fix IMAP SPECIAL-USE capability when using global mailbox settings

9 months agolib-storage: Rename mail_user_check_namespace_settings() to mail_user_settings_update...
Timo Sirainen [Thu, 15 Aug 2024 07:54:45 +0000 (10:54 +0300)] 
lib-storage: Rename mail_user_check_namespace_settings() to mail_user_settings_update_special_use()

Also add a comment to clarify why this is done here.

9 months agolib-storage: mail_user_check_namespace_settings() - Remove alias_for checks
Timo Sirainen [Thu, 15 Aug 2024 07:49:49 +0000 (10:49 +0300)] 
lib-storage: mail_user_check_namespace_settings() - Remove alias_for checks

They don't need to be here. The full alias_for checks are done later.

9 months agolib-storage: Fix final namespace alias_for chaining check
Timo Sirainen [Thu, 15 Aug 2024 08:17:06 +0000 (11:17 +0300)] 
lib-storage: Fix final namespace alias_for chaining check

9 months agolib-storage: Fix using global mailbox settings
Timo Sirainen [Wed, 14 Aug 2024 20:15:13 +0000 (23:15 +0300)] 
lib-storage: Fix using global mailbox settings

Previously mailbox settings had to be inside namespace for the settings to
work.

9 months agolib-settings: Add comments about how settings overrides are parsed
Timo Sirainen [Wed, 14 Aug 2024 20:05:46 +0000 (23:05 +0300)] 
lib-settings: Add comments about how settings overrides are parsed

9 months agoconfig: Define PLUGIN_BUILD so auth plugins' settings are included
Timo Sirainen [Sun, 11 Aug 2024 06:28:53 +0000 (09:28 +0300)] 
config: Define PLUGIN_BUILD so auth plugins' settings are included

9 months agoauth: Fix linking problems when using lua as plugin
Timo Sirainen [Fri, 9 Aug 2024 19:04:22 +0000 (22:04 +0300)] 
auth: Fix linking problems when using lua as plugin

After recent changes passdb-template was used only by the Lua code.
If it was built as plugin, there was nothing in auth binary that used it,
so linker dropped it entirely. This drop happens only for symbols within
.a libraries. Fixed by not building libauth.a at all.

9 months agoauth: ldap - Use container_of()
Marco Bettini [Mon, 22 Jul 2024 08:29:59 +0000 (08:29 +0000)] 
auth: ldap - Use container_of()

9 months agoauth: db-ldap - Prefix events with currently connected host
Marco Bettini [Wed, 24 Jul 2024 15:33:57 +0000 (15:33 +0000)] 
auth: db-ldap - Prefix events with currently connected host

9 months agoauth: db-ldap - Restore prefixes to messages
Marco Bettini [Wed, 17 Jul 2024 14:39:01 +0000 (14:39 +0000)] 
auth: db-ldap - Restore prefixes to messages

(replaces previously removed conn->config_path)

9 months agom4: want_ldap - Drop LDAP_DEPRECATED
Marco Bettini [Wed, 17 Jul 2024 13:30:30 +0000 (13:30 +0000)] 
m4: want_ldap - Drop LDAP_DEPRECATED

9 months agoauth: ldap - Drop deprecated ldap_init() and ldap_host settings
Marco Bettini [Mon, 15 Jul 2024 14:59:24 +0000 (14:59 +0000)] 
auth: ldap - Drop deprecated ldap_init() and ldap_host settings

9 months agoauth: ldap - Replace deprecated ldap_bind() with ldap_sasl_bind()
Marco Bettini [Wed, 17 Jul 2024 09:28:13 +0000 (09:28 +0000)] 
auth: ldap - Replace deprecated ldap_bind() with ldap_sasl_bind()

9 months agoauth: ldap - Replace deprecated ldap_get_values() with ldap_get_values_len()
Marco Bettini [Mon, 15 Jul 2024 14:38:06 +0000 (14:38 +0000)] 
auth: ldap - Replace deprecated ldap_get_values() with ldap_get_values_len()

9 months agoauth: ldap - Replace deprecated ldap_unbind() with ldap_unbind_ext()
Marco Bettini [Mon, 15 Jul 2024 14:28:01 +0000 (14:28 +0000)] 
auth: ldap - Replace deprecated ldap_unbind() with ldap_unbind_ext()

9 months agoauth: ldap - Replace deprecated ldap_result2error() with ldap_parse_result()
Marco Bettini [Wed, 17 Jul 2024 12:25:22 +0000 (12:25 +0000)] 
auth: ldap - Replace deprecated ldap_result2error() with ldap_parse_result()

9 months agoauth: ldap - Add ldap_connection_group
Marco Bettini [Fri, 12 Jul 2024 09:45:40 +0000 (09:45 +0000)] 
auth: ldap - Add ldap_connection_group

9 months agoauth: ldap - Restore db_ldap_field_hide_password() functionality
Marco Bettini [Wed, 10 Jul 2024 14:47:09 +0000 (14:47 +0000)] 
auth: ldap - Restore db_ldap_field_hide_password() functionality

9 months agolib: strfuncs - Add str_ends_with() & str_ends_icase_with()
Marco Bettini [Thu, 1 Aug 2024 12:33:02 +0000 (12:33 +0000)] 
lib: strfuncs - Add str_ends_with() & str_ends_icase_with()

9 months agoauth: ldap - Move *attrs_names away from struct ldap connection
Marco Bettini [Wed, 10 Jul 2024 08:36:14 +0000 (08:36 +0000)] 
auth: ldap - Move *attrs_names away from struct ldap connection

Multiple db instances sharing the same ldap connection were
overwriting each other attribute's fields in preinit as all
preinits are done before using the connections.

9 months agoauth: ldap - Make struct ldap_request_search::attributes const
Marco Bettini [Wed, 10 Jul 2024 08:22:09 +0000 (08:22 +0000)] 
auth: ldap - Make struct ldap_request_search::attributes const

9 months agoauth: ldap_set_attrs() - pass directly pool_t rather than ldap_connection
Marco Bettini [Wed, 10 Jul 2024 08:11:42 +0000 (08:11 +0000)] 
auth: ldap_set_attrs() - pass directly pool_t rather than ldap_connection

9 months agoauth: ldap - Split pre/post settings and finish the conversion
Marco Bettini [Mon, 8 Jul 2024 14:40:35 +0000 (14:40 +0000)] 
auth: ldap - Split pre/post settings and finish the conversion

9 months agoauth: ldap_field_hide_password() - Disable temporarily
Marco Bettini [Thu, 11 Jul 2024 08:04:41 +0000 (08:04 +0000)] 
auth: ldap_field_hide_password() - Disable temporarily

9 months agoauth: ldap - Collapse ldap_pass_filter and ldap_user_filter into ldap_filter
Marco Bettini [Wed, 27 Mar 2024 10:24:18 +0000 (10:24 +0000)] 
auth: ldap - Collapse ldap_pass_filter and ldap_user_filter into ldap_filter

9 months agoauth: ldap - Add support for fields { .. }
Marco Bettini [Mon, 25 Mar 2024 14:23:51 +0000 (14:23 +0000)] 
auth: ldap - Add support for fields { .. }

9 months agoauth: db-ldap - Drop auth_sasl_bind
Marco Bettini [Tue, 14 May 2024 14:15:58 +0000 (14:15 +0000)] 
auth: db-ldap - Drop auth_sasl_bind

Now inferred by non-empty ldap_auth_sasl_mechanism.

9 months agoauth: ldap - Rename ldap_bind* into passdb_ldap_bind*
Marco Bettini [Wed, 17 Jul 2024 08:14:05 +0000 (08:14 +0000)] 
auth: ldap - Rename ldap_bind* into passdb_ldap_bind*

9 months agoauth: struct ldap_settings - Add auth_ prefixes
Marco Bettini [Fri, 5 Jul 2024 14:21:49 +0000 (14:21 +0000)] 
auth: struct ldap_settings - Add auth_ prefixes

9 months agoauth: db-ldap-settings - Defer some checks to runtime
Marco Bettini [Wed, 20 Mar 2024 16:25:00 +0000 (16:25 +0000)] 
auth: db-ldap-settings - Defer some checks to runtime

9 months agoauth: ldap - Use global passdb_use_worker from auth_passdb
Marco Bettini [Wed, 20 Mar 2024 11:49:33 +0000 (11:49 +0000)] 
auth: ldap - Use global passdb_use_worker from auth_passdb

9 months agoauth: ldap - Use passdb_default_pass_scheme from auth_passdb
Marco Bettini [Wed, 20 Mar 2024 11:42:33 +0000 (11:42 +0000)] 
auth: ldap - Use passdb_default_pass_scheme from auth_passdb

9 months agoauth: db-ldap - Use also ssl_settings
Marco Bettini [Tue, 19 Mar 2024 15:08:26 +0000 (15:08 +0000)] 
auth: db-ldap - Use also ssl_settings

ldap_tls_require_cert=demand/allow has replaced by ssl_client_require_valid_cert=yes/no.
The other values of the original setting are no longer supported.

9 months agoauth: db-ldap - Move validation to settings
Marco Bettini [Tue, 19 Mar 2024 13:50:45 +0000 (13:50 +0000)] 
auth: db-ldap - Move validation to settings

9 months agoauth: struct ldap_settings - Rename parsed fields into parsed_xxx
Marco Bettini [Thu, 21 Mar 2024 10:26:19 +0000 (10:26 +0000)] 
auth: struct ldap_settings - Rename parsed fields into parsed_xxx

9 months agoauth: struct ldap_settings - Rename tls into starttls
Marco Bettini [Tue, 19 Mar 2024 14:55:26 +0000 (14:55 +0000)] 
auth: struct ldap_settings - Rename tls into starttls

9 months agoauth: db_ldap_set_options() - Fix protocol_version to reflect actual setting name
Marco Bettini [Thu, 1 Aug 2024 08:36:37 +0000 (08:36 +0000)] 
auth: db_ldap_set_options() - Fix protocol_version to reflect actual setting name

9 months agoauth: struct ldap_settings - Fix ldap_ldap_version -> ldap_version
Marco Bettini [Wed, 20 Mar 2024 16:13:16 +0000 (16:13 +0000)] 
auth: struct ldap_settings - Fix ldap_ldap_version -> ldap_version

9 months agoauth: struct ldap-settings - Drop ldaprc_path
Marco Bettini [Fri, 15 Mar 2024 10:17:54 +0000 (10:17 +0000)] 
auth: struct ldap-settings - Drop ldaprc_path

9 months agoauth: ldap - Read settings from main config
Marco Bettini [Fri, 15 Mar 2024 09:31:44 +0000 (09:31 +0000)] 
auth: ldap - Read settings from main config

9 months agoauth: struct ldap_settings - Reorder fields by type [BUILD-BROKEN]
Marco Bettini [Fri, 15 Mar 2024 10:05:40 +0000 (10:05 +0000)] 
auth: struct ldap_settings - Reorder fields by type [BUILD-BROKEN]

(build broken until next commits)

9 months agoauth: struct ldap_settings - Move to db-ldap-settings.[ch] [BUILD-BROKEN]
Marco Bettini [Tue, 12 Mar 2024 14:13:37 +0000 (14:13 +0000)] 
auth: struct ldap_settings - Move to db-ldap-settings.[ch] [BUILD-BROKEN]

(build broken until next commits)

9 months agoauth: struct ldap_connection - Change set into a pointer
Marco Bettini [Thu, 1 Aug 2024 09:35:17 +0000 (09:35 +0000)] 
auth: struct ldap_connection - Change set into a pointer

9 months agoauth: db_ldap_set_options() - Move variables local to their usage
Marco Bettini [Wed, 24 Jul 2024 15:50:47 +0000 (15:50 +0000)] 
auth: db_ldap_set_options() - Move variables local to their usage

Specifically, int value could cause an unused warning/error
if LDAP_OPT_DEBUG_LEVEL is not defined

9 months agoauth: db-ldap - Remove conn->config_path from messages
Marco Bettini [Tue, 19 Mar 2024 14:11:08 +0000 (14:11 +0000)] 
auth: db-ldap - Remove conn->config_path from messages

9 months agoauth: db-ldap - Drop subqueries
Marco Bettini [Mon, 20 May 2024 09:17:31 +0000 (09:17 +0000)] 
auth: db-ldap - Drop subqueries

Subqueries are replaced by multiple passdb/userdb stanzas,
where the successive one sets ldap_base to the dn fetched/composed
using the fields of the previous one.

9 months agoauth: auth-request - Add auth_request_set_(pass|user)db_fields_ex()
Marco Bettini [Fri, 14 Jun 2024 15:14:49 +0000 (15:14 +0000)] 
auth: auth-request - Add auth_request_set_(pass|user)db_fields_ex()

9 months agolib-settings: Support overriding include groups via cli/userdb
Timo Sirainen [Tue, 27 Feb 2024 20:52:32 +0000 (22:52 +0200)] 
lib-settings: Support overriding include groups via cli/userdb

For example namespace/inbox/@mailboxes=foo is equivalent to:

namespace inbox {
  @mailboxes = foo
}

9 months agolib-settings, config: Add support for including groups
Timo Sirainen [Tue, 27 Feb 2024 20:47:54 +0000 (22:47 +0200)] 
lib-settings, config: Add support for including groups

It works like:

group @label name {
  ..any settings here..
}

any filter {
  @label = name
}

For example:

group @mailboxes defaults {
  mailbox Sent {
    special_use = \Sent
    auto = subscribe
  }
}
namespace inbox {
  @mailboxes = defaults
}

9 months agolib-settings: Move seen_filter to struct settings_apply_ctx
Timo Sirainen [Tue, 22 Oct 2024 12:32:35 +0000 (15:32 +0300)] 
lib-settings: Move seen_filter to struct settings_apply_ctx

Simplifies the following changes.

9 months agoconfig: Split off config_dump_full_write_filter()
Timo Sirainen [Mon, 3 Jun 2024 16:47:05 +0000 (19:47 +0300)] 
config: Split off config_dump_full_write_filter()

9 months agoconfig: Split off config_dump_full_stdout_write_filter()
Timo Sirainen [Mon, 3 Jun 2024 16:46:04 +0000 (19:46 +0300)] 
config: Split off config_dump_full_stdout_write_filter()

9 months agoconfig: Add some comments to config dumping code
Timo Sirainen [Tue, 27 Feb 2024 20:43:35 +0000 (22:43 +0200)] 
config: Add some comments to config dumping code

9 months agoplugins: acl_backend_user_is_in_group() - Retrofit array_bsearch() in place of array_...
Marco Bettini [Fri, 26 Jul 2024 07:43:39 +0000 (07:43 +0000)] 
plugins: acl_backend_user_is_in_group() - Retrofit array_bsearch() in place of array_get() + i_bsearch()

9 months agolib: Add event_filter_has_field_prefix()
Timo Sirainen [Tue, 22 Oct 2024 12:37:30 +0000 (15:37 +0300)] 
lib: Add event_filter_has_field_prefix()

9 months agolib: array - Make array_bsearch() const
Marco Bettini [Thu, 25 Jul 2024 15:40:41 +0000 (15:40 +0000)] 
lib: array - Make array_bsearch() const

9 months agolib: array - Add array_bsearch_modifiable()
Marco Bettini [Fri, 26 Jul 2024 09:04:05 +0000 (09:04 +0000)] 
lib: array - Add array_bsearch_modifiable()

9 months agolib: array - Generalize ARRAY_LSEARCH_CALL() into ARRAY_SEARCH_CALL()
Marco Bettini [Fri, 26 Jul 2024 08:56:54 +0000 (08:56 +0000)] 
lib: array - Generalize ARRAY_LSEARCH_CALL() into ARRAY_SEARCH_CALL()

9 months agolib: sort - Rename bsearch_(case)strcmp() into search_(case)strcmp()
Marco Bettini [Fri, 26 Jul 2024 07:49:17 +0000 (07:49 +0000)] 
lib: sort - Rename bsearch_(case)strcmp() into search_(case)strcmp()

9 months agodict: Add dict_name to command event
Aki Tuomi [Fri, 26 Jul 2024 10:54:37 +0000 (13:54 +0300)] 
dict: Add dict_name to command event

9 months agolib-settings, config: Differentiate between doveconf and config binaries
Vincent Kenbeek [Wed, 10 Jul 2024 09:19:41 +0000 (11:19 +0200)] 
lib-settings, config: Differentiate between doveconf and config binaries

9 months agoauth: passdb-bsdauth - Move settings from "args" to individual settings
Karl Fleischmann [Wed, 10 Jul 2024 12:03:02 +0000 (14:03 +0200)] 
auth: passdb-bsdauth - Move settings from "args" to individual settings

This commit enables bsdauth lookups caching by default while previously
it was necessary to supply a specific argument.

9 months agoauth: passdb-bsdauth - Add support for passdb_fields
Karl Fleischmann [Tue, 9 Jul 2024 12:27:38 +0000 (14:27 +0200)] 
auth: passdb-bsdauth - Add support for passdb_fields

9 months agodict: Support accessing non-legacy dicts
Timo Sirainen [Thu, 21 Mar 2024 22:25:36 +0000 (00:25 +0200)] 
dict: Support accessing non-legacy dicts

The dicts can be configured inside dict_server { .. } filter, e.g.:

dict_server {
  dict cassandra {
    ..
  }
  dict cassandra2 {
    driver = cassandra
    ..
  }
}

9 months agolib-dict: Add dict_init_filter_auto()
Timo Sirainen [Thu, 21 Mar 2024 22:25:18 +0000 (00:25 +0200)] 
lib-dict: Add dict_init_filter_auto()

9 months agodict: Rename dict_settings variables to server_settings
Timo Sirainen [Thu, 21 Mar 2024 22:09:06 +0000 (00:09 +0200)] 
dict: Rename dict_settings variables to server_settings

9 months agodict: Rename dict_init_cache_get() to dict_init_cache_get_legacy()
Timo Sirainen [Thu, 21 Mar 2024 22:03:53 +0000 (00:03 +0200)] 
dict: Rename dict_init_cache_get() to dict_init_cache_get_legacy()

9 months agodict: Rename dict_server_settings.dicts to legacy_dicts
Timo Sirainen [Thu, 21 Mar 2024 22:01:35 +0000 (00:01 +0200)] 
dict: Rename dict_server_settings.dicts to legacy_dicts

9 months agolib: Update pool_add_external_ref() comment
Timo Sirainen [Sat, 23 Mar 2024 11:45:58 +0000 (13:45 +0200)] 
lib: Update pool_add_external_ref() comment

9 months agolib-storage: Don't keep SETTINGS_EVENT_FILTER_NAME=storage_name in mailbox_list.event
Timo Sirainen [Wed, 29 May 2024 20:28:43 +0000 (23:28 +0300)] 
lib-storage: Don't keep SETTINGS_EVENT_FILTER_NAME=storage_name in mailbox_list.event

This fixes fts_dovecot, which was wrongly using obox's default fs settings.

9 months agolib-imap-client: Fix infinite reconnection loop on some connect/certificate failures
Karl Fleischmann [Tue, 26 Mar 2024 13:18:24 +0000 (14:18 +0100)] 
lib-imap-client: Fix infinite reconnection loop on some connect/certificate failures

9 months agoauth: passdb-imap - Add support for passdb_fields
Karl Fleischmann [Wed, 28 Feb 2024 16:49:50 +0000 (17:49 +0100)] 
auth: passdb-imap - Add support for passdb_fields

9 months agolib-imap-client: Differentiate time settings in imap client settings
Karl Fleischmann [Thu, 29 Feb 2024 11:58:34 +0000 (12:58 +0100)] 
lib-imap-client: Differentiate time settings in imap client settings

9 months agolib-imap-client: Remove obsolete imapc_client_settings
Karl Fleischmann [Thu, 29 Feb 2024 13:17:13 +0000 (14:17 +0100)] 
lib-imap-client: Remove obsolete imapc_client_settings

9 months agolib-imap-client, lib-storage: Remove imapc_ssl_verify setting
Karl Fleischmann [Mon, 25 Mar 2024 14:00:53 +0000 (15:00 +0100)] 
lib-imap-client, lib-storage: Remove imapc_ssl_verify setting

In its place `ssl_client_require_valid_cert` must be used.

9 months agolib-imap-client: imapc_settings - Explicitly disallow setting imapc_max_line_length...
Karl Fleischmann [Mon, 8 Apr 2024 13:35:39 +0000 (15:35 +0200)] 
lib-imap-client: imapc_settings - Explicitly disallow setting imapc_max_line_length to 0

9 months agolib-imap-client: Copy attributes from settings into imapc_client struct
Karl Fleischmann [Wed, 13 Mar 2024 16:15:08 +0000 (17:15 +0100)] 
lib-imap-client: Copy attributes from settings into imapc_client struct

This allows overriding the settings' attributes via the imap client
creation parameters while maintain the constness of the settings struct.

9 months agolib-imap-client, global: Consolidate imap-client settings into imapc_client_init()
Karl Fleischmann [Fri, 1 Mar 2024 12:16:55 +0000 (13:16 +0100)] 
lib-imap-client, global: Consolidate imap-client settings into imapc_client_init()

Settings should not be implicitly overwritten as is currently done with
the imapc-client creation. This commit moves the settings-loading
mechanisms inside of imapc_client_init().

9 months agolib-imap-client, global: Replace imapc_client_settings with imapc_settings
Karl Fleischmann [Fri, 1 Mar 2024 12:07:46 +0000 (13:07 +0100)] 
lib-imap-client, global: Replace imapc_client_settings with imapc_settings

9 months agolib-imap-client, lib-storage: Move imapc_host validation into imapc_connection_connect
Karl Fleischmann [Thu, 4 Apr 2024 11:34:08 +0000 (13:34 +0200)] 
lib-imap-client, lib-storage: Move imapc_host validation into imapc_connection_connect

9 months agolib-imap-client, global: Split off imap client creation parameters
Karl Fleischmann [Thu, 29 Feb 2024 15:31:18 +0000 (16:31 +0100)] 
lib-imap-client, global: Split off imap client creation parameters

This commit helps differentiate imapc-specific settings from dynamic
options that the caller needs to set individually.

9 months agolib-imap-client: Add necessary imap-client settings
Karl Fleischmann [Wed, 28 Feb 2024 16:00:04 +0000 (17:00 +0100)] 
lib-imap-client: Add necessary imap-client settings

These attributes will be necessary in the next commit to fully replace
the imap-client settings handling from inside imapc_client_init().

9 months agolib-imap-client: Add new imapc_parameters struct
Karl Fleischmann [Wed, 28 Feb 2024 16:08:04 +0000 (17:08 +0100)] 
lib-imap-client: Add new imapc_parameters struct

This will be necessary to allow a caller of imapc_client_init() to
dynamically change attributes.

9 months agolib-imap-client: imapc-client - Remove debug setting
Karl Fleischmann [Thu, 15 Feb 2024 15:44:43 +0000 (16:44 +0100)] 
lib-imap-client: imapc-client - Remove debug setting

The parent event's debug flag is sufficient.

9 months agolib-storage/index/imapc, lib-imap-client: Move imapc_settings into lib-imap-client
Karl Fleischmann [Tue, 13 Feb 2024 14:15:08 +0000 (15:15 +0100)] 
lib-storage/index/imapc, lib-imap-client: Move imapc_settings into lib-imap-client

9 months agolib-imap-client: Make %{owner_user} the default imapc_user setting
Karl Fleischmann [Wed, 28 Feb 2024 16:00:51 +0000 (17:00 +0100)] 
lib-imap-client: Make %{owner_user} the default imapc_user setting

9 months agoauth: %{original_domain} wasn't escaped and may have caused a crash
Karl Fleischmann [Mon, 18 Mar 2024 14:17:20 +0000 (15:17 +0100)] 
auth: %{original_domain} wasn't escaped and may have caused a crash

9 months agoauth: Add %{owner_user} alias for %{user}
Karl Fleischmann [Thu, 14 Mar 2024 13:44:52 +0000 (14:44 +0100)] 
auth: Add %{owner_user} alias for %{user}

9 months agolib-storage: Fix parent event for mailbox_list
Aki Tuomi [Thu, 29 Feb 2024 13:26:23 +0000 (14:26 +0100)] 
lib-storage: Fix parent event for mailbox_list

This is mainly intended to allow mailbox_list->event access %{owner_*} variables in
shared namespaces, which is needed by the following imapc change.

9 months agolib-storage: Fix base event for imapc storage creation
Aki Tuomi [Thu, 29 Feb 2024 13:27:23 +0000 (14:27 +0100)] 
lib-storage: Fix base event for imapc storage creation

9 months agodict-sql: Implement new init() API
Timo Sirainen [Wed, 13 Mar 2024 21:35:25 +0000 (23:35 +0200)] 
dict-sql: Implement new init() API

9 months agodict-sql: Split off struct dict_sql_map_settings from dict_sql_legacy_settings
Timo Sirainen [Wed, 13 Mar 2024 20:53:01 +0000 (22:53 +0200)] 
dict-sql: Split off struct dict_sql_map_settings from dict_sql_legacy_settings

9 months agolib-dict-backend: Rename dict-sql-settings to dict-sql-legacy-settings
Timo Sirainen [Wed, 13 Mar 2024 19:40:36 +0000 (21:40 +0200)] 
lib-dict-backend: Rename dict-sql-settings to dict-sql-legacy-settings

9 months agodict-sql: Remove unused dict_sql_map.value_fields
Timo Sirainen [Wed, 13 Mar 2024 21:34:35 +0000 (23:34 +0200)] 
dict-sql: Remove unused dict_sql_map.value_fields

9 months agodict-sql: Remove obsolete value_hexblob setting
Timo Sirainen [Wed, 13 Mar 2024 20:38:48 +0000 (22:38 +0200)] 
dict-sql: Remove obsolete value_hexblob setting

It was replaced by value_type setting long time ago.

9 months agolib-sql: Add sql_driver event field
Timo Sirainen [Tue, 21 May 2024 22:26:16 +0000 (01:26 +0300)] 
lib-sql: Add sql_driver event field

9 months agolib-dict: Rename driver event field to dict_driver
Timo Sirainen [Tue, 21 May 2024 22:24:37 +0000 (01:24 +0300)] 
lib-dict: Rename driver event field to dict_driver

9 months agolib-storage: Whitespace cleanup
sergey.kitov [Fri, 12 Apr 2024 12:21:34 +0000 (15:21 +0300)] 
lib-storage: Whitespace cleanup

9 months agoimap: Whitespace cleanup
sergey.kitov [Wed, 4 Oct 2023 11:59:26 +0000 (14:59 +0300)] 
imap: Whitespace cleanup