Add Camo configs
This commit is contained in:
parent
c7f4051ac0
commit
9024d1a9b7
2 changed files with 78 additions and 59 deletions
|
|
@ -53,6 +53,10 @@ defaults:
|
||||||
user_counts: false
|
user_counts: false
|
||||||
post_counts: false
|
post_counts: false
|
||||||
comment_counts: false
|
comment_counts: false
|
||||||
|
camo:
|
||||||
|
enable: false
|
||||||
|
root:
|
||||||
|
key:
|
||||||
settings:
|
settings:
|
||||||
pod_name: 'diaspora*'
|
pod_name: 'diaspora*'
|
||||||
enable_registrations: true
|
enable_registrations: true
|
||||||
|
|
|
||||||
|
|
@ -24,11 +24,11 @@
|
||||||
## heroku config:set SERVICES_FACEBOOK_APP_ID=yourappid SERVICES_FACEBOOK_SECRET=yourappsecret
|
## heroku config:set SERVICES_FACEBOOK_APP_ID=yourappid SERVICES_FACEBOOK_SECRET=yourappsecret
|
||||||
|
|
||||||
configuration: ## Section
|
configuration: ## Section
|
||||||
|
|
||||||
## You need to change or at least review the settings in this section
|
## You need to change or at least review the settings in this section
|
||||||
## in order for your pod to work
|
## in order for your pod to work
|
||||||
environment: ## Section
|
environment: ## Section
|
||||||
|
|
||||||
## Set the hostname of the machine you're running Diaspora on, as seen
|
## Set the hostname of the machine you're running Diaspora on, as seen
|
||||||
## from the internet. This should be the URL you want to use to
|
## from the internet. This should be the URL you want to use to
|
||||||
## access the pod. So if you plan to use a reverse proxy, it should be
|
## access the pod. So if you plan to use a reverse proxy, it should be
|
||||||
|
|
@ -37,7 +37,7 @@ configuration: ## Section
|
||||||
## If you do change the URL, you will have to start again as the URL
|
## If you do change the URL, you will have to start again as the URL
|
||||||
## will be hardcoded into the database.
|
## will be hardcoded into the database.
|
||||||
#url: "https://example.org/"
|
#url: "https://example.org/"
|
||||||
|
|
||||||
## Set the bundle of certificate authorities (CA) certificates.
|
## Set the bundle of certificate authorities (CA) certificates.
|
||||||
## This is specific to your operating system.
|
## This is specific to your operating system.
|
||||||
## Examples (uncomment the relevant one or add your own):
|
## Examples (uncomment the relevant one or add your own):
|
||||||
|
|
@ -45,20 +45,20 @@ configuration: ## Section
|
||||||
#certificate_authorities: '/etc/ssl/certs/ca-certificates.crt'
|
#certificate_authorities: '/etc/ssl/certs/ca-certificates.crt'
|
||||||
## For CentOS, Fedora:
|
## For CentOS, Fedora:
|
||||||
#certificate_authorities: '/etc/pki/tls/certs/ca-bundle.crt'
|
#certificate_authorities: '/etc/pki/tls/certs/ca-bundle.crt'
|
||||||
|
|
||||||
## URL for a remote Redis (default=localhost)
|
## URL for a remote Redis (default=localhost)
|
||||||
## Don't forget to restrict IP access if you uncomment these!
|
## Don't forget to restrict IP access if you uncomment these!
|
||||||
#redis: 'redis://example_host'
|
#redis: 'redis://example_host'
|
||||||
#redis: 'redis://username:password@host:6379/0'
|
#redis: 'redis://username:password@host:6379/0'
|
||||||
#redis: 'unix:///tmp/redis.sock'
|
#redis: 'unix:///tmp/redis.sock'
|
||||||
|
|
||||||
## Require SSL (default=true)
|
## Require SSL (default=true)
|
||||||
## When set, your pod will force the use of HTTPS in production mode. Since
|
## When set, your pod will force the use of HTTPS in production mode. Since
|
||||||
## OAuth2 requires SSL Diaspora's future API might not work if you're not using
|
## OAuth2 requires SSL Diaspora's future API might not work if you're not using
|
||||||
## SSL. Also there is no guarantee that posting to services will be possible
|
## SSL. Also there is no guarantee that posting to services will be possible
|
||||||
## if SSL is disabled. Do not change this default unless you are sure!
|
## if SSL is disabled. Do not change this default unless you are sure!
|
||||||
#require_ssl: true
|
#require_ssl: true
|
||||||
|
|
||||||
## Single-process mode (default=false)
|
## Single-process mode (default=false)
|
||||||
## If set to true Diaspora will work with just the appserver (Unicorn by default)
|
## If set to true Diaspora will work with just the appserver (Unicorn by default)
|
||||||
## running. However, this makes it quite slow as intensive jobs must be run
|
## running. However, this makes it quite slow as intensive jobs must be run
|
||||||
|
|
@ -71,7 +71,7 @@ configuration: ## Section
|
||||||
|
|
||||||
## Number of parallel threads Sidekiq uses (default=5)
|
## Number of parallel threads Sidekiq uses (default=5)
|
||||||
## If you touch this please set the pool setting in your database.yml to
|
## If you touch this please set the pool setting in your database.yml to
|
||||||
## a value that's at minimum close to this! You can safely increase it
|
## a value that's at minimum close to this! You can safely increase it
|
||||||
## to 25 and more on a medium-sized pod. This applies per started Sidekiq
|
## to 25 and more on a medium-sized pod. This applies per started Sidekiq
|
||||||
## worker, so if you set it to 25 and start two workers you'll process
|
## worker, so if you set it to 25 and start two workers you'll process
|
||||||
## up to 50 jobs in parallel.
|
## up to 50 jobs in parallel.
|
||||||
|
|
@ -94,7 +94,7 @@ configuration: ## Section
|
||||||
|
|
||||||
## Log file for Sidekiq (default="log/sidekiq.log")
|
## Log file for Sidekiq (default="log/sidekiq.log")
|
||||||
#log: "log/sidekiq.log"
|
#log: "log/sidekiq.log"
|
||||||
|
|
||||||
## Use Amazon S3 instead of your local filesystem
|
## Use Amazon S3 instead of your local filesystem
|
||||||
## to handle uploaded pictures (disabled by default)
|
## to handle uploaded pictures (disabled by default)
|
||||||
s3: ## Section
|
s3: ## Section
|
||||||
|
|
@ -110,23 +110,23 @@ configuration: ## Section
|
||||||
## 1 year. This can improve load speed and save requests to the image host.
|
## 1 year. This can improve load speed and save requests to the image host.
|
||||||
## Set to false to revert to browser defaults (usually less than 1 year).
|
## Set to false to revert to browser defaults (usually less than 1 year).
|
||||||
#cache : true
|
#cache : true
|
||||||
|
|
||||||
## Set redirect URL for an external image host (Amazon S3 or other)
|
## Set redirect URL for an external image host (Amazon S3 or other)
|
||||||
## If hosting images for your pod on an external server (even your own),
|
## If hosting images for your pod on an external server (even your own),
|
||||||
## add its URL here. All requests made to images under /uploads/images
|
## add its URL here. All requests made to images under /uploads/images
|
||||||
## will be redirected to https://yourhost.tld/uploads/images/
|
## will be redirected to https://yourhost.tld/uploads/images/
|
||||||
#image_redirect_url: 'https://images.example.org'
|
#image_redirect_url: 'https://images.example.org'
|
||||||
|
|
||||||
assets: ## Section
|
assets: ## Section
|
||||||
|
|
||||||
## Serve static assets via the appserver (default=false)
|
## Serve static assets via the appserver (default=false)
|
||||||
## This is highly discouraged for production use. Let your reverse
|
## This is highly discouraged for production use. Let your reverse
|
||||||
## proxy/webserver do it by serving the files under public/ directly.
|
## proxy/webserver do it by serving the files under public/ directly.
|
||||||
#serve: false
|
#serve: false
|
||||||
|
|
||||||
## Upload your assets to S3 (default=false)
|
## Upload your assets to S3 (default=false)
|
||||||
#upload: false
|
#upload: false
|
||||||
|
|
||||||
## Specify an asset host. Ensure it does not have a trailing slash (/).
|
## Specify an asset host. Ensure it does not have a trailing slash (/).
|
||||||
#host: http://cdn.example.org/diaspora
|
#host: http://cdn.example.org/diaspora
|
||||||
|
|
||||||
|
|
@ -134,7 +134,7 @@ configuration: ## Section
|
||||||
## Diaspora is only tested against the default pubsub server.
|
## Diaspora is only tested against the default pubsub server.
|
||||||
## You probably don't want to uncomment or change this.
|
## You probably don't want to uncomment or change this.
|
||||||
#pubsub_server: 'https://pubsubhubbub.appspot.com/'
|
#pubsub_server: 'https://pubsubhubbub.appspot.com/'
|
||||||
|
|
||||||
## Settings affecting how ./script/server behaves.
|
## Settings affecting how ./script/server behaves.
|
||||||
server: ## Section
|
server: ## Section
|
||||||
|
|
||||||
|
|
@ -145,11 +145,11 @@ configuration: ## Section
|
||||||
## The environment in which the server should be started by default.
|
## The environment in which the server should be started by default.
|
||||||
## Change this if you wish to run a production environment.
|
## Change this if you wish to run a production environment.
|
||||||
#rails_environment: 'development'
|
#rails_environment: 'development'
|
||||||
|
|
||||||
## Write unicorn stderr and stdout log
|
## Write unicorn stderr and stdout log
|
||||||
#stderr_log: '/usr/local/app/diaspora/log/unicorn-stderr.log'
|
#stderr_log: '/usr/local/app/diaspora/log/unicorn-stderr.log'
|
||||||
#stdout_log: '/usr/local/app/diaspora/log/unicorn-stdout.log'
|
#stdout_log: '/usr/local/app/diaspora/log/unicorn-stdout.log'
|
||||||
|
|
||||||
## Number of Unicorn worker processes (default=2)
|
## Number of Unicorn worker processes (default=2)
|
||||||
## Increase this if you have many users.
|
## Increase this if you have many users.
|
||||||
#unicorn_worker: 2
|
#unicorn_worker: 2
|
||||||
|
|
@ -159,7 +159,7 @@ configuration: ## Section
|
||||||
## Decrease if you're under heavy load and don't care if some
|
## Decrease if you're under heavy load and don't care if some
|
||||||
## requests fail.
|
## requests fail.
|
||||||
#unicorn_timeout: 90
|
#unicorn_timeout: 90
|
||||||
|
|
||||||
## Embed a Sidekiq worker inside the unicorn process (default=false)
|
## Embed a Sidekiq worker inside the unicorn process (default=false)
|
||||||
## Useful for minimal Heroku setups.
|
## Useful for minimal Heroku setups.
|
||||||
#embed_sidekiq_worker: false
|
#embed_sidekiq_worker: false
|
||||||
|
|
@ -168,20 +168,20 @@ configuration: ## Section
|
||||||
## In most cases it is better to
|
## In most cases it is better to
|
||||||
## increase environment.sidekiq.concurrency instead!
|
## increase environment.sidekiq.concurrency instead!
|
||||||
#sidekiq_workers: 1
|
#sidekiq_workers: 1
|
||||||
|
|
||||||
## Settings potentially affecting the privacy of your users
|
## Settings potentially affecting the privacy of your users
|
||||||
privacy: ## Section
|
privacy: ## Section
|
||||||
|
|
||||||
## Include jQuery from jquery.com's CDN (default=false)
|
## Include jQuery from jquery.com's CDN (default=false)
|
||||||
## Enabling this can reduce traffic and speed up load time since most
|
## Enabling this can reduce traffic and speed up load time since most
|
||||||
## clients already have this one cached. When set to false (the default),
|
## clients already have this one cached. When set to false (the default),
|
||||||
## the jQuery library will be loaded from your pod's own resources.
|
## the jQuery library will be loaded from your pod's own resources.
|
||||||
#jquery_cdn: false
|
#jquery_cdn: false
|
||||||
|
|
||||||
## Google Analytics (disabled by default)
|
## Google Analytics (disabled by default)
|
||||||
## Provide a key to enable tracking by Google Analytics
|
## Provide a key to enable tracking by Google Analytics
|
||||||
#google_analytics_key:
|
#google_analytics_key:
|
||||||
|
|
||||||
## Piwik Tracking (disabled by default)
|
## Piwik Tracking (disabled by default)
|
||||||
## Provide a site ID and the host piwik is running on to enable
|
## Provide a site ID and the host piwik is running on to enable
|
||||||
## tracking through Piwik.
|
## tracking through Piwik.
|
||||||
|
|
@ -190,17 +190,17 @@ configuration: ## Section
|
||||||
#enable: true
|
#enable: true
|
||||||
#host: 'stats.example.org'
|
#host: 'stats.example.org'
|
||||||
#site_id: 1
|
#site_id: 1
|
||||||
|
|
||||||
## Mixpanel event tracking (disabled by default)
|
## Mixpanel event tracking (disabled by default)
|
||||||
#mixpanel_uid:
|
#mixpanel_uid:
|
||||||
|
|
||||||
## Chartbeat tracking (disabled by default)
|
## Chartbeat tracking (disabled by default)
|
||||||
#chartbeat_uid:
|
#chartbeat_uid:
|
||||||
|
|
||||||
## Statistics
|
## Statistics
|
||||||
## Your pod will report its name, software version and whether
|
## Your pod will report its name, software version and whether
|
||||||
## or not registrations are open via /statistics.json.
|
## or not registrations are open via /statistics.json.
|
||||||
## Uncomment the options below to enable more statistics.
|
## Uncomment the options below to enable more statistics.
|
||||||
statistics: ## Section
|
statistics: ## Section
|
||||||
|
|
||||||
## Local user total and 6 month active counts
|
## Local user total and 6 month active counts
|
||||||
|
|
@ -209,10 +209,25 @@ configuration: ## Section
|
||||||
## Local post total count
|
## Local post total count
|
||||||
#post_counts: true
|
#post_counts: true
|
||||||
#comment_counts: true
|
#comment_counts: true
|
||||||
|
|
||||||
|
## Use Camo to proxy embedded remote images
|
||||||
|
## Do not enable this setting unless you have a working Camo setup. Using
|
||||||
|
## camo to proxy embedded images will improve the privacy and security of
|
||||||
|
## your pod's frontend, but it will increase the traffic on your server.
|
||||||
|
camo: ## Section
|
||||||
|
|
||||||
|
## Enable Camo (default=false)
|
||||||
|
#enable: true
|
||||||
|
|
||||||
|
## Root of your Camo installation
|
||||||
|
#root: "https://camo.example.com/"
|
||||||
|
|
||||||
|
## Shared key of your Camo installation
|
||||||
|
#key: "example123example456example!"
|
||||||
|
|
||||||
## General settings
|
## General settings
|
||||||
settings: ## Section
|
settings: ## Section
|
||||||
|
|
||||||
## Pod name (default="diaspora*")
|
## Pod name (default="diaspora*")
|
||||||
## The pod name displayed in various locations, including the header.
|
## The pod name displayed in various locations, including the header.
|
||||||
#pod_name: "diaspora*"
|
#pod_name: "diaspora*"
|
||||||
|
|
@ -222,13 +237,13 @@ configuration: ## Section
|
||||||
## without an invitation. Note that this needs to be set to true
|
## without an invitation. Note that this needs to be set to true
|
||||||
## (or commented out) to enable the first registration (you).
|
## (or commented out) to enable the first registration (you).
|
||||||
#enable_registrations: true
|
#enable_registrations: true
|
||||||
|
|
||||||
## Auto-follow on sign-up (default=true)
|
## Auto-follow on sign-up (default=true)
|
||||||
## Users will automatically follow a specified account on creation.
|
## Users will automatically follow a specified account on creation.
|
||||||
## Set this to false if you don't want your users to automatically
|
## Set this to false if you don't want your users to automatically
|
||||||
## follow an account upon creation.
|
## follow an account upon creation.
|
||||||
#autofollow_on_join: true
|
#autofollow_on_join: true
|
||||||
|
|
||||||
## Auto-follow account (default='diasporahq@joindiaspora.com')
|
## Auto-follow account (default='diasporahq@joindiaspora.com')
|
||||||
## The diaspora* HQ account keeps users up to date with news about Diaspora.
|
## The diaspora* HQ account keeps users up to date with news about Diaspora.
|
||||||
## If you set another auto-follow account (for example your podmin account),
|
## If you set another auto-follow account (for example your podmin account),
|
||||||
|
|
@ -237,26 +252,26 @@ configuration: ## Section
|
||||||
|
|
||||||
## Invitation settings
|
## Invitation settings
|
||||||
invitations: ## Section
|
invitations: ## Section
|
||||||
|
|
||||||
## Enable invitations (default=true)
|
## Enable invitations (default=true)
|
||||||
## Set this to false if you don't want users to be able to send invites.
|
## Set this to false if you don't want users to be able to send invites.
|
||||||
#open: true
|
#open: true
|
||||||
|
|
||||||
## Number of invitations per invite link (default=25)
|
## Number of invitations per invite link (default=25)
|
||||||
## Every user will see such a link if you have enabled invitations on your pod.
|
## Every user will see such a link if you have enabled invitations on your pod.
|
||||||
#count: 25
|
#count: 25
|
||||||
|
|
||||||
## Paypal donations
|
## Paypal donations
|
||||||
## You can provide the ID of a hosted Paypal button here to allow your users
|
## You can provide the ID of a hosted Paypal button here to allow your users
|
||||||
## to send donations to help run their pod. If you leave this out your users
|
## to send donations to help run their pod. If you leave this out your users
|
||||||
## will see a button to donate to the Diaspora Foundation instead :)
|
## will see a button to donate to the Diaspora Foundation instead :)
|
||||||
#paypal_hosted_button_id: "change_me"
|
#paypal_hosted_button_id: "change_me"
|
||||||
|
|
||||||
## Bitcoin donations
|
## Bitcoin donations
|
||||||
## You can provide a bitcoin address here to allow your users to provide
|
## You can provide a bitcoin address here to allow your users to provide
|
||||||
## donations towards the running of their pod.
|
## donations towards the running of their pod.
|
||||||
#bitcoin_address: "change_me"
|
#bitcoin_address: "change_me"
|
||||||
|
|
||||||
## Community spotlight (disabled by default)
|
## Community spotlight (disabled by default)
|
||||||
## The community spotlight shows new users public posts from people you
|
## The community spotlight shows new users public posts from people you
|
||||||
## think are interesting in Diaspora's community. To add an account
|
## think are interesting in Diaspora's community. To add an account
|
||||||
|
|
@ -268,12 +283,12 @@ configuration: ## Section
|
||||||
## E-mail address to which users can make suggestions about who
|
## E-mail address to which users can make suggestions about who
|
||||||
## should be in the community spotlight (optional).
|
## should be in the community spotlight (optional).
|
||||||
#suggest_email: 'admin@example.org'
|
#suggest_email: 'admin@example.org'
|
||||||
|
|
||||||
## CURL debug (default=false)
|
## CURL debug (default=false)
|
||||||
## Turn on extra verbose output when sending stuff. Note: you
|
## Turn on extra verbose output when sending stuff. Note: you
|
||||||
## don't need to touch this unless explicitly told to.
|
## don't need to touch this unless explicitly told to.
|
||||||
#typhoeus_verbose: false
|
#typhoeus_verbose: false
|
||||||
|
|
||||||
## Maximum number of parallel HTTP requests made to other pods (default=20)
|
## Maximum number of parallel HTTP requests made to other pods (default=20)
|
||||||
## Be careful, raising this setting will heavily increase the memory usage
|
## Be careful, raising this setting will heavily increase the memory usage
|
||||||
## of your Sidekiq workers.
|
## of your Sidekiq workers.
|
||||||
|
|
@ -302,7 +317,7 @@ configuration: ## Section
|
||||||
## Sets the level of image distortion used in the captcha.
|
## Sets the level of image distortion used in the captcha.
|
||||||
## Available options are: 'low', 'medium', 'high', 'random'
|
## Available options are: 'low', 'medium', 'high', 'random'
|
||||||
#distortion: 'low'
|
#distortion: 'low'
|
||||||
|
|
||||||
## Terms of Service
|
## Terms of Service
|
||||||
## Show a default or customized terms of service for users.
|
## Show a default or customized terms of service for users.
|
||||||
## You can create a custom Terms of Service by placing a template
|
## You can create a custom Terms of Service by placing a template
|
||||||
|
|
@ -330,7 +345,7 @@ configuration: ## Section
|
||||||
## Set a number to activate this setting. This age limit is shown
|
## Set a number to activate this setting. This age limit is shown
|
||||||
## in the default ToS document.
|
## in the default ToS document.
|
||||||
#minimum_age: false
|
#minimum_age: false
|
||||||
|
|
||||||
## Maintenance
|
## Maintenance
|
||||||
## Various pod maintenance related settings are controlled from here.
|
## Various pod maintenance related settings are controlled from here.
|
||||||
maintenance: ## Section
|
maintenance: ## Section
|
||||||
|
|
@ -355,42 +370,42 @@ configuration: ## Section
|
||||||
#enable: true
|
#enable: true
|
||||||
#app_id: 'abcdef'
|
#app_id: 'abcdef'
|
||||||
#secret: 'change_me'
|
#secret: 'change_me'
|
||||||
|
|
||||||
## OAuth credentials for Twitter:
|
## OAuth credentials for Twitter:
|
||||||
twitter: ## Section
|
twitter: ## Section
|
||||||
|
|
||||||
#enable: true
|
#enable: true
|
||||||
#key: 'abcdef'
|
#key: 'abcdef'
|
||||||
#secret: 'change_me'
|
#secret: 'change_me'
|
||||||
|
|
||||||
## OAuth credentials for Tumblr
|
## OAuth credentials for Tumblr
|
||||||
tumblr: ## Section
|
tumblr: ## Section
|
||||||
|
|
||||||
#enable: true
|
#enable: true
|
||||||
#key: 'abcdef'
|
#key: 'abcdef'
|
||||||
#secret: 'change_me'
|
#secret: 'change_me'
|
||||||
|
|
||||||
## OAuth credentials for Wordpress
|
## OAuth credentials for Wordpress
|
||||||
wordpress: ## Section
|
wordpress: ## Section
|
||||||
|
|
||||||
#enable: true
|
#enable: true
|
||||||
#client_id: 'abcdef'
|
#client_id: 'abcdef'
|
||||||
#secret: 'change_me'
|
#secret: 'change_me'
|
||||||
|
|
||||||
## Enable pod users to send e-mails from Diaspora (disabled by default)
|
## Enable pod users to send e-mails from Diaspora (disabled by default)
|
||||||
mail: ## Section
|
mail: ## Section
|
||||||
|
|
||||||
## First you need to enable it.
|
## First you need to enable it.
|
||||||
#enable: true
|
#enable: true
|
||||||
|
|
||||||
## Sender address used in mail sent by Diaspora
|
## Sender address used in mail sent by Diaspora
|
||||||
#sender_address: 'no-reply@example.org'
|
#sender_address: 'no-reply@example.org'
|
||||||
|
|
||||||
## This selects which mailer should be used. Use 'smtp' for a smtp
|
## This selects which mailer should be used. Use 'smtp' for a smtp
|
||||||
## connection, 'sendmail' to use the sendmail binary or
|
## connection, 'sendmail' to use the sendmail binary or
|
||||||
## 'messagebus' to use the messagebus service.
|
## 'messagebus' to use the messagebus service.
|
||||||
#method: 'smtp'
|
#method: 'smtp'
|
||||||
|
|
||||||
## Ignore if method isn't 'smtp'
|
## Ignore if method isn't 'smtp'
|
||||||
smtp: ## Section
|
smtp: ## Section
|
||||||
|
|
||||||
|
|
@ -399,44 +414,44 @@ configuration: ## Section
|
||||||
## the SMTP server, if it sends one. (default port=587)
|
## the SMTP server, if it sends one. (default port=587)
|
||||||
#host: 'smtp.example.org'
|
#host: 'smtp.example.org'
|
||||||
#port: 587
|
#port: 587
|
||||||
|
|
||||||
## Authentication required to send mail (default='plain')
|
## Authentication required to send mail (default='plain')
|
||||||
## Use one of 'plain', 'login' or 'cram_md5'. Use 'none'
|
## Use one of 'plain', 'login' or 'cram_md5'. Use 'none'
|
||||||
## if server does not support authentication.
|
## if server does not support authentication.
|
||||||
#authentication: 'plain'
|
#authentication: 'plain'
|
||||||
|
|
||||||
## Credentials to log in to the SMTP server
|
## Credentials to log in to the SMTP server
|
||||||
## May be necessary if authentication is not 'none'.
|
## May be necessary if authentication is not 'none'.
|
||||||
#username: 'change_me'
|
#username: 'change_me'
|
||||||
#password: 'change_me'
|
#password: 'change_me'
|
||||||
|
|
||||||
## Automatically enable TLS (default=true)
|
## Automatically enable TLS (default=true)
|
||||||
## Leave this commented out if authentication is set to 'none'.
|
## Leave this commented out if authentication is set to 'none'.
|
||||||
#starttls_auto: true
|
#starttls_auto: true
|
||||||
|
|
||||||
## The domain for the HELO command, if needed
|
## The domain for the HELO command, if needed
|
||||||
#domain: 'smtp.example.org'
|
#domain: 'smtp.example.org'
|
||||||
|
|
||||||
## OpenSSL verify mode used when connecting to a SMTP server with TLS
|
## OpenSSL verify mode used when connecting to a SMTP server with TLS
|
||||||
## Set this to 'none' if you have a self-signed certificate. Possible
|
## Set this to 'none' if you have a self-signed certificate. Possible
|
||||||
## values: 'none', 'peer', 'client_once', 'fail_if_no_peer_cert'.
|
## values: 'none', 'peer', 'client_once', 'fail_if_no_peer_cert'.
|
||||||
#openssl_verify_mode: 'none'
|
#openssl_verify_mode: 'none'
|
||||||
|
|
||||||
## Ignore if method isn't 'sendmail'
|
## Ignore if method isn't 'sendmail'
|
||||||
sendmail: ## Section
|
sendmail: ## Section
|
||||||
|
|
||||||
## The path to the sendmail binary (default='/usr/sbin/sendmail')
|
## The path to the sendmail binary (default='/usr/sbin/sendmail')
|
||||||
#location: '/usr/sbin/sendmail'
|
#location: '/usr/sbin/sendmail'
|
||||||
|
|
||||||
## Use exim and sendmail (default=false)
|
## Use exim and sendmail (default=false)
|
||||||
#exim_fix: false
|
#exim_fix: false
|
||||||
|
|
||||||
## Ignore if method isn't 'messagebus'
|
## Ignore if method isn't 'messagebus'
|
||||||
#message_bus_api_key: 'abcdef'
|
#message_bus_api_key: 'abcdef'
|
||||||
|
|
||||||
## Administrator settings
|
## Administrator settings
|
||||||
admins: ## Section
|
admins: ## Section
|
||||||
|
|
||||||
## Set the admin account
|
## Set the admin account
|
||||||
## This doesn't make the user an admin but is used when a generic
|
## This doesn't make the user an admin but is used when a generic
|
||||||
## admin contact is needed, much like the postmaster role in mail
|
## admin contact is needed, much like the postmaster role in mail
|
||||||
|
|
@ -445,13 +460,13 @@ configuration: ## Section
|
||||||
|
|
||||||
## E-mail address to contact the administrator
|
## E-mail address to contact the administrator
|
||||||
#podmin_email: 'podmin@example.org'
|
#podmin_email: 'podmin@example.org'
|
||||||
|
|
||||||
## Here you can override settings defined above if you need
|
## Here you can override settings defined above if you need
|
||||||
## to have them different in different environments.
|
## to have them different in different environments.
|
||||||
production: ## Section
|
production: ## Section
|
||||||
environment: ## Section
|
environment: ## Section
|
||||||
#redis_url: 'redis://production.example.org:6379'
|
#redis_url: 'redis://production.example.org:6379'
|
||||||
|
|
||||||
development: ## Section
|
development: ## Section
|
||||||
environment: ## Section
|
environment: ## Section
|
||||||
#redis_url: 'redis://production.example.org:6379'
|
#redis_url: 'redis://production.example.org:6379'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue