aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/aerc.conf5
-rw-r--r--config/ui.go1
2 files changed, 6 insertions, 0 deletions
diff --git a/config/aerc.conf b/config/aerc.conf
index 0dfab7fc..92b92b8e 100644
--- a/config/aerc.conf
+++ b/config/aerc.conf
@@ -131,6 +131,11 @@
#
# Default: (no folders)
#empty-dirlist=(no folders)
+#
+# Value to set {{.Subject}} template to when subject is empty.
+#
+# Default: (no subject)
+#empty-subject=(no subject)
# Enable mouse events in the ui, e.g. clicking and scrolling with the mousewheel
#
diff --git a/config/ui.go b/config/ui.go
index 5539d288..f339066e 100644
--- a/config/ui.go
+++ b/config/ui.go
@@ -38,6 +38,7 @@ type UIConfig struct {
SidebarWidth int `ini:"sidebar-width" default:"20"`
EmptyMessage string `ini:"empty-message" default:"(no messages)"`
EmptyDirlist string `ini:"empty-dirlist" default:"(no folders)"`
+ EmptySubject string `ini:"empty-subject" default:"(no subject)"`
MouseEnabled bool `ini:"mouse-enabled"`
ThreadingEnabled bool `ini:"threading-enabled"`
ForceClientThreads bool `ini:"force-client-threads"`