You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_cyon_add_txt() { _info " - Adding DNS TXT entry..." add_txt_url="https://my.cyon.ch/domain/dnseditor/add-record-async" add_txt_data="zone=${fulldomain_idn}.&ttl=900&type=TXT&value=${txtvalue}"
Auf der letzten Zeile sehen wir die Parameter zone, ttl + value.
Neu heissen die anders, nämlich name, ttl + dnscontent, d.h. das hier wäre die richtige Version:
Thank you for creating an issue.
Since the ticket doesn't seem to be using one of our templates, we're marking this issue as low priority until further notice.
Das Problem beim acme-Script ist, dass die Parameter seit den Anpassungen des DNS-Editors bei cyon.ch leicht anders heissen. Sehen wir uns das Snippet an in https://github.com/acmesh-official/acme.sh/blob/master/dnsapi/dns_cyon.sh:
_cyon_add_txt() { _info " - Adding DNS TXT entry..." add_txt_url="https://my.cyon.ch/domain/dnseditor/add-record-async" add_txt_data="zone=${fulldomain_idn}.&ttl=900&type=TXT&value=${txtvalue}"
Auf der letzten Zeile sehen wir die Parameter zone, ttl + value.
Neu heissen die anders, nämlich name, ttl + dnscontent, d.h. das hier wäre die richtige Version:
add_txt_data="name=${fulldomain_idn}.&ttl=900&type=TXT&dnscontent=${txtvalue}"
The text was updated successfully, but these errors were encountered: