From 771e676953c54aa6c818020687b53470ec5597f3 Mon Sep 17 00:00:00 2001 From: Jason Cox Date: Thu, 22 Feb 2024 20:25:22 -0500 Subject: ipc: add more fine-grained options to disable IPC Add disable-ipc-mailto and disable-ipc-mbox to make mailto:... and mbox:... commands always run in a new instance, while still allowing aerc-internal commands (i.e., aerc :) to run over IPC. Changelog-added: Add config options `disable-ipc-mailto` and `disable-ipc-mbox` to make `mailto:...` and `mbox:...` commands always run in a new aerc instance. Signed-off-by: Jason Cox Acked-by: Robin Jarry --- doc/aerc-config.5.scd | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'doc/aerc-config.5.scd') diff --git a/doc/aerc-config.5.scd b/doc/aerc-config.5.scd index fae2abc2..d457e0ab 100644 --- a/doc/aerc-config.5.scd +++ b/doc/aerc-config.5.scd @@ -70,6 +70,18 @@ These options are configured in the *[general]* section of _aerc.conf_. Default: _false_ +*disable-ipc-mailto* = _true_ | _false_ + Don't run _mailto:..._ commands over IPC; start a new aerc instance with the + composer instead. + + Default: _false_ + +*disable-ipc-mbox* = _true_ | _false_ + Don't run _mbox:..._ commands over IPC; start a new aerc instance with the + mbox file instead. + + Default: _false_ + *term* = __ Set the $TERM environment variable used for the embedded terminal. -- cgit