Use example.net as domain in default configuration (#1762).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1764 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
66a079f430
commit
999d47f986
|
@ -3,11 +3,11 @@
|
||||||
production:
|
production:
|
||||||
delivery_method: :smtp
|
delivery_method: :smtp
|
||||||
smtp_settings:
|
smtp_settings:
|
||||||
address: smtp.somenet.foo
|
address: smtp.example.net
|
||||||
port: 25
|
port: 25
|
||||||
domain: somenet.foo
|
domain: example.net
|
||||||
authentication: :login
|
authentication: :login
|
||||||
user_name: redmine@somenet.foo
|
user_name: redmine@example.net
|
||||||
password: redmine
|
password: redmine
|
||||||
|
|
||||||
development:
|
development:
|
||||||
|
@ -15,7 +15,7 @@ development:
|
||||||
smtp_settings:
|
smtp_settings:
|
||||||
address: 127.0.0.1
|
address: 127.0.0.1
|
||||||
port: 25
|
port: 25
|
||||||
domain: somenet.foo
|
domain: example.net
|
||||||
authentication: :login
|
authentication: :login
|
||||||
user_name: redmine@somenet.foo
|
user_name: redmine@example.net
|
||||||
password: redmine
|
password: redmine
|
||||||
|
|
|
@ -43,7 +43,7 @@ activity_days_default:
|
||||||
per_page_options:
|
per_page_options:
|
||||||
default: '25,50,100'
|
default: '25,50,100'
|
||||||
mail_from:
|
mail_from:
|
||||||
default: redmine@somenet.foo
|
default: redmine@example.net
|
||||||
bcc_recipients:
|
bcc_recipients:
|
||||||
default: 1
|
default: 1
|
||||||
text_formatting:
|
text_formatting:
|
||||||
|
|
|
@ -290,7 +290,7 @@ class Setup < ActiveRecord::Migration
|
||||||
:admin => true,
|
:admin => true,
|
||||||
:firstname => "Redmine",
|
:firstname => "Redmine",
|
||||||
:lastname => "Admin",
|
:lastname => "Admin",
|
||||||
:mail => "admin@somenet.foo",
|
:mail => "admin@example.net",
|
||||||
:mail_notification => true,
|
:mail_notification => true,
|
||||||
:language => "en",
|
:language => "en",
|
||||||
:status => 1
|
:status => 1
|
||||||
|
|
|
@ -74,14 +74,14 @@ Examples:
|
||||||
# No project specified. Emails MUST contain the 'Project' keyword:
|
# No project specified. Emails MUST contain the 'Project' keyword:
|
||||||
|
|
||||||
rake redmine:email:receive_iamp RAILS_ENV="production" \\
|
rake redmine:email:receive_iamp RAILS_ENV="production" \\
|
||||||
host=imap.foo.bar username=redmine@somenet.foo password=xxx
|
host=imap.foo.bar username=redmine@example.net password=xxx
|
||||||
|
|
||||||
|
|
||||||
# Fixed project and default tracker specified, but emails can override
|
# Fixed project and default tracker specified, but emails can override
|
||||||
# both tracker and priority attributes:
|
# both tracker and priority attributes:
|
||||||
|
|
||||||
rake redmine:email:receive_iamp RAILS_ENV="production" \\
|
rake redmine:email:receive_iamp RAILS_ENV="production" \\
|
||||||
host=imap.foo.bar username=redmine@somenet.foo password=xxx ssl=1 \\
|
host=imap.foo.bar username=redmine@example.net password=xxx ssl=1 \\
|
||||||
project=foo \\
|
project=foo \\
|
||||||
tracker=bug \\
|
tracker=bug \\
|
||||||
allow_override=tracker,priority
|
allow_override=tracker,priority
|
||||||
|
|
Loading…
Reference in New Issue