l

Results 758 comments of l

@Fenex See another issue, GOG version is still outdated: https://github.com/KranX/Vangers/issues/639 As of 2024-07-20, GOG still has 1.46 Windows, 1.46a macOS and 1.45 Linux version. Last update is from 2018-07-23 according...

How about defaulting to automatic separator detection? Separator is either ',' or '\t', whichever comes first.

@BurntSushi right, that is why I say "default to". If someone wants a robust script, he can write "-d,". But when just using xsv from the command line, I think...

Let's close this for now as not planned. We also have SSH server keys and TLS keys which are generated on the server. SSH keys are difficult to rotate unless...

Reopening the issue. It seems to be feasible to rotate DKIM keys automatically by asking the admin to delegate `_domainkey` subdomain to `config.domain_name` and running [`nsd`](https://nlnetlabs.nl/nsd) locally just for this...

Testing NSD on c1.testrun.org. `/etc/nsd/nsd.conf`: ``` server: # log only to syslog. log-only-syslog: yes zone: name: "_domainkey.c1.testrun.org" zonefile: "/etc/nsd/chatmail.zone" ``` `/etc/nsd/chatmail.zone`: ``` $ORIGIN _domainkey.c1.testrun.org. $TTL 86400 @ IN SOA c1.testrun.org....

@feld > Everything will fall back to the A/AAAA record so it's really unnecessary unless you have a more complicated architecture and want multiple MX records with priorities. The reason...

I think we can remove current `/metrics` entpoint and replace it with [`mtail`](https://github.com/google/mtail/) if we make doveauth log all account creation events together with the account name so `mtail` pattern...

New doveauth-based counter after merging #349 looks like this in `mtail`: ``` counter created_accounts counter created_ci_accounts counter created_nonci_accounts /: Created account (?P.*)$/ { created_accounts++ $addr =~ /ci-/ { created_ci_accounts++ }...

Current mtail scripts: ``` counter delivered_mail /saved mail to INBOX$/ { delivered_mail++ } counter quota_exceeded /Quota exceeded \(mailbox for user is full\)$/ { quota_exceeded++ } # Essentially the number of...