A minimal email TUI where you read with Markdown and write in Neovim. neomd.ssp.sh/docs
email markdown neovim tui
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

adding FAQ

sspaeti c1c92b42 60b97882

+52 -1
+1
docs/content/_index.md
··· 86 86 {{< card link="docs/screener" title="Screener Workflow" subtitle="How to classify emails, bulk operations, and screener lists" >}} 87 87 {{< card link="docs/reading" title="Reading Emails" subtitle="Navigation, images, links, attachments, threading" >}} 88 88 {{< card link="docs/sending" title="Sending Emails" subtitle="Compose, attachments, CC/BCC, drafts, HTML signatures" >}} 89 + {{< card link="docs/faq" title="FAQ" subtitle="Frequently asked questions" >}} 89 90 {{< /cards >}} 90 91 91 92 <br>
+1 -1
docs/content/docs/configurations/_index.md
··· 1 1 --- 2 2 title: Platform Guides 3 - weight: 50 3 + weight: 20 4 4 sidebar: 5 5 open: false 6 6 ---
+50
docs/content/docs/faq.md
··· 1 + --- 2 + title: FAQ 3 + weight: 50 4 + --- 5 + 6 + Questions that came up when people using neomd. 7 + 8 + 9 + ## Is it possible to create new directories/tabs 10 + 11 + You basically create the folder in your web mail and configure it in your `config.toml` and add the new folder under `[folder]` and in the `tab_order` so neomd knows where to place it: 12 + 13 + 14 + ```toml 15 + [folders] 16 + ...existing folders 17 + new = "NewMissingFolder" 18 + tab_order = ["inbox", "to_screen", "feed", "papertrail", "waiting", "someday", "scheduled", "sent", "work", "archive", "screened_out", "trash", "new"] 19 + ``` 20 + 21 + If you want to move emails to that folder, or just move to it, that's currently not possible. You can always move through the tabs with `[]HL` or `space+1-10`, but you can't move emails to them yet. 22 + 23 + ## Does the signature appear only in new messages, not in replies? 24 + 25 + Currently the signature is only automatically added if you create and compose a **new email**. 26 + 27 + But you can add the signature in any email, e.g. if you reply with `[html-signature]` like this: 28 + 29 + ```markdown 30 + 31 + # [neomd: to: email@domain.com] 32 + # [neomd: from: Simon <my-email@ssp.sh>] 33 + # [neomd: subject: Re: Subject Title] 34 + 35 + 36 + Here's my reply. 37 + BR Simon 38 + 39 + [html-signature] 40 + 41 + --- 42 + 43 + > **Previous sender <email@domain.com>** wrote: 44 + > 45 + > * * * 46 + ...... 47 + 48 + ``` 49 + 50 + The html-signature is the placeholder for adding the HTML signature, but yes, it will always be added at the end of the email (e.g. in this case the reply).