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