diff options
author | 2024-09-05 18:35:49 +0200 | |
---|---|---|
committer | 2024-09-05 18:35:49 +0200 | |
commit | f6a594e5bd8c6b0feaf8f8997fdbf5c7f2bd2995 (patch) | |
tree | 6009d364816347b78fd504a47c2c0feaafab6b73 | |
parent | Document Fredrick's vacation script in header (diff) |
Schedule vacation replies on nice queueschedule-vacation-script-nicely
-rw-r--r-- | ansible/roles/postfix/templates/services/fredrick-reply.sh.j2 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ansible/roles/postfix/templates/services/fredrick-reply.sh.j2 b/ansible/roles/postfix/templates/services/fredrick-reply.sh.j2 index 0bc0f33..b33c7c4 100644 --- a/ansible/roles/postfix/templates/services/fredrick-reply.sh.j2 +++ b/ansible/roles/postfix/templates/services/fredrick-reply.sh.j2 @@ -88,5 +88,6 @@ cat > "$ATSCRIPT" <<EOF rm "$REPLY_PATH" EOF -at -f "$ATSCRIPT" now + 10 min +# Use the z queue for maximum niceness +at -q z -f "$ATSCRIPT" now + 10 min rm "$ATSCRIPT" |