2021-01-29 14:21:25 +05:00
|
|
|
|
Contribute or troubleshoot
|
|
|
|
|
==========================
|
2020-07-03 00:02:47 +05:00
|
|
|
|
|
2021-03-10 22:46:03 +05:00
|
|
|
|
To report an issue, please go to
|
|
|
|
|
`<https://gitlab.com/simple-nixos-mailserver/nixos-mailserver/-/issues>`_.
|
|
|
|
|
|
|
|
|
|
You can also chat with us on the Freenode IRC channel ``#nixos-mailserver``.
|
|
|
|
|
|
2020-07-07 01:23:03 +05:00
|
|
|
|
Run NixOS tests
|
|
|
|
|
---------------
|
2020-07-03 00:02:47 +05:00
|
|
|
|
|
|
|
|
|
You can run the testsuite via
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
2021-05-01 11:21:27 +05:00
|
|
|
|
$ nix-build tests -A external.nixpkgs_20_03
|
|
|
|
|
$ nix-build tests -A internal.nixpkgs_unstable
|
2020-07-03 00:02:47 +05:00
|
|
|
|
...
|
|
|
|
|
|
2020-07-07 01:23:03 +05:00
|
|
|
|
Contributing to the documentation
|
|
|
|
|
---------------------------------
|
|
|
|
|
|
|
|
|
|
The documentation is written in RST, build with Sphinx and published
|
|
|
|
|
by `Read the Docs <https://readthedocs.org/>`_.
|
|
|
|
|
|
|
|
|
|
For the syntax, see `RST/Sphinx Cheatsheet
|
|
|
|
|
<https://sphinx-tutorial.readthedocs.io/cheatsheet/>`_.
|
|
|
|
|
|
|
|
|
|
The ``shell.nix`` provides all the tooling required to build the
|
|
|
|
|
documentation:
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
|
|
$ nix-shell
|
|
|
|
|
$ cd docs
|
|
|
|
|
$ make html
|
|
|
|
|
$ firefox ./_build/html/index.html
|
|
|
|
|
|
2020-07-03 00:02:47 +05:00
|
|
|
|
Nixops
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
You can test the setup via ``nixops``. After installation, do
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
2020-07-07 01:23:03 +05:00
|
|
|
|
$ nixops create nixops/single-server.nix nixops/vbox.nix -d mail
|
|
|
|
|
$ nixops deploy -d mail
|
|
|
|
|
$ nixops info -d mail
|
2020-07-03 00:02:47 +05:00
|
|
|
|
|
|
|
|
|
You can then test the server via e.g. \ ``telnet``. To log into it, use
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
2020-07-07 01:23:03 +05:00
|
|
|
|
$ nixops ssh -d mail mailserver
|
2020-07-03 00:02:47 +05:00
|
|
|
|
|
|
|
|
|
Imap
|
|
|
|
|
----
|
|
|
|
|
|
|
|
|
|
To test imap manually use
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
2020-07-07 01:23:03 +05:00
|
|
|
|
$ openssl s_client -host mail.example.com -port 143 -starttls imap
|