This is how you remove the Inbox Prefix server-side when using Dovecot.
Firstly let’s create the file…
1 |
vi /etc/dovecot/conf.d/10-prefix.conf |
Now we need to add the following to it…
1 2 3 4 5 |
namespace inbox { separator = . prefix = inbox = yes } |
Finally restart Dovecot…
1 |
service dovecot restart |
And you’re done.