aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/aerc.conf12
-rw-r--r--config/general.go2
2 files changed, 14 insertions, 0 deletions
diff --git a/config/aerc.conf b/config/aerc.conf
index 70f07949..5fa1e6f1 100644
--- a/config/aerc.conf
+++ b/config/aerc.conf
@@ -45,6 +45,18 @@
# Default: false
#disable-ipc=false
+# Don't run mailto:... commands over IPC; start a new aerc instance with the
+# composer instead.
+#
+# Default: false
+#disable-ipc-mailto=false
+#
+# Don't run mbox:... commands over IPC; start a new aerc instance with the mbox
+# file instead.
+#
+# Default: false
+#disable-ipc-mbox=false
+
# Set the $TERM environment variable used for the embedded terminal.
#
# Default: xterm-256color
diff --git a/config/general.go b/config/general.go
index 6dc674b0..6fd37dcf 100644
--- a/config/general.go
+++ b/config/general.go
@@ -17,6 +17,8 @@ type GeneralConfig struct {
LogFile string `ini:"log-file"`
LogLevel log.LogLevel `ini:"log-level" default:"info" parse:"ParseLogLevel"`
DisableIPC bool `ini:"disable-ipc"`
+ DisableIPCMailto bool `ini:"disable-ipc-mailto"`
+ DisableIPCMbox bool `ini:"disable-ipc-mbox"`
EnableOSC8 bool `ini:"enable-osc8" default:"false"`
Term string `ini:"term" default:"xterm-256color"`
DefaultMenuCmd string `ini:"default-menu-cmd"`