.notmuch-config 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. # .notmuch-config - Configuration file for the notmuch mail system
  2. #
  3. # For more information about notmuch, see https://notmuchmail.org
  4. # Database configuration
  5. #
  6. # The only value supported here is 'path' which should be the top-level
  7. # directory where your mail currently exists and to where mail will be
  8. # delivered in the future. Files should be individual email messages.
  9. # Notmuch will store its database within a sub-directory of the path
  10. # configured here named ".notmuch".
  11. #
  12. [database]
  13. path=/home/ambrevar/.cache/mail/
  14. # User configuration
  15. #
  16. # Here is where you can let notmuch know how you would like to be
  17. # addressed. Valid settings are
  18. #
  19. # name Your full name.
  20. # primary_email Your primary email address.
  21. # other_email A list (separated by ';') of other email addresses
  22. # at which you receive email.
  23. #
  24. # Notmuch will use the various email addresses configured here when
  25. # formatting replies. It will avoid including your own addresses in the
  26. # recipient list of replies, and will set the From address based on the
  27. # address to which the original email was addressed.
  28. #
  29. [user]
  30. name=Pierre Neidhardt
  31. primary_email=mail@ambrevar.xyz
  32. other_email=pierre@atlas.engineer;
  33. # Configuration for "notmuch new"
  34. #
  35. # The following options are supported here:
  36. #
  37. # tags A list (separated by ';') of the tags that will be
  38. # added to all messages incorporated by "notmuch new".
  39. #
  40. # ignore A list (separated by ';') of file and directory names
  41. # that will not be searched for messages by "notmuch new".
  42. #
  43. # NOTE: *Every* file/directory that goes by one of those
  44. # names will be ignored, independent of its depth/location
  45. # in the mail store.
  46. #
  47. [new]
  48. tags=unread;inbox;
  49. ignore=
  50. # Search configuration
  51. #
  52. # The following option is supported here:
  53. #
  54. # exclude_tags
  55. # A ;-separated list of tags that will be excluded from
  56. # search results by default. Using an excluded tag in a
  57. # query will override that exclusion.
  58. #
  59. [search]
  60. exclude_tags=deleted;spam;
  61. # Maildir compatibility configuration
  62. #
  63. # The following option is supported here:
  64. #
  65. # synchronize_flags Valid values are true and false.
  66. #
  67. # If true, then the following maildir flags (in message filenames)
  68. # will be synchronized with the corresponding notmuch tags:
  69. #
  70. # Flag Tag
  71. # ---- -------
  72. # D draft
  73. # F flagged
  74. # P passed
  75. # R replied
  76. # S unread (added when 'S' flag is not present)
  77. #
  78. # The "notmuch new" command will notice flag changes in filenames
  79. # and update tags, while the "notmuch tag" and "notmuch restore"
  80. # commands will notice tag changes and update flags in filenames
  81. #
  82. [maildir]
  83. synchronize_flags=true