From a0bad5f768bb71c28e566257c71fb3af55cc8dac Mon Sep 17 00:00:00 2001 From: Robin Raymond Date: Fri, 24 Nov 2017 20:39:08 +0100 Subject: [PATCH] fix typos in readme --- README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 4af73a6..c6bec6a 100644 --- a/README.md +++ b/README.md @@ -143,24 +143,24 @@ common ones. # address = forward address; "abuse@example.com" = "user1@example.com"; }; + + # Use Let's Encrypt certificates + certificateScheme = 3; + + # Enable IMAP and POP3 + enableImap = true; + enablePop3 = true; + enableImapSsl = true; + enablePop3Ssl = true; + + # whether to scan inbound emails for viruses (note that this requires at least + # 1 Gb RAM for the server. Without virus scanning 256 MB RAM should be plenty) + virusScanning = false; }; - - # Use Let's Encrypt certificates - certificateScheme = 3; - - # Enable IMAP and POP3 - enableImap = true; - enablePop3 = true; - enableImapSsl = true; - enablePop3Ssl = true; - - # whether to scan inbound emails for viruses (note that this requires at least - # 1 Gb RAM for the server. Without virus scanning 256 MB RAM should be plenty) - virusScanning = false; } ``` -After a `nixos-rebuild switch --upgrade` your sever should be good to go. If +After a `nixos-rebuild switch --upgrade` your server should be good to go. If you want to use `nixops` to deploy the server, look in the subfolder `nixops` for some inspiration.