From 8f111e2caf045a3385fe0d069c3b94d1e9b8cf20 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 8 May 2022 12:25:06 +0200 Subject: deliver-email: Don't set an output stream on the executed program We don't need to get the output of the executed mail sender program. I added it for testing purposes. --- src/email.lisp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/email.lisp b/src/email.lisp index fe80af1..a606f06 100644 --- a/src/email.lisp +++ b/src/email.lisp @@ -6,7 +6,6 @@ (with-open-stream (sendmail-input (make-string-input-stream message)) (uiop:run-program (sendmail config) - :output "/tmp/wajir.output" :input sendmail-input)))) (defun build-email (config issue output-stream) -- cgit v1.2.3