From 94c304601e8ecfeadf75c3930ee6f0f0e24a89f6 Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Fri, 19 Jul 2024 19:21:25 -0400 Subject: [PATCH] easydns: Increase default `min-interval` to 10m --- ChangeLog.md | 3 +++ ddclient.in | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index 9b0a001..02667c4 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -43,6 +43,9 @@ repository history](https://github.com/ddclient/ddclient/commits/master). [#709](https://github.com/ddclient/ddclient/pull/709) * The diagnostic `--geturl` command-line argument was removed. [#712](https://github.com/ddclient/ddclient/pull/712) + * `easydns`: The default value for `min-interval` was increased from 5m to 10m + to match easyDNS documentation. + [#713](https://github.com/ddclient/ddclient/pull/713) ### New features diff --git a/ddclient.in b/ddclient.in index 45fa257..a31daab 100755 --- a/ddclient.in +++ b/ddclient.in @@ -866,7 +866,9 @@ our %protocols = ( 'variables' => { %{$variables{'protocol-common-defaults'}}, 'backupmx' => setv(T_BOOL, 0, 1, 0, undef), - 'min-interval' => setv(T_DELAY, 0, 0, interval('5m'), 0), + # From : "You need to wait at least 10 + # minutes between updates." + 'min-interval' => setv(T_DELAY, 0, 0, interval('10m'), 0), 'mx' => setv(T_OFQDN, 0, 1, undef, undef), 'server' => setv(T_FQDNP, 0, 0, 'api.cp.easydns.com', undef), 'script' => setv(T_STRING, 0, 1, '/dyn/generic.php', undef),