OSDN Git Service

Use example.net as domain in default configuration (#1762).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 25 Aug 2008 16:35:20 +0000 (16:35 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 25 Aug 2008 16:35:20 +0000 (16:35 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1764 e93f8b46-1217-0410-a6f0-8f06a7374b81

config/email.yml.example
config/settings.yml
db/migrate/001_setup.rb
lib/tasks/email.rake

index a67c122..685096d 100644 (file)
@@ -3,11 +3,11 @@
 production:
   delivery_method: :smtp
   smtp_settings:
-    address: smtp.somenet.foo
+    address: smtp.example.net
     port: 25
-    domain: somenet.foo
+    domain: example.net
     authentication: :login
-    user_name: redmine@somenet.foo
+    user_name: redmine@example.net
     password: redmine
   
 development:
@@ -15,7 +15,7 @@ development:
   smtp_settings:
     address: 127.0.0.1
     port: 25
-    domain: somenet.foo
+    domain: example.net
     authentication: :login
-    user_name: redmine@somenet.foo
+    user_name: redmine@example.net
     password: redmine
index 78a366f..9a59d56 100644 (file)
@@ -43,7 +43,7 @@ activity_days_default:
 per_page_options:
   default: '25,50,100'
 mail_from:
-  default: redmine@somenet.foo
+  default: redmine@example.net
 bcc_recipients:
   default: 1
 text_formatting:
index 13960ba..d49e0e4 100644 (file)
@@ -290,7 +290,7 @@ class Setup < ActiveRecord::Migration
                        :admin => true,
                        :firstname => "Redmine",
                        :lastname => "Admin",
-                       :mail => "admin@somenet.foo",
+                       :mail => "admin@example.net",
                        :mail_notification => true,
                        :language => "en",
                        :status => 1
index daf0aa9..a37b3e1 100644 (file)
@@ -74,14 +74,14 @@ Examples:
   # No project specified. Emails MUST contain the 'Project' keyword:\r
   \r
   rake redmine:email:receive_iamp RAILS_ENV="production" \\\r
-    host=imap.foo.bar username=redmine@somenet.foo password=xxx\r
+    host=imap.foo.bar username=redmine@example.net password=xxx\r
 \r
 \r
   # Fixed project and default tracker specified, but emails can override\r
   # both tracker and priority attributes:\r
   \r
   rake redmine:email:receive_iamp RAILS_ENV="production" \\\r
-    host=imap.foo.bar username=redmine@somenet.foo password=xxx ssl=1 \\\r
+    host=imap.foo.bar username=redmine@example.net password=xxx ssl=1 \\\r
     project=foo \\\r
     tracker=bug \\\r
     allow_override=tracker,priority\r