Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit 9548412

Browse files
author
Michael Fincham
committed
Change all example uses of domain names to be RFC compliant special-use names
1 parent 88e1a9c commit 9548412

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

ckan/config/deployment.ini_tmpl

+3-3
Original file line numberDiff line numberDiff line change
@@ -166,11 +166,11 @@ ckan.hide_activity_from_users = %(ckan.site_id)s
166166

167167
## Email settings
168168

169-
#email_to = you@yourdomain.com
170-
#error_email_from = paste@localhost
169+
#email_to = errors@example.com
170+
#error_email_from = ckan-errors@example.com
171171
#smtp.server = localhost
172172
#smtp.starttls = False
173-
#smtp.user = your_username@gmail.com
173+
#smtp.user = username@example.com
174174
#smtp.password = your_password
175175
#smtp.mail_from =
176176

doc/maintaining/configuration.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -1775,7 +1775,7 @@ smtp.server
17751775

17761776
Example::
17771777

1778-
smtp.server = smtp.gmail.com:587
1778+
smtp.server = smtp.example.com:587
17791779

17801780
Default value: ``None``
17811781

@@ -1801,7 +1801,7 @@ smtp.user
18011801

18021802
Example::
18031803

1804-
smtp.user = your_username@gmail.com
1804+
smtp.user = username@example.com
18051805

18061806
Default value: ``None``
18071807

@@ -1827,7 +1827,7 @@ smtp.mail_from
18271827

18281828
Example::
18291829

1830-
smtp.mail_from = you@yourdomain.com
1830+
smtp.mail_from = ckan@example.com
18311831

18321832
Default value: ``None``
18331833

@@ -1841,7 +1841,7 @@ email_to
18411841

18421842
Example::
18431843

1844-
email_to = you@yourdomain.com
1844+
email_to = errors@example.com
18451845

18461846
Default value: ``None``
18471847

@@ -1854,7 +1854,7 @@ error_email_from
18541854

18551855
Example::
18561856

1857-
error_email_from = paste@localhost
1857+
error_email_from = ckan-errors@example.com
18581858

18591859
Default value: ``None``
18601860

test.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
[DEFAULT]
77
debug = true
88
# Uncomment and replace with the address which should receive any error reports
9-
#email_to = you@yourdomain.com
9+
#email_to = errors@example.com
1010
smtp_server = localhost
11-
error_email_from = paste@localhost
11+
error_email_from = ckan-errors@example.com
1212

1313
[server:main]
1414
use = egg:Paste#http

0 commit comments

Comments
 (0)