Feature Requests item #2832129, was opened at 2009-08-04 13:20
Message generated for change (Comment added) made by dupuy
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=676131&aid=2832129&group_id=116817
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Access to other dyndns service providers
Group: None
Status: Open
Priority: 5
Private: No
Submitted By: Alexander Dupuy (dupuy)
Assigned to: wimpunk (wimpunk)
Summary: support for freedns.afraid.org
Initial Comment:
John Haney posted a patch for freedns.afraid.org support back in December 2008:
https://sourceforge.net/forum/forum.php?thread_id=2681547&forum_id=399427
I have reformatted his patch slightly to match the whitespace and bracing style of ddclient, and attached it to this feature request.
.conf file example is:
protocol=freedns, \
login=my-freedns.afraid.org-login, \
password=my-freedns.afraid.org-password \
myhost.afraid.com
----------------------------------------------------------------------
>Comment By: Alexander Dupuy (dupuy)
Date: 2009-08-04 13:48
Message:
One potential disadvantage of the patch as I posted it (from John Haney) is
the presence of the "use Digest::SHA1" which creates a dependency on that
perl module even in configurations where no freedns servers are
configured.
This could be worked around by removing that "use" line, and adding
something like this to the top of nic_freedns_update:
if (!eval "require Digest::SHA1; import Digest::SHA1 (qw/sha1_hex/);") {
failed("could not load Digest::SHA1: $@");
return;
}
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=676131&aid=2832129&group_id=116817
|