lexicon icon indicating copy to clipboard operation
lexicon copied to clipboard

Manipulate DNS records on various DNS providers in a standardized way.

Results 162 lexicon issues
Sort by recently updated
recently updated
newest added

Using lexicon on Ubuntu 20.04 LTS Installed like this: `sudo apt install lexicon` with version 3.3.17-1. With: `lexicon provider list domain A` ``` Traceback (most recent call last): File "/usr/bin/lexicon",...

Sort of an odd request, but support for FastMail DNS may be handy in some instances since they do not have an official API for managing DNS hosted with them,...

It seems like an obvious thing to get back, but when I try `lexicon PROVIDER list DOMAIN MX`, I don't get a column or any way to see the `priority`...

https://github.com/AnalogJ/lexicon/blob/0372195d1550cae551fee9109f033fea1a0294b0/lexicon/providers/gandi.py#L105 should be ``` if content not in current_values:```

https://github.com/AnalogJ/lexicon/blob/0372195d1550cae551fee9109f033fea1a0294b0/lexicon/providers/gandi.py#L185 The Gandi provider's `_update_record` method referenced above does not set ``` data["ttl"] = self._get_lexicon_option("ttl") or self.default_ttl ``` after https://github.com/AnalogJ/lexicon/blob/0372195d1550cae551fee9109f033fea1a0294b0/lexicon/providers/gandi.py#L193 Consequently, when calling Gandi with https://github.com/AnalogJ/lexicon/blob/0372195d1550cae551fee9109f033fea1a0294b0/lexicon/providers/gandi.py#L207 or https://github.com/AnalogJ/lexicon/blob/0372195d1550cae551fee9109f033fea1a0294b0/lexicon/providers/gandi.py#L212 the TTL...

Does lexicon support socks5 proxy when communicating with DNS providers? Regards, HY

When trying to query records in UltraDNS I am seeing the below in the debug log ``` "queryInfo":{"sort":"OWNER","reverse":false,"limit":100},"resultInfo":{"totalCount":220,"offset":0,"returnedCount":100}} ``` From the UltraDNS API docs ``` List all RRSets in a...

I came across lexicon looking for a way to simplify automatic setup of records for Debian packages. I had started a simple put-dns script to do this, but would prefer...

The easyname plugin only supports password authentication which is oh-so-bad for security. Easyname however does support auth-tokens for using their API, which can be obtained in the account section of...

Hi there, I've just tried to utilize the example in the examples folder for getting a list of records from cloudflare. The following code ````bash #!/usr/bin/python3 from lexicon.config import ConfigResolver...