##// END OF EJS Templates
Use example.net as domain in default configuration (#1762)....
Jean-Philippe Lang -
r1763:999d47f98679
parent child
Show More
@@ -3,11 +3,11
3 3 production:
4 4 delivery_method: :smtp
5 5 smtp_settings:
6 address: smtp.somenet.foo
6 address: smtp.example.net
7 7 port: 25
8 domain: somenet.foo
8 domain: example.net
9 9 authentication: :login
10 user_name: redmine@somenet.foo
10 user_name: redmine@example.net
11 11 password: redmine
12 12
13 13 development:
@@ -15,7 +15,7 development:
15 15 smtp_settings:
16 16 address: 127.0.0.1
17 17 port: 25
18 domain: somenet.foo
18 domain: example.net
19 19 authentication: :login
20 user_name: redmine@somenet.foo
20 user_name: redmine@example.net
21 21 password: redmine
@@ -43,7 +43,7 activity_days_default:
43 43 per_page_options:
44 44 default: '25,50,100'
45 45 mail_from:
46 default: redmine@somenet.foo
46 default: redmine@example.net
47 47 bcc_recipients:
48 48 default: 1
49 49 text_formatting:
@@ -290,7 +290,7 class Setup < ActiveRecord::Migration
290 290 :admin => true,
291 291 :firstname => "Redmine",
292 292 :lastname => "Admin",
293 :mail => "admin@somenet.foo",
293 :mail => "admin@example.net",
294 294 :mail_notification => true,
295 295 :language => "en",
296 296 :status => 1
@@ -74,14 +74,14 Examples:
74 74 # No project specified. Emails MUST contain the 'Project' keyword:
75 75
76 76 rake redmine:email:receive_iamp RAILS_ENV="production" \\
77 host=imap.foo.bar username=redmine@somenet.foo password=xxx
77 host=imap.foo.bar username=redmine@example.net password=xxx
78 78
79 79
80 80 # Fixed project and default tracker specified, but emails can override
81 81 # both tracker and priority attributes:
82 82
83 83 rake redmine:email:receive_iamp RAILS_ENV="production" \\
84 host=imap.foo.bar username=redmine@somenet.foo password=xxx ssl=1 \\
84 host=imap.foo.bar username=redmine@example.net password=xxx ssl=1 \\
85 85 project=foo \\
86 86 tracker=bug \\
87 87 allow_override=tracker,priority
General Comments 0
You need to be logged in to leave comments. Login now