diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2019-11-24 20:14:07 +0100 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2019-11-24 20:14:07 +0100 |
commit | f55aa62c7dd25d44b37985ef5f109eb8212f5ae7 (patch) | |
tree | 9d286ec3dc4bab784cf771cb891b524b60a3583c /notmuch-tcp | |
parent | f28f4fc1bef6ebabb9c340c3fdfb92eee1423c5c (diff) | |
download | utils-f55aa62c7dd25d44b37985ef5f109eb8212f5ae7.tar utils-f55aa62c7dd25d44b37985ef5f109eb8212f5ae7.tar.gz utils-f55aa62c7dd25d44b37985ef5f109eb8212f5ae7.tar.bz2 utils-f55aa62c7dd25d44b37985ef5f109eb8212f5ae7.tar.xz utils-f55aa62c7dd25d44b37985ef5f109eb8212f5ae7.zip |
fix paths
Diffstat (limited to 'notmuch-tcp')
-rwxr-xr-x | notmuch-tcp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/notmuch-tcp b/notmuch-tcp index 71680d0..57da3f5 100755 --- a/notmuch-tcp +++ b/notmuch-tcp | |||
@@ -1,9 +1,9 @@ | |||
1 | #!@zsh@/bin/zsh | 1 | #!@zsh@/bin/zsh |
2 | 2 | ||
3 | NOTMUCH_TCP=${NOTMUCH_TCP:-2010} | 3 | NOTMUCH_TCP=${NOTMUCH_TCP:-2010} |
4 | HOST=${HOST:-$(@nettools/bin/hostname -s)} | 4 | HOST=${HOST:-$(@nettools@/bin/hostname -s)} |
5 | NOTMUCH_HOST=${NOTMUCH_HOST:-odin.asgard.yggdrasil} | 5 | NOTMUCH_HOST=${NOTMUCH_HOST:-odin.asgard.yggdrasil} |
6 | 6 | ||
7 | cd ~/.notmuch-tcp | 7 | cd ~/.notmuch-tcp |
8 | 8 | ||
9 | @socat@/bin/socat STDIO,ignoreeof openssl:${NOTMUCH_HOST}:${NOTMUCH_TCP},verify=1,cafile=ca.pem,certificate=${HOST}.pem,key=${HOST}.key <<(print "${(@q)@}"; inp=$(cat); printf "%d\n" $(wc -c <<<"${inp}"); cat <<<"${inp}") | 9 | @socat@/bin/socat STDIO,ignoreeof openssl:${NOTMUCH_HOST}:${NOTMUCH_TCP},verify=1,cafile=ca.pem,certificate=${HOST}.pem,key=${HOST}.key <<(print "${(@q)@}"; inp=$(cat); printf "%d\n" $(@coreutils@/bin/wc -c <<<"${inp}"); @coreutils@/bin/cat <<<"${inp}") |