diff options
author | EuAndreh <eu@euandre.org> | 2023-03-11 11:27:55 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-11 11:27:55 -0300 |
commit | d629e511fbc602a30215ffdb5cee7d27468602c9 (patch) | |
tree | 500a4dba1f6c4878af7bb119b75d88f3b4f0774f /src/xyz/euandreh | |
parent | Makefile: Add rule to generate "EuAndreh.key" (diff) | |
download | package-repository-d629e511fbc602a30215ffdb5cee7d27468602c9.tar.gz package-repository-d629e511fbc602a30215ffdb5cee7d27468602c9.tar.xz |
queue.scm: Fix parentheses matching
Diffstat (limited to 'src/xyz/euandreh')
-rw-r--r-- | src/xyz/euandreh/queue.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xyz/euandreh/queue.scm b/src/xyz/euandreh/queue.scm index f17a263..4183ae8 100644 --- a/src/xyz/euandreh/queue.scm +++ b/src/xyz/euandreh/queue.scm @@ -1057,7 +1057,7 @@ keyfile ~a/private.key (define (postfix-nginx-locations config) - (match-record config <postfix-configuration>) + (match-record config <postfix-configuration> (hostname) (nginx-server-configuration (server-name (list (string-append "mta-sts." hostname))) @@ -1080,7 +1080,7 @@ mx: ~a max_age: 604800 " hostname)) - ";")))))))) + ";"))))))))) (define (postfix-certificates config) (match-record config <postfix-configuration> |