mirror of
https://gitlab.com/simple-nixos-mailserver/nixos-mailserver.git
synced 2024-11-11 11:29:17 +05:00
doc: add a FAQ section
This commit is contained in:
parent
7e84fd4c93
commit
548e6b5a04
22
docs/faq.rst
Normal file
22
docs/faq.rst
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
FAQ
|
||||||
|
===
|
||||||
|
|
||||||
|
``catchAll`` users can't send email as user other than themself
|
||||||
|
---------------------------------------------------------------
|
||||||
|
|
||||||
|
To allow a ``catchAll`` user to send mail with the address used as
|
||||||
|
recipient, the option ``aliases`` has to be used instead of ``catchAll``.
|
||||||
|
|
||||||
|
For instance, to allow ``user@example.com`` to catch all mails to the
|
||||||
|
domain ``example.com`` and send mails with any address of this domain:
|
||||||
|
|
||||||
|
|
||||||
|
.. code:: nix
|
||||||
|
|
||||||
|
mailserver.loginAccounts = {
|
||||||
|
"user@example.com" = {
|
||||||
|
aliases = [ "@example.com" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
See also `this discussion <https://github.com/r-raymond/nixos-mailserver/issues/49>`__ for details.
|
@ -16,6 +16,7 @@ Welcome to NixOS Mailserver's documentation!
|
|||||||
quick-start
|
quick-start
|
||||||
setup-guide
|
setup-guide
|
||||||
howto-develop
|
howto-develop
|
||||||
|
faq
|
||||||
release-notes
|
release-notes
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
|
Loading…
Reference in New Issue
Block a user