diff options
-rw-r--r-- | notmuch-ssh-client | 2 | ||||
-rw-r--r-- | notmuch-ssh-server | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/notmuch-ssh-client b/notmuch-ssh-client index 6983fbe..d35a68a 100644 --- a/notmuch-ssh-client +++ b/notmuch-ssh-client | |||
@@ -3,4 +3,4 @@ | |||
3 | instance=${NOTMUCH_INSTANCE:-mail} | 3 | instance=${NOTMUCH_INSTANCE:-mail} |
4 | host=${NOTMUCH_HOST:-notmuch.odin} | 4 | host=${NOTMUCH_HOST:-notmuch.odin} |
5 | 5 | ||
6 | exec -- @openssh@/bin/ssh ${host} -- ${instance} $@ | 6 | exec -- @openssh@/bin/ssh -o ControlPath=none ${host} -- ${instance} $@ |
diff --git a/notmuch-ssh-server b/notmuch-ssh-server index 6a7a2ed..493bf02 100644 --- a/notmuch-ssh-server +++ b/notmuch-ssh-server | |||
@@ -25,6 +25,6 @@ if len(original_command) < 1: | |||
25 | 25 | ||
26 | config_section = original_command[0] | 26 | config_section = original_command[0] |
27 | 27 | ||
28 | command_environment = config.items(config_section) if config.has_section(config_section) else config.items(config.default_section) | 28 | command_environment = config[config_section] if config.has_section(config_section) else config[config.default_section] |
29 | 29 | ||
30 | os.execvpe('@notmuch@/bin/notmuch', original_command[1:], command_environment) | 30 | os.execvpe('@notmuch@/bin/notmuch', original_command[1:], command_environment) |