From 24e30f7f1fd4d4f35a46b613b941c83d84dea8e8 Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Sun, 25 Sep 2022 10:51:22 +0200 Subject: config: remove default values for this-*-time-format Having a default value is confusing because to disable the dynamic time format, the users need to explicitly configure these settings to the empty string. Do not set default values for these settings when they are unset in the configuration. Comment the default config file values to serve as examples. Fixes: aae29324fdf5 ("config: fix default time format values") Reported-by: Nicolai Dagestad Signed-off-by: Robin Jarry Acked-by: Moritz Poldrack --- config/aerc.conf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'config/aerc.conf') diff --git a/config/aerc.conf b/config/aerc.conf index 6208f5d8..316e7f33 100644 --- a/config/aerc.conf +++ b/config/aerc.conf @@ -35,22 +35,22 @@ timestamp-format=2006-01-02 03:04 PM # Index-only time format for messages that were received/sent today. # If this is not specified, timestamp-format is used instead. # -# Default: "03:04 PM" (12 hour time) -this-day-time-format=03:04 PM +# Default: "" +#this-day-time-format=03:04 PM # # Index-only time format for messages that were received/sent within the last # 7 days. If this is not specified, timestamp-format is used instead. # -# Default: "Monday 03:04 PM" (Week day + 12 hour time) -this-week-time-format=Monday 03:04 PM +# Default: "" +#this-week-time-format=Monday 03:04 PM # # Index-only time format for messages that were received/sent this year. # If this is not specified, timestamp-format is used instead. # -# Default: "January 02" (Month + month day) -this-year-time-format=January 02 +# Default: "" +#this-year-time-format=January 02 # # Width of the sidebar, including the border. -- cgit