Re: Deprecation notice force BIND 9.20+: "rrset-order fixed" and "sortlist"

2024-03-01 Thread Marcus Kool
On 01/03/2024 11:02, Jim Reid wrote: On 1 Mar 2024, at 10:37, Greg Choules via bind-users wrote: In summary, Do the hard work of traffic steering somewhere else and let your DNS resolvers deliver the chosen answer. Don't make the resolvers themselves try to do this on the basis of

Re: Email migration and MX records

2023-01-04 Thread Marcus Kool
SMTP is a wonderful protocol that queues messages and retries delivery for 5 days so a non-responsive email server is no issue. Just do not have a temporary solution that bounces emails since those will never arrive (the sender is notified about the bounce). Marcus On 03/01/2023 21:31, Bruce

Re: plugin_version

2022-12-15 Thread Marcus Kool
code on us and don’t care anymore - there’s associated maintenance cost with any new feature.) Ondrej -- Ondřej Surý — ISC (He/Him) My working hours and your working hours may be different. Please do not feel obligated to reply outside your normal working hours. On 15. 12. 2022, at 20:10, Marcus K

plugin_version

2022-12-15 Thread Marcus Kool
Hi, I have written a plugin for named and was wondering what the policy behind the usage of plugin_version() is and what kind of compatibility check it intends to perform. It is common for plugins to use query_ctx_t and its members fname, view, client (client.message, client.query) etc.

Re: when does bind calls plugin_destroy ?

2022-11-28 Thread Marcus Kool
On 28/11/2022 22:07, Evan Hunt wrote: On Mon, Nov 28, 2022 at 12:53:16PM +, Marcus Kool wrote: In a test setup there are two instances of the same plugin and everything works as expected (plugin_register is called twice - once for each view). However, "rndc reconfig" calls plugi

when does bind calls plugin_destroy ?

2022-11-28 Thread Marcus Kool
Hi, I am developing a plugin for Bind.  The API has 4 functions: plugin_register, plugin_check, plugin_version and plugin_destroy. In a test setup there are two instances of the same plugin and everything works as expected (plugin_register is called twice - once for each view). However,