aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlexis Metaireau <alexis@notmyidea.org>2018-09-03 20:55:10 +0200
committerGitHub <noreply@github.com>2018-09-03 20:55:10 +0200
commit5fcf667914e8cb19a883317c346165610c5d1754 (patch)
treed55ccbf6f8b6a18b3cc2f6b9d41d9f7d888cbd1c /docs
parent07aabeb07f138c51af61c50f1cd6c1e5bcf133e4 (diff)
downloadihatemoney-mirror-5fcf667914e8cb19a883317c346165610c5d1754.zip
ihatemoney-mirror-5fcf667914e8cb19a883317c346165610c5d1754.tar.gz
ihatemoney-mirror-5fcf667914e8cb19a883317c346165610c5d1754.tar.bz2
Almet/docs/mail server configuration (#378)
* Replace the settings table with multiple sections. It's easier to read, and easier to maintain. Fixes #251. * Document external mail server configuration. Fixes #278
Diffstat (limited to 'docs')
-rw-r--r--docs/installation.rst16
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/installation.rst b/docs/installation.rst
index 2da0d94..f4744ae 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -265,6 +265,22 @@ if set to ``"somestring"``, it will be served from a "folder"
.. _the SQLAlchemy documentation: http://docs.sqlalchemy.org/en/latest/core/engines.html#database-urls
+Configuring emails sending
+--------------------------
+
+By default, Ihatemoney sends emails using a local SMTP server, but it's
+possible to configure it to act differently, thanks to the great
+`Flask-Mail project <https://pythonhosted.org/flask-mail/#configuring-flask-mail>`_
+
+* **MAIL_SERVER** : default **'localhost'**
+* **MAIL_PORT** : default **25**
+* **MAIL_USE_TLS** : default **False**
+* **MAIL_USE_SSL** : default **False**
+* **MAIL_DEBUG** : default **app.debug**
+* **MAIL_USERNAME** : default **None**
+* **MAIL_PASSWORD** : default **None**
+* **DEFAULT_MAIL_SENDER** : default **None**
+
Using an alternate settings path
--------------------------------