actionmailer 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of actionmailer might be problematic. Click here for more details.
- data/CHANGELOG +5 -0
- data/README +11 -0
- data/lib/action_mailer.rb +1 -1
- data/lib/action_mailer/base.rb +1 -2
- data/rakefile +2 -2
- metadata +3 -3
data/CHANGELOG
CHANGED
data/README
CHANGED
@@ -82,6 +82,17 @@ This Mailman can be the target for Postfix. In Rails, you would use the runner l
|
|
82
82
|
|
83
83
|
./script/runner 'Mailman.receive(STDIN.read)'
|
84
84
|
|
85
|
+
== Configuration
|
86
|
+
|
87
|
+
The Base class has the full list of configuration options. Here's an example:
|
88
|
+
|
89
|
+
ActionMailer::Base.server_settings = {
|
90
|
+
:address=>'smtp.yourserver.com', # default: localhost
|
91
|
+
:port=>'25', # default: 25
|
92
|
+
:user_name=>'user',
|
93
|
+
:password=>'pass',
|
94
|
+
:authentication=>:plain # :plain, :login or :cram_md5
|
95
|
+
}
|
85
96
|
|
86
97
|
== Dependencies
|
87
98
|
|
data/lib/action_mailer.rb
CHANGED
data/lib/action_mailer/base.rb
CHANGED
@@ -116,8 +116,7 @@ module ActionMailer #:nodoc:
|
|
116
116
|
# and appear last in the mime encoded message. You can also pick a different order from inside a method with
|
117
117
|
# <tt>@implicit_parts_order</tt>.
|
118
118
|
class Base
|
119
|
-
include
|
120
|
-
include ActionMailer::PartContainer
|
119
|
+
include AdvAttrAccessor, PartContainer
|
121
120
|
|
122
121
|
private_class_method :new #:nodoc:
|
123
122
|
|
data/rakefile
CHANGED
@@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher'
|
|
8
8
|
|
9
9
|
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
|
10
10
|
PKG_NAME = 'actionmailer'
|
11
|
-
PKG_VERSION = '1.0.
|
11
|
+
PKG_VERSION = '1.0.1' + PKG_BUILD
|
12
12
|
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
|
13
13
|
|
14
14
|
RELEASE_NAME = "REL #{PKG_VERSION}"
|
@@ -52,7 +52,7 @@ spec = Gem::Specification.new do |s|
|
|
52
52
|
s.rubyforge_project = "actionmailer"
|
53
53
|
s.homepage = "http://www.rubyonrails.org"
|
54
54
|
|
55
|
-
s.add_dependency('actionpack', '= 1.9.
|
55
|
+
s.add_dependency('actionpack', '= 1.9.1' + PKG_BUILD)
|
56
56
|
|
57
57
|
s.has_rdoc = true
|
58
58
|
s.requirements << 'none'
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.10
|
|
3
3
|
specification_version: 1
|
4
4
|
name: actionmailer
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 1.0.
|
7
|
-
date: 2005-07-
|
6
|
+
version: 1.0.1
|
7
|
+
date: 2005-07-11
|
8
8
|
summary: Service layer for easy email delivery and testing.
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -113,5 +113,5 @@ dependencies:
|
|
113
113
|
-
|
114
114
|
- "="
|
115
115
|
- !ruby/object:Gem::Version
|
116
|
-
version: 1.9.
|
116
|
+
version: 1.9.1
|
117
117
|
version:
|