##// END OF EJS Templates
Merge from stable
Merge from stable

File last commit:

r8355:61bd04b9 default
r8796:976a1e77 merge tip default
Show More
email.rst
96 lines | 3.8 KiB | text/x-rst | RstLexer
Søren Løvborg
spelling: use "email" consistently...
r5412 .. _email:
==============
Email settings
==============
The Kallithea configuration file has several email related settings. When
these contain correct values, Kallithea will send email in the situations
described below. If the email configuration is not correct so that emails
cannot be sent, all mails will show up in the log output.
Before any email can be sent, an SMTP server has to be configured using the
configuration file setting ``smtp_server``. If required for that server, specify
a username (``smtp_username``) and password (``smtp_password``), a non-standard
Mads Kiilerich
docs: tweak email documentation - add gmail example...
r5844 port (``smtp_port``), whether to use "SSL" when connecting (``smtp_use_ssl``)
or use STARTTLS (``smtp_use_tls``), and/or specify special ESMTP "auth" features
(``smtp_auth``).
For example, for sending through gmail, use::
smtp_server = smtp.gmail.com
smtp_username = username
smtp_password = password
smtp_port = 465
smtp_use_ssl = true
Søren Løvborg
spelling: use "email" consistently...
r5412
Mads Kiilerich
docs: consistent spacing around headings...
r5433
Søren Løvborg
spelling: use "email" consistently...
r5412 Application emails
------------------
Kallithea sends an email to `users` on several occasions:
- when comments are given on one of their changesets
- when comments are given on changesets they are reviewer on or on which they
commented regardless
- when they are invited as reviewer in pull requests
- when they request a password reset
Kallithea sends an email to all `administrators` upon new account registration.
Søren Løvborg
docs: update menu navigation notation to use *Menu > Menu Item*...
r5426 Administrators are users with the ``Admin`` flag set on the *Admin > Users*
page.
Søren Løvborg
spelling: use "email" consistently...
r5412
When Kallithea wants to send an email but due to an error cannot correctly
determine the intended recipients, the administrators and the addresses
specified in ``email_to`` in the configuration file are used as fallback.
Recipients will see these emails originating from the sender specified in the
``app_email_from`` setting in the configuration file. This setting can either
contain only an email address, like `kallithea-noreply@example.com`, or both
a name and an address in the following format: `Kallithea
Thomas De Schampheleire
email: send comment and pullrequest mails with the author's name in 'From'...
r5455 <kallithea-noreply@example.com>`. However, if the email is sent due to an
action of a particular user, for example when a comment is given or a pull
request created, the name of that user will be combined with the email address
specified in ``app_email_from`` to form the sender (and any name part in that
configuration setting disregarded).
The subject of these emails can optionally be prefixed with the value of
``email_prefix`` in the configuration file.
Søren Løvborg
spelling: use "email" consistently...
r5412
Thomas De Schampheleire
docs: document X-Kallithea-Notification-Type header
r6276 A Kallithea-specific header indicating the email type will be added to each
email. This header can be used for email filtering. The header is of the form:
X-Kallithea-Notification-Type: <type>
where ``<type>`` is one of:
- ``pull_request``: you are invited as reviewer in a pull request
- ``pull_request_comment``: a comment was given on a pull request
- ``cs_comment``: a comment was given on a changeset
- ``registration``: a new user was registered
- ``message``: another type of email
Mads Kiilerich
docs: consistent spacing around headings...
r5433
Søren Løvborg
spelling: use "email" consistently...
r5412 Error emails
------------
When an exception occurs in Kallithea -- and unless interactive debugging is
enabled using ``set debug = true`` in the ``[app:main]`` section of the
Thomas De Schampheleire
docs: update email documentation for TurboGears2...
r6527 configuration file -- an email with exception details is sent by backlash_
to the addresses specified in ``email_to`` in the configuration file.
Søren Løvborg
spelling: use "email" consistently...
r5412
Recipients will see these emails originating from the sender specified in the
``error_email_from`` setting in the configuration file. This setting can either
contain only an email address, like `kallithea-noreply@example.com`, or both
a name and an address in the following format: `Kallithea Errors
<kallithea-noreply@example.com>`.
Mads Kiilerich
docs: consistent spacing around headings...
r5433
Søren Løvborg
spelling: use "email" consistently...
r5412 References
----------
Mads Kiilerich
docs: cleanup of casing, markup and spacing of headings...
r5413
Mads Kiilerich
docs: clean up readthedocs URLs...
r8355 - `Error Middleware (Pylons documentation) <https://pylons-webframework.readthedocs.io/en/latest/debugging.html#error-middleware>`_
- `ErrorHandler (Pylons modules documentation) <https://pylons-webframework.readthedocs.io/en/latest/modules/middleware.html#pylons.middleware.ErrorHandler>`_
Søren Løvborg
spelling: use "email" consistently...
r5412
Mads Kiilerich
docs: consistent spacing around headings...
r5433
Andrew Shadura
docs: fix broken references
r6705 .. _backlash: https://github.com/TurboGears/backlash