diff options
author | Erich Eckner <git@eckner.net> | 2017-08-17 13:09:00 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2017-08-17 13:09:00 +0200 |
commit | ad48b6b8d0ba0d6b984c8a13e60592a21723e66b (patch) | |
tree | 37936d4d3d0f6df08df1840915315854ee3934e6 | |
parent | b77967668fb36d354c36d309923071669084c7c2 (diff) | |
download | sendmailadvanced-ad48b6b8d0ba0d6b984c8a13e60592a21723e66b.tar.xz |
fix bug when encrypting to multiple recipients
-rwxr-xr-x | sendmailadvanced.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sendmailadvanced.in b/sendmailadvanced.in index f362500..3c12fe8 100755 --- a/sendmailadvanced.in +++ b/sendmailadvanced.in @@ -251,7 +251,7 @@ fi cat echo '' ) | \ - gpg -e -a -s $(gpgAdressaten | sed 's| $||') + eval "gpg -e -a -s $(gpgAdressaten | sed 's| $||')" else cat fi |