diff options
author | Teddy Wing | 2022-05-08 12:25:06 +0200 |
---|---|---|
committer | Teddy Wing | 2022-05-08 12:27:13 +0200 |
commit | 8f111e2caf045a3385fe0d069c3b94d1e9b8cf20 (patch) | |
tree | 1f01aa1fe1e438a8f732af230d7a58e0531d9380 | |
parent | 40ae5a197024253c4db06ac27a1606d21414b693 (diff) | |
download | wajir-8f111e2caf045a3385fe0d069c3b94d1e9b8cf20.tar.bz2 |
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.
-rw-r--r-- | src/email.lisp | 1 |
1 files changed, 0 insertions, 1 deletions
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) |