Skip to content

Commit

Permalink
Raised rate limit from 20 to 50
Browse files Browse the repository at this point in the history
2018-Aug-05: Fix, Let's Encrypt has raised the rate limit to issue certificates for a domain in 7 days from 20 to 50,so I've updated it too.
  • Loading branch information
sahsanu committed Aug 5, 2018
1 parent 36bbc26 commit e4ea9e3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lectl
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@
# 2018-Feb-15: Fix, add 1 hour when showing the next date you could issue a cert when hitting the rate limit. This is because Let's Encrypt always issue the certificates using 1 hour less than real time but Let's Encrypt keeps the real time in their DB to remove expired limits (v0.13)
# 2018-Apr-16: Enhanced, added column CERT TYPE to show whether the logged cert is the Final cert or the Pre cert. Due LE is embeding SCT receipts in certificates, the certificates are logged twice, the pre certificate and the final cert with the embeded SCT receipts. As Final certificates are logged a few hours or days after the pre certificate, the script only takes care of pre certificates to check them against the rate limits (v0.14)
# 2018-Apr-16: Enhanced, added options [-p|--pre] and [-f|--final] to show only Pre certificates or to show only Final certificates. If no option, script will show both types of certificates. The rate limits using -f option could not be accurate due this type of cert takes too long to be logged. Rate limits using --pre option or none are counted using only the logged pre certs (v0.15)
# 2018-Aug-05: Fix, Let's Encrypt has raised the rate limit to issue certificates for a domain in 7 days from 20 to 50,so I've updated it too.
# TODO:
# Clean up and comment the code
# Create auto-update version (comming soon)
Expand All @@ -120,9 +121,9 @@ if [ "$(uname -s)" = "Darwin" ]; then
fi

# Script version/name variables
version='0.15'
version='0.16'
scriptname='lectl'
lastmodification='2018-April-16'
lastmodification='2018-August-5'
checknewversion=1
forceupgrade=0
maxnumberofcerts=100
Expand Down Expand Up @@ -170,7 +171,7 @@ columnsans=""
showexpired="1"
expired='&exclude=expired'
nonexpired="non expired "
ratelimit='20'
ratelimit='50'

# Define message functions
_echoerr() { echo "Error: $@" >&2; }
Expand Down

0 comments on commit e4ea9e3

Please sign in to comment.