···11+---
22+title: FAQ
33+weight: 50
44+---
55+66+Questions that came up when people using neomd.
77+88+99+## Is it possible to create new directories/tabs
1010+1111+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:
1212+1313+1414+```toml
1515+[folders]
1616+ ...existing folders
1717+ new = "NewMissingFolder"
1818+ tab_order = ["inbox", "to_screen", "feed", "papertrail", "waiting", "someday", "scheduled", "sent", "work", "archive", "screened_out", "trash", "new"]
1919+```
2020+2121+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.
2222+2323+## Does the signature appear only in new messages, not in replies?
2424+2525+Currently the signature is only automatically added if you create and compose a **new email**.
2626+2727+But you can add the signature in any email, e.g. if you reply with `[html-signature]` like this:
2828+2929+```markdown
3030+3131+# [neomd: to: email@domain.com]
3232+# [neomd: from: Simon <my-email@ssp.sh>]
3333+# [neomd: subject: Re: Subject Title]
3434+3535+3636+Here's my reply.
3737+BR Simon
3838+3939+[html-signature]
4040+4141+---
4242+4343+> **Previous sender <email@domain.com>** wrote:
4444+>
4545+> * * *
4646+......
4747+4848+```
4949+5050+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).