Release nixos-20.09 branch
This commit is contained in:
parent
bb9fd8bc17
commit
99f843de47
16
README.md
16
README.md
|
@ -8,13 +8,18 @@
|
|||
For each NixOS release, we publish a branch. You then have to use the
|
||||
SNM branch corresponding to your NixOS version.
|
||||
|
||||
* For NixOS 20.09
|
||||
- Use the [SNM branch `nixos-20.09`](https://gitlab.com/simple-nixos-mailserver/nixos-mailserver/-/tree/nixos-20.09)
|
||||
- [Documentation](https://nixos-mailserver.readthedocs.io/en/nixos-20.09/)
|
||||
- [Release notes](https://nixos-mailserver.readthedocs.io/en/nixos-20.09/release-notes.html#nixos-20-09)
|
||||
* For NixOS 20.03
|
||||
- Use the [SNM branch `nixos-20.03`](https://gitlab.com/simple-nixos-mailserver/nixos-mailserver/-/tree/nixos-20.03)
|
||||
- Use the [SNM branch `nixos-20.03`](https://gitlab.com/simple-nixos-mailserver/nixos-mailserver/-/tree/nixos-20.03)
|
||||
- [Release notes](#nixos-2003)
|
||||
* For NixOS 19.09
|
||||
- Use the [SNM branch `nixos-19.09`](https://gitlab.com/simple-nixos-mailserver/nixos-mailserver/-/tree/nixos-19.09)
|
||||
* For NixOS unstable
|
||||
- Use the [SNM branch `master`](https://gitlab.com/simple-nixos-mailserver/nixos-mailserver/-/tree/master)
|
||||
- This branch is currently supporting the NixOS release 20.09 but
|
||||
we could remove this support on any NixOS unstable breaking
|
||||
change.
|
||||
|
||||
[Subscribe to SNM Announcement List](https://www.freelists.org/list/snm)
|
||||
This is a very low volume list where new releases of SNM are announced, so you
|
||||
|
@ -122,11 +127,6 @@ See the [How to Develop SNM](https://nixos-mailserver.readthedocs.io/en/latest/h
|
|||
|
||||
## Release notes
|
||||
|
||||
### master / unreleased
|
||||
|
||||
- NixOS 20.03 is not supported anymore. Please use NixOS 20.09 or NixOS Unstable or downgrade to the latest SNM release.
|
||||
- IMAP and Submission with TLS wrapped-mode are now enabled by default on ports 993 and 465 respectively.
|
||||
|
||||
### nixos-20.03
|
||||
|
||||
- Rspamd is upgraded to 2.0 which deprecates the SQLite Bayes
|
||||
|
|
|
@ -19,6 +19,7 @@ Welcome to NixOS Mailserver's documentation!
|
|||
backup-guide
|
||||
howto-add-radicale
|
||||
rspamd-tuning
|
||||
release-notes
|
||||
|
||||
Indices and tables
|
||||
==================
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
Release Notes
|
||||
=============
|
||||
|
||||
NixOS 20.09
|
||||
-----------
|
||||
|
||||
- IMAP and Submission with TLS wrapped-mode are now enabled by default
|
||||
on ports 993 and 465 respectively
|
||||
- OpenDKIM is now sandboxed with Systemd
|
||||
- New `forwards` option to forwards emails to external addresses
|
||||
(`Merge Request <https://gitlab.com/simple-nixos-mailserver/nixos-mailserver/-/merge_requests/193>`__)
|
||||
- New `sendingFqdn` option to specify the fqdn of the machine sending
|
||||
email (`Merge Request <https://gitlab.com/simple-nixos-mailserver/nixos-mailserver/-/merge_requests/187>`__)
|
||||
- Move the Gitlab wiki to `ReadTheDocs
|
||||
<https://nixos-mailserver.readthedocs.io/en/latest/>`_
|
|
@ -1,14 +1,14 @@
|
|||
{
|
||||
"nixpkgs-unstable": {
|
||||
"branch": "nixos-unstable",
|
||||
"nixpkgs-20.09": {
|
||||
"branch": "release-20.09",
|
||||
"description": "A read-only mirror of NixOS/nixpkgs tracking the released channels. Send issues and PRs to",
|
||||
"homepage": "https://github.com/NixOS/nixpkgs",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs-channels",
|
||||
"rev": "84d74ae9c9cbed73274b8e4e00be14688ffc93fe",
|
||||
"sha256": "0ww70kl08rpcsxb9xdx8m48vz41dpss4hh3vvsmswll35l158x0v",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "b6eefa48d8e10491e43c0c6155ac12b463f6fed3",
|
||||
"sha256": "0hrp7gshy62bsj719xd6hk6z284pzr8ksw1vvxvyfrffq1f7d8k9",
|
||||
"type": "tarball",
|
||||
"url": "https://github.com/NixOS/nixpkgs-channels/archive/84d74ae9c9cbed73274b8e4e00be14688ffc93fe.tar.gz",
|
||||
"url": "https://github.com/NixOS/nixpkgs/archive/b6eefa48d8e10491e43c0c6155ac12b463f6fed3.tar.gz",
|
||||
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -28,6 +28,7 @@ let
|
|||
|
||||
releaseNames = [
|
||||
"nixpkgs-unstable"
|
||||
"nixpkgs-20.09"
|
||||
];
|
||||
|
||||
testNames = [
|
||||
|
|
Loading…
Reference in New Issue