Hongcai Deng vor 9 Jahren
Ursprung
Commit
840b9fd315
1 geänderte Dateien mit 16 neuen und 1 gelöschten Zeilen
  1. 16 1
      README.md

+ 16 - 1
README.md

@@ -1,3 +1,18 @@
 Forsaken-Mail
 ==============
-A self-hosted disposable mail service
+A self-hosted disposable mail service
+
+### Installation
+
+#### Setting up your DNS correctly
+
+In order to receive emails, your smtp server address should be made available somewhere. Two records should be added to your DNS records. Let us pretend that we want to receive emails at ```*@subdomain.domain.com```:
+* First an MX record: ```subdomain.domain.com MX 10 mxsubdomain.domain.com```. This means that the mail server for addresses like ```*@subdomain.domain.com``` will be ```mxsubdomain.domain.com```.
+* Then an A record: ```mxsubdomain.domain.com A the.ip.address.of.your.mailin.server```. This tells at which ip address the mail server can be found.
+
+You can fire up Mailin (see next section) and use an [smtp server tester](http://mxtoolbox.com/diagnostic.aspx) to verify that everything is correct.
+
+#### Let's Go
+```
+npm install && npm start
+```