]> git.notmuchmail.org Git - notmuch/commitdiff
notmuch config: Add more documentation for maildir.synchronize_flags
authorCarl Worth <cworth@cworth.org>
Thu, 11 Nov 2010 12:06:23 +0000 (04:06 -0800)
committerCarl Worth <cworth@cworth.org>
Thu, 11 Nov 2010 12:06:23 +0000 (04:06 -0800)
Including details on which actual flags are synchronized with which tags.

notmuch-config.c

index 9ad564673f6a8223f91c83615eb6d17f0f5162aa..bace8e567fb465251f4213988e464ff705b423c9 100644 (file)
@@ -64,10 +64,24 @@ static const char user_config_comment[] =
 static const char maildir_config_comment[] =
     " Maildir compatibility configuration\n"
     "\n"
 static const char maildir_config_comment[] =
     " Maildir compatibility configuration\n"
     "\n"
-    " Here you can configure whether notmuch will synchronize its tags with\n"
-    " maildir flags."
+    " The following option is supported here:\n"
     "\n"
     "\n"
-    "\tsynchronize_flags      Valid values are true and false.\n";
+    "\tsynchronize_flags      Valid values are true and false.\n"
+    "\n"
+    "\tIf true, then the following maildir flags (in message filenames)\n"
+    "\twill be syncrhonized with the corresponding notmuch tags:\n"
+    "\n"
+    "\t\tFlag  Tag\n"
+    "\t\t----  -------\n"
+    "\t\tD     draft\n"
+    "\t\tF     flagged\n"
+    "\t\tP     passed\n"
+    "\t\tR     replied\n"
+    "\t\tS     unread (added when 'S' tag is not present)\n"
+    "\n"
+    "\tThe \"notmuch new\" command will notice flag changes in filenames\n"
+    "\tand update tags, while the \"notmuch tag\" and \"notmuch restore\"\n"
+    "\tcommands will notice tag changes and update flags in filenames\n";
 
 struct _notmuch_config {
     char *filename;
 
 struct _notmuch_config {
     char *filename;