Recent content by jaydouble

  1. J

    [SOLVED] Selectively delete many mails from queue

    if you use `jq -r` you don't need the sed -r, so the command is postqueue -j | jq -r 'select(.sender=="spammer@domain.com")|.queue_id' | postsuper -d - but thanks for the command, a bit faster then about 800 times select mail, and click delete
  2. J

    [TUTORIAL] How-To -- Lets Encrypt and PMG

    I've a bit updated script, this one will automatically update all nodes in the cluster. #!/bin/bash # post-hook see renewalparams in /etc/letsencrypt/renewal/$(hostname -f).conf # replace mail certificate cat /etc/letsencrypt/live/$(hostname -f)/fullchain.pem /etc/letsencrypt/live/$(hostname...
  3. J

    acme - transip

    Hi, I can add a dnsapi (https://github.com/acmesh-official/acme.sh/blob/master/dnsapi/dns_transip.sh) to proxmox (in /usr/share/proxmox-acme/dnsapi). Then I can add it to the array: $plugins in the file: /usr/share/perl5/PVE/ACME/DNSChallenge.pm. The main challenge with this plugin is that you...