Add help in conf file regarding SMTP
authorChocobozzz <me@florianbigard.com>
Tue, 29 May 2018 08:28:08 +0000 (10:28 +0200)
committerChocobozzz <me@florianbigard.com>
Tue, 29 May 2018 08:28:08 +0000 (10:28 +0200)
config/default.yaml
config/production.yaml.example
support/docker/production/docker-compose.yml

index f43cbaf4b25a310718e7414eb4a1476e40e41c96..b5ad0a8f2a0eee99e3249b6cf69dd4a42f2735bb 100644 (file)
@@ -1,3 +1,5 @@
+# /!\ YOU SHOULD NOT UPDATE THIS FILE, USE production.yaml instead /!\ #
+
 listen:
   hostname: '127.0.0.1'
   port: 9000
@@ -60,7 +62,7 @@ admin:
 signup:
   enabled: false
   limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
-  filters: 
+  filters:
     cidr: # You can specify CIDR ranges to whitelist (empty = no filtering) or blacklist
       whitelist: []
       blacklist: []
index a9d2c3b80afde1bfce435a4a180352bbae2bba1c..a11f0a1d6f8b84c6b5e23c24bda87443c71014da 100644 (file)
@@ -32,10 +32,10 @@ redis:
 # SMTP server to send emails
 smtp:
   hostname: null
-  port: 465
+  port: 465 # If you use StartTLS: 587
   username: null
   password: null
-  tls: true
+  tls: true # If you use StartTLS: false
   disable_starttls: false
   ca_file: null # Used for self signed certificates
   from_address: 'admin@example.com'
@@ -76,7 +76,7 @@ admin:
 signup:
   enabled: false
   limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
-  filters: 
+  filters:
     cidr: # You can specify CIDR ranges to whitelist (empty = no filtering) or blacklist
       whitelist: []
       blacklist: []
index 5f8822ad3ceed21d332b3ab4b8c60b44d17a9296..32ee7511305882ed0278ae24f5b2b6b7b952030d 100644 (file)
@@ -32,6 +32,8 @@ services:
       PEERTUBE_SIGNUP_ENABLED: "true"
       PEERTUBE_TRANSCODING_ENABLED: "true"
       PEERTUBE_REDIS_HOSTNAME: redis
+      PEERTUBE_SMTP_USERNAME: null
+      PEERTUBE_SMTP_PASSWORD: null
       PEERTUBE_SMTP_HOSTNAME: null
       PEERTUBE_SMTP_PORT: 25
       PEERTUBE_SMTP_FROM: noreply@peertube.domain.tld