* Re: [PATCH] ddns: Add provider Feste-IP.Net Signed-off-by: Martin Krieger <makrie@posteo.de> --- *IPv6 support included based on API description but not tested. *Test system is connected by VDSL with pure IPv4 (No IPv6 or dual stack). *Setup can handle IPv4, IPv6 or dual stack updates
[not found] <569B3659-E76C-484C-8A05-98A3A41AF2A2@posteo.de>
@ 2021-05-18 21:39 ` Peter Müller
2021-05-19 13:44 ` [PATCH] ddns: Add provider Feste-IP.Net Martin Krieger
0 siblings, 1 reply; 4+ messages in thread
From: Peter Müller @ 2021-05-18 21:39 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 5170 bytes --]
Hi,
thanks for your reply.
First, please do not forget to keep the mailing list CC'ed. For transparency reasons, we have a policy here
stating to keep public conversations public (please refer to https://wiki.ipfire.org/devel/contact for details).
Second, your patches _did_ made it into patchwork. They can be found in the "ipfire" section - for your convenience,
here is a list of all active patches submitted by you patchwork currently knows about:
https://patchwork.ipfire.org/project/ipfire/list/?submitter=93
Once having logged in, you can mark patches as being "superseded", so they won't appear as being active anymore.
Third, I have seen your updated patch and will comment on it separately the other day.
Thanks, and best regards,
Peter Müller
> Hello Peter,
>
> thanks for your reply. Sorry for confusion about the patch. I tried to fullfill the requirements, but due to my low experience on the git process it went accidantely wrong.
>
> I will improve & resubmit my patch according to your comments.
>
> What ist the right way to mark patches as obsolete or remove them? My patches doesn‘t seem to enter https://patchwork.ipfire.org.
>
> Regards,
>
> Martin Krieger
>
> Von meinem iPad gesendet
>
>> Am 17.05.2021 um 21:31 schrieb Peter Müller <peter.mueller(a)ipfire.org>:
>> Hi,
>>
>> thank you for providing this.
>>
>> I regret to inform you that
>>
>> (a) both this patch and it's precursor violate the syntax of patches applicable to git,
>> having parts of the description and various tags mangled into the RFC 5322 / MIME
>> "Subject" header.
>>
>> You do not need to use "git send-email" as such (personally, I do not use it either,
>> because my development environment cannot establish SMTP connections due to firewall
>> policies). However, IPFire's development heavily relies on Git, so please figure out
>> how to run the most basic commands such as "git commit" and "git format-patch" in
>> order to properly submit your patches.
>>
>> (b) these patches each success each other, however missing appropriate version tags
>> (such as [PATCH v2], [PATCH v3], etc.) in the RFC 5322 "Subject" header of their
>> mails.
>>
>> Since you did not mark the obsoleted patches as being superseded in https://patchwork.ipfire.org/,
>> either, this makes it hard to keep track of the latest version of your patch. Eventually,
>> we might apply, commend or reject based on the wrong one, because of simply having
>> overlooked there is a new, fixed version of it available.
>>
>> Apart from that, it would be good to see this patch tested with IPv6 and dual-stack scenarios
>> as well - please see also my remark(s) on this below. If I understood the documentation of
>> that DDNS provider correctly, you do not really need to supply two IP addresses having distinct
>> families. Could you at least try executing this snippet with two different IPv4 addresses?
>>
>>> ---
>>> README | 1 +
>>> src/ddns/providers.py | 27 +++++++++++++++++++++++++++
>>> 2 files changed, 28 insertions(+)
>>>
>>> diff --git a/README b/README
>>> index b6decb35c338..fa6ce5e598b8 100644
>>> --- a/README
>>> +++ b/README
>>> @@ -68,6 +68,7 @@ SUPPORTED PROVIDERS:
>>> easydns.com
>>> enom.com
>>> entrydns.net
>>> + feste-ip.net
>>> freedns.afraid.org
>>> inwx.com|de|at|ch|es
>>> itsdns.de
>>> diff --git a/src/ddns/providers.py b/src/ddns/providers.py
>>> index 56e6620c78ab..009e2c9e337d 100644
>>> --- a/src/ddns/providers.py
>>> +++ b/src/ddns/providers.py
>>> @@ -1179,6 +1179,33 @@ class DDNSProviderEntryDNS(DDNSProvider):
>>> raise DDNSUpdateError
>>>
>>>
>>> +class DDNSProviderFesteIPNet(DDNSProtocolDynDNS2, DDNSProvider):
>>> + handle = "feste-ip.net"
>>> + name = "Feste-IP.Net"
>>> + website = "https://www.feste-ip.net/"
>>> +
>>> + # Information about the format of the request is to be found
>>> + # https://forum.feste-ip.net/viewtopic.php?f=13&t=469
>>> +
>>> + myips = ("myip","myip2")
>>
>> Personal comment: Kinda ugly, but given the documentation of that provider, there is no
>> other choice to do this here...
>>
>>> +
>>> + url = "https://members.feste-ip.net/nic/update/"
>>> +
>>> + def update(self):
>>> + data = {
>>> + "hostname" : self.hostname
>>> + }
>>> +
>>> + for proto in DDNSProvider.protocols:
>>> + idx = 0
>>> + tmpip = self.get_address(proto)
>>> + if tmpip:
>>> + data[self.myips[idx]] = tmpip
>>> + idx += 1
>>> +
>>> + self.send_request(data)
>>
>> What is happening here if $tmpip equals a Boolean False?
>>
>>> +
>>> +
>>> class DDNSProviderFreeDNSAfraidOrg(DDNSProvider):
>>> handle = "freedns.afraid.org"
>>> name = "freedns.afraid.org"
>>
>> Thanks, and best regards,
>> Peter Müller
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ddns: Add provider Feste-IP.Net
2021-05-18 21:39 ` [PATCH] ddns: Add provider Feste-IP.Net Signed-off-by: Martin Krieger <makrie@posteo.de> --- *IPv6 support included based on API description but not tested. *Test system is connected by VDSL with pure IPv4 (No IPv6 or dual stack). *Setup can handle IPv4, IPv6 or dual stack updates Peter Müller
@ 2021-05-19 13:44 ` Martin Krieger
0 siblings, 0 replies; 4+ messages in thread
From: Martin Krieger @ 2021-05-19 13:44 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 5465 bytes --]
Hello Peter,
I marked the obsolete patches as "superseded".
Regards,
Martin Krieger
Peter Müller:
> Hi,
>
> thanks for your reply.
>
> First, please do not forget to keep the mailing list CC'ed. For transparency reasons, we have a policy here
> stating to keep public conversations public (please refer to https://wiki.ipfire.org/devel/contact for details).
>
> Second, your patches _did_ made it into patchwork. They can be found in
the "ipfire" section - for your convenience,
> here is a list of all active patches submitted by you patchwork currently knows about:
> https://patchwork.ipfire.org/project/ipfire/list/?submitter=93
>
> Once having logged in, you can mark patches as being "superseded", so they won't appear as being active anymore.
>
> Third, I have seen your updated patch and will comment on it separately
the other day.
>
> Thanks, and best regards,
> Peter Müller
>
>
>> Hello Peter,
>>
>> thanks for your reply. Sorry for confusion about the patch. I tried to
fullfill the requirements, but due to my low experience on the git process it went accidantely wrong.
>>
>> I will improve & resubmit my patch according to your comments.
>>
>> What ist the right way to mark patches as obsolete or remove them? My patches doesn‘t seem to enter https://patchwork.ipfire.org.
>>
>> Regards,
>>
>> Martin Krieger
>>
>> Von meinem iPad gesendet
>>
>>> Am 17.05.2021 um 21:31 schrieb Peter Müller <peter.mueller(a)ipfire.org>:
>>> Hi,
>>>
>>> thank you for providing this.
>>>
>>> I regret to inform you that
>>>
>>> (a) both this patch and it's precursor violate the syntax of patches applicable to git,
>>> having parts of the description and various tags mangled into the
RFC 5322 / MIME
>>> "Subject" header.
>>>
>>> You do not need to use "git send-email" as such (personally, I do
not use it either,
>>> because my development environment cannot establish SMTP connections due to firewall
>>> policies). However, IPFire's development heavily relies on Git, so please figure out
>>> how to run the most basic commands such as "git commit" and "git format-patch" in
>>> order to properly submit your patches.
>>>
>>> (b) these patches each success each other, however missing appropriate version tags
>>> (such as [PATCH v2], [PATCH v3], etc.) in the RFC 5322 "Subject" header of their
>>> mails.
>>>
>>> Since you did not mark the obsoleted patches as being superseded in https://patchwork.ipfire.org/,
>>> either, this makes it hard to keep track of the latest version of
your patch. Eventually,
>>> we might apply, commend or reject based on the wrong one, because
of simply having
>>> overlooked there is a new, fixed version of it available.
>>>
>>> Apart from that, it would be good to see this patch tested with IPv6 and dual-stack scenarios
>>> as well - please see also my remark(s) on this below. If I understood
the documentation of
>>> that DDNS provider correctly, you do not really need to supply two IP
addresses having distinct
>>> families. Could you at least try executing this snippet with two different IPv4 addresses?
>>>
>>>> ---
>>>> README | 1 +
>>>> src/ddns/providers.py | 27 +++++++++++++++++++++++++++
>>>> 2 files changed, 28 insertions(+)
>>>>
>>>> diff --git a/README b/README
>>>> index b6decb35c338..fa6ce5e598b8 100644
>>>> --- a/README
>>>> +++ b/README
>>>> @@ -68,6 +68,7 @@ SUPPORTED PROVIDERS:
>>>> easydns.com
>>>> enom.com
>>>> entrydns.net
>>>> + feste-ip.net
>>>> freedns.afraid.org
>>>> inwx.com|de|at|ch|es
>>>> itsdns.de
>>>> diff --git a/src/ddns/providers.py b/src/ddns/providers.py
>>>> index 56e6620c78ab..009e2c9e337d 100644
>>>> --- a/src/ddns/providers.py
>>>> +++ b/src/ddns/providers.py
>>>> @@ -1179,6 +1179,33 @@ class DDNSProviderEntryDNS(DDNSProvider):
>>>> raise DDNSUpdateError
>>>>
>>>>
>>>> +class DDNSProviderFesteIPNet(DDNSProtocolDynDNS2, DDNSProvider):
>>>> + handle = "feste-ip.net"
>>>> + name = "Feste-IP.Net"
>>>> + website = "https://www.feste-ip.net/"
>>>> +
>>>> + # Information about the format of the request is to be found
>>>> + # https://forum.feste-ip.net/viewtopic.php?f=13&t=469
>>>> +
>>>> + myips = ("myip","myip2")
>>>
>>> Personal comment: Kinda ugly, but given the documentation of that provider, there is no
>>> other choice to do this here...
>>>
>>>> +
>>>> + url = "https://members.feste-ip.net/nic/update/"
>>>> +
>>>> + def update(self):
>>>> + data = {
>>>> + "hostname" : self.hostname
>>>> + }
>>>> +
>>>> + for proto in DDNSProvider.protocols:
>>>> + idx = 0
>>>> + tmpip = self.get_address(proto)
>>>> + if tmpip:
>>>> + data[self.myips[idx]] = tmpip
>>>> + idx += 1
>>>> +
>>>> + self.send_request(data)
>>>
>>> What is happening here if $tmpip equals a Boolean False?
>>>
>>>> +
>>>> +
>>>> class DDNSProviderFreeDNSAfraidOrg(DDNSProvider):
>>>> handle = "freedns.afraid.org"
>>>> name = "freedns.afraid.org"
>>>
>>> Thanks, and best regards,
>>> Peter Müller
>>
[-- Attachment #2: OpenPGP_signature.sig --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ddns: Add provider Feste-IP.Net Signed-off-by: Martin Krieger <makrie@posteo.de> --- *IPv6 support included based on API description but not tested. *Test system is connected by VDSL with pure IPv4 (No IPv6 or dual stack). *Setup can handle IPv4, IPv6 or dual stack updates
2021-05-17 14:18 [PATCH] ddns: Add provider Feste-IP.Net Signed-off-by: Martin Krieger <makrie@posteo.de> --- *IPv6 support included based on API description but not tested. *Test system is connected by VDSL with pure IPv4 (No IPv6 or dual stack). *Setup can handle IPv4, IPv6 or dual stack updates Martin Krieger
@ 2021-05-17 19:31 ` Peter Müller
0 siblings, 0 replies; 4+ messages in thread
From: Peter Müller @ 2021-05-17 19:31 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 3617 bytes --]
Hi,
thank you for providing this.
I regret to inform you that
(a) both this patch and it's precursor violate the syntax of patches applicable to git,
having parts of the description and various tags mangled into the RFC 5322 / MIME
"Subject" header.
You do not need to use "git send-email" as such (personally, I do not use it either,
because my development environment cannot establish SMTP connections due to firewall
policies). However, IPFire's development heavily relies on Git, so please figure out
how to run the most basic commands such as "git commit" and "git format-patch" in
order to properly submit your patches.
(b) these patches each success each other, however missing appropriate version tags
(such as [PATCH v2], [PATCH v3], etc.) in the RFC 5322 "Subject" header of their
mails.
Since you did not mark the obsoleted patches as being superseded in https://patchwork.ipfire.org/,
either, this makes it hard to keep track of the latest version of your patch. Eventually,
we might apply, commend or reject based on the wrong one, because of simply having
overlooked there is a new, fixed version of it available.
Apart from that, it would be good to see this patch tested with IPv6 and dual-stack scenarios
as well - please see also my remark(s) on this below. If I understood the documentation of
that DDNS provider correctly, you do not really need to supply two IP addresses having distinct
families. Could you at least try executing this snippet with two different IPv4 addresses?
> ---
> README | 1 +
> src/ddns/providers.py | 27 +++++++++++++++++++++++++++
> 2 files changed, 28 insertions(+)
>
> diff --git a/README b/README
> index b6decb35c338..fa6ce5e598b8 100644
> --- a/README
> +++ b/README
> @@ -68,6 +68,7 @@ SUPPORTED PROVIDERS:
> easydns.com
> enom.com
> entrydns.net
> + feste-ip.net
> freedns.afraid.org
> inwx.com|de|at|ch|es
> itsdns.de
> diff --git a/src/ddns/providers.py b/src/ddns/providers.py
> index 56e6620c78ab..009e2c9e337d 100644
> --- a/src/ddns/providers.py
> +++ b/src/ddns/providers.py
> @@ -1179,6 +1179,33 @@ class DDNSProviderEntryDNS(DDNSProvider):
> raise DDNSUpdateError
>
>
> +class DDNSProviderFesteIPNet(DDNSProtocolDynDNS2, DDNSProvider):
> + handle = "feste-ip.net"
> + name = "Feste-IP.Net"
> + website = "https://www.feste-ip.net/"
> +
> + # Information about the format of the request is to be found
> + # https://forum.feste-ip.net/viewtopic.php?f=13&t=469
> +
> + myips = ("myip","myip2")
Personal comment: Kinda ugly, but given the documentation of that provider, there is no
other choice to do this here...
> +
> + url = "https://members.feste-ip.net/nic/update/"
> +
> + def update(self):
> + data = {
> + "hostname" : self.hostname
> + }
> +
> + for proto in DDNSProvider.protocols:
> + idx = 0
> + tmpip = self.get_address(proto)
> + if tmpip:
> + data[self.myips[idx]] = tmpip
> + idx += 1
> +
> + self.send_request(data)
What is happening here if $tmpip equals a Boolean False?
> +
> +
> class DDNSProviderFreeDNSAfraidOrg(DDNSProvider):
> handle = "freedns.afraid.org"
> name = "freedns.afraid.org"
>
Thanks, and best regards,
Peter Müller
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] ddns: Add provider Feste-IP.Net Signed-off-by: Martin Krieger <makrie@posteo.de> --- *IPv6 support included based on API description but not tested. *Test system is connected by VDSL with pure IPv4 (No IPv6 or dual stack). *Setup can handle IPv4, IPv6 or dual stack updates
@ 2021-05-17 14:18 Martin Krieger
2021-05-17 19:31 ` Peter Müller
0 siblings, 1 reply; 4+ messages in thread
From: Martin Krieger @ 2021-05-17 14:18 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1638 bytes --]
---
README | 1 +
src/ddns/providers.py | 27 +++++++++++++++++++++++++++
2 files changed, 28 insertions(+)
diff --git a/README b/README
index b6decb35c338..fa6ce5e598b8 100644
--- a/README
+++ b/README
@@ -68,6 +68,7 @@ SUPPORTED PROVIDERS:
easydns.com
enom.com
entrydns.net
+ feste-ip.net
freedns.afraid.org
inwx.com|de|at|ch|es
itsdns.de
diff --git a/src/ddns/providers.py b/src/ddns/providers.py
index 56e6620c78ab..009e2c9e337d 100644
--- a/src/ddns/providers.py
+++ b/src/ddns/providers.py
@@ -1179,6 +1179,33 @@ class DDNSProviderEntryDNS(DDNSProvider):
raise DDNSUpdateError
+class DDNSProviderFesteIPNet(DDNSProtocolDynDNS2, DDNSProvider):
+ handle = "feste-ip.net"
+ name = "Feste-IP.Net"
+ website = "https://www.feste-ip.net/"
+
+ # Information about the format of the request is to be found
+ # https://forum.feste-ip.net/viewtopic.php?f=13&t=469
+
+ myips = ("myip","myip2")
+
+ url = "https://members.feste-ip.net/nic/update/"
+
+ def update(self):
+ data = {
+ "hostname" : self.hostname
+ }
+
+ for proto in DDNSProvider.protocols:
+ idx = 0
+ tmpip = self.get_address(proto)
+ if tmpip:
+ data[self.myips[idx]] = tmpip
+ idx += 1
+
+ self.send_request(data)
+
+
class DDNSProviderFreeDNSAfraidOrg(DDNSProvider):
handle = "freedns.afraid.org"
name = "freedns.afraid.org"
--
2.31.0
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-05-19 13:44 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <569B3659-E76C-484C-8A05-98A3A41AF2A2@posteo.de>
2021-05-18 21:39 ` [PATCH] ddns: Add provider Feste-IP.Net Signed-off-by: Martin Krieger <makrie@posteo.de> --- *IPv6 support included based on API description but not tested. *Test system is connected by VDSL with pure IPv4 (No IPv6 or dual stack). *Setup can handle IPv4, IPv6 or dual stack updates Peter Müller
2021-05-19 13:44 ` [PATCH] ddns: Add provider Feste-IP.Net Martin Krieger
2021-05-17 14:18 [PATCH] ddns: Add provider Feste-IP.Net Signed-off-by: Martin Krieger <makrie@posteo.de> --- *IPv6 support included based on API description but not tested. *Test system is connected by VDSL with pure IPv4 (No IPv6 or dual stack). *Setup can handle IPv4, IPv6 or dual stack updates Martin Krieger
2021-05-17 19:31 ` Peter Müller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox