certbot-he-hook
certbot-he-hook copied to clipboard
Fixed HE.net authentication & domain not found error message variable.
My domains didn't auto renew and when I went to investigate it seems like Hurricane Electric no longer has "CGISESSID" in their cookie variable. SESSID logins are likely broken but this pull fixes logins using your username and password.
For the HE_SESSID , probably this is enough to fix it also:
elif [ -n "$HE_SESSID" ]; then
- HE_COOKIE="CGISESSID=${HE_SESSID}"
+ HE_COOKIE="${HE_SESSID}"
else
And the HE_SESSID must be the full cookie, taken from the cookie after a successful login in the browser... but it will probably work only for about 12hours
The patch works! 👍 Thanks JeffWDH!
Can confirm this patch allows renewals with user/pass.
May thanks @JeffWDH