comparison development.ini @ 5366:ce72c36f7a0e

e-mail: add documentation about configuration settings Document e-mail related configuration settings in the documentation (overview) and the .ini file itself (technical details and example settings).
author Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
date Thu, 16 Jul 2015 17:40:35 +0200
parents ef64905223f5
children 4610a39d3be9
comparison
equal deleted inserted replaced
5365:ef64905223f5 5366:ce72c36f7a0e
14 [DEFAULT] 14 [DEFAULT]
15 debug = true 15 debug = true
16 pdebug = false 16 pdebug = false
17 17
18 ################################################################################ 18 ################################################################################
19 ## Uncomment and replace with the address which should receive ## 19 ## E-mail settings ##
20 ## any error reports after application crash ## 20 ## ##
21 ## Additionally those settings will be used by Kallithea mailing system ## 21 ## Refer to the documentation ("E-mail settings") for more details. ##
22 ################################################################################ 22 ## ##
23 ## It is recommended to use a valid sender address that passes access ##
24 ## validation and spam filtering in mail servers. ##
25 ################################################################################
26
27 ## 'From' header for application e-mails. You can optionally add a name.
28 ## Default:
23 #app_email_from = Kallithea 29 #app_email_from = Kallithea
30 ## Examples:
24 #app_email_from = Kallithea <kallithea-noreply@example.com> 31 #app_email_from = Kallithea <kallithea-noreply@example.com>
25 #app_email_from = kallithea-noreply@example.com 32 #app_email_from = kallithea-noreply@example.com
33
34 ## Subject prefix for application e-mails.
35 ## A space between this prefix and the real subject is automatically added.
36 ## Default:
26 #email_prefix = 37 #email_prefix =
38 ## Example:
27 #email_prefix = [Kallithea] 39 #email_prefix = [Kallithea]
28 40
29 #email_to = admin@localhost 41 ## Recipients for error e-mails and fallback recipients of application mails.
42 ## Multiple addresses can be specified, space-separated.
43 ## Only addresses are allowed, do not add any name part.
44 ## Default:
45 #email_to =
46 ## Examples:
30 #email_to = admin@example.com 47 #email_to = admin@example.com
31 #email_to = admin@example.com another_admin@example.com 48 #email_to = admin@example.com another_admin@example.com
49
50 ## 'From' header for error e-mails. You can optionally add a name.
51 ## Default:
32 #error_email_from = pylons@yourapp.com 52 #error_email_from = pylons@yourapp.com
53 ## Examples:
33 #error_email_from = Kallithea Errors <kallithea-noreply@example.com> 54 #error_email_from = Kallithea Errors <kallithea-noreply@example.com>
34 #error_email_from = paste_error@example.com 55 #error_email_from = paste_error@example.com
35 56
57 ## SMTP server settings
58 ## Only smtp_server is mandatory. All other settings take the specified default
59 ## values.
36 #smtp_server = mail.server.com 60 #smtp_server = mail.server.com
37 #smtp_username = 61 #smtp_username =
38 #smtp_password = 62 #smtp_password =
39 #smtp_port = 25 63 #smtp_port = 25
40 #smtp_use_tls = false 64 #smtp_use_tls = false
41 #smtp_use_ssl = false 65 #smtp_use_ssl = false
42 ## Specify available auth parameters here (e.g. LOGIN PLAIN CRAM-MD5, etc.) 66 ## SMTP authentication parameters to use (e.g. LOGIN PLAIN CRAM-MD5, etc.).
67 ## If empty, use any of the authentication parameters supported by the server.
43 #smtp_auth = 68 #smtp_auth =
44 69
45 [server:main] 70 [server:main]
46 ## PASTE ## 71 ## PASTE ##
47 #use = egg:Paste#http 72 #use = egg:Paste#http