From 5eeda248fd90d161c8b346604f603d4a0a37ec6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20DOUIN?= Date: Thu, 19 Dec 2024 09:19:17 +0100 Subject: [PATCH] docs: fix folder.aliases Fixed wrong folder.alias is the README and in the config.sample.toml. Refs: #526 --- README.md | 16 ++++++++-------- config.sample.toml | 12 ++++++------ 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index f4d55340..f2fe9ab0 100644 --- a/README.md +++ b/README.md @@ -289,10 +289,10 @@ You can also manually edit your own configuration, from scratch: [accounts.gmail] email = "example@gmail.com" - folder.alias.inbox = "INBOX" - folder.alias.sent = "[Gmail]/Sent Mail" - folder.alias.drafts = "[Gmail]/Drafts" - folder.alias.trash = "[Gmail]/Trash" + folder.aliases.inbox = "INBOX" + folder.aliases.sent = "[Gmail]/Sent Mail" + folder.aliases.drafts = "[Gmail]/Drafts" + folder.aliases.trash = "[Gmail]/Trash" backend.type = "imap" backend.type.host = "imap.gmail.com" @@ -335,10 +335,10 @@ You can also manually edit your own configuration, from scratch: [accounts.gmail] email = "example@gmail.com" - folder.alias.inbox = "INBOX" - folder.alias.sent = "[Gmail]/Sent Mail" - folder.alias.drafts = "[Gmail]/Drafts" - folder.alias.trash = "[Gmail]/Trash" + folder.aliases.inbox = "INBOX" + folder.aliases.sent = "[Gmail]/Sent Mail" + folder.aliases.drafts = "[Gmail]/Drafts" + folder.aliases.trash = "[Gmail]/Trash" backend.type = "imap" backend.host = "imap.gmail.com" diff --git a/config.sample.toml b/config.sample.toml index 45037ce8..b8b57a27 100644 --- a/config.sample.toml +++ b/config.sample.toml @@ -99,11 +99,11 @@ downloads-dir = "~/downloads" # by the tool: inbox, sent, drafts and trash. Other aliases can be # defined as well. # -folder.alias.inbox = "INBOX" -folder.alias.sent = "Sent" -folder.alias.drafts = "Drafts" -folder.alias.trash = "Trash" -folder.alias.a23 = "Archives/2023" +folder.aliases.inbox = "INBOX" +folder.aliases.sent = "Sent" +folder.aliases.drafts = "Drafts" +folder.aliases.trash = "Trash" +folder.aliases.a23 = "Archives/2023" # Customizes the number of folders to show by page. # @@ -213,7 +213,7 @@ message.read.format = "auto" message.write.headers = ["From", "To", "In-Reply-To", "Cc", "Subject"] # Saves a copy of sent messages to the sent folder. The sent folder is -# taken from folder.alias, defaults to Sent. +# taken from folder.aliases, defaults to Sent. # message.send.save-copy = true