groat-smtpd 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27,18 +27,18 @@ module SMTPD
|
|
27
27
|
raise SMTPExtensionError.new("BINARYMIME requires CHUNKING") unless mod.ehlo_keyword_known? :chunking
|
28
28
|
mod.ehlo_keyword :binarymime
|
29
29
|
mod.mail_param :body, :mail_param_body
|
30
|
-
|
31
|
-
|
32
|
-
|
30
|
+
mod.inheritable_attr(:body_encodings)
|
31
|
+
mod.body_encodings = [] if mod.body_encodings.nil?
|
32
|
+
mod.body_encodings << "BINARYMIME" unless mod.body_encodings.include? "BINARYMIME"
|
33
|
+
mod.body_encodings << "7BIT" unless mod.body_encodings.include? "7BIT"
|
33
34
|
super
|
34
35
|
end
|
35
36
|
|
36
37
|
def mail_param_body(param)
|
37
38
|
param.upcase!
|
38
|
-
unless
|
39
|
+
unless self.class.body_encodings.include? param
|
39
40
|
response_bad_parameter(:message => "Unown mail body type")
|
40
41
|
end
|
41
|
-
end
|
42
42
|
@mail_body = param
|
43
43
|
puts "MAIL BODY=#{@mail_body}"
|
44
44
|
end
|
@@ -26,16 +26,16 @@ module SMTPD
|
|
26
26
|
puts "Included RFC 1652: 8bit-MIMEtransport"
|
27
27
|
mod.ehlo_keyword :"8bitmime"
|
28
28
|
mod.mail_param :body, :mail_param_body
|
29
|
-
|
30
|
-
|
31
|
-
|
29
|
+
mod.inheritable_attr(:body_encodings)
|
30
|
+
mod.body_encodings = [] if mod.body_encodings.nil?
|
31
|
+
mod.body_encodings << "8BITMIME" unless mod.body_encodings.include? "8BITMIME"
|
32
|
+
mod.body_encodings << "7BIT" unless mod.body_encodings.include? "7BIT"
|
32
33
|
super
|
33
34
|
end
|
34
35
|
|
35
|
-
|
36
36
|
def mail_param_body(param)
|
37
37
|
param.upcase!
|
38
|
-
unless
|
38
|
+
unless self.class.body_encodings.include? param
|
39
39
|
response_bad_parameter(:message => "Unown mail body type")
|
40
40
|
end
|
41
41
|
@mail_body = param
|
@@ -0,0 +1,50 @@
|
|
1
|
+
# vim: set sw=2 sts=2 ts=2 et syntax=ruby: #
|
2
|
+
=begin license
|
3
|
+
Copyright 2011 Novell, Inc.
|
4
|
+
|
5
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
you may not use this file except in compliance with the License.
|
7
|
+
You may obtain a copy of the License at
|
8
|
+
|
9
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
|
11
|
+
Unless required by applicable law or agreed to in writing, software
|
12
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
See the License for the specific language governing permissions and
|
15
|
+
limitations under the License.
|
16
|
+
|
17
|
+
Author(s):
|
18
|
+
Peter Bowen <pzbowen@gmail.com> Ottawa, Ontario, Canada
|
19
|
+
=end
|
20
|
+
|
21
|
+
require 'openssl'
|
22
|
+
|
23
|
+
module Groat
|
24
|
+
module SMTPD
|
25
|
+
module SSL
|
26
|
+
def self.included mod
|
27
|
+
puts "Included SSL support"
|
28
|
+
end
|
29
|
+
|
30
|
+
def reset_connection
|
31
|
+
@secure = true
|
32
|
+
super
|
33
|
+
end
|
34
|
+
|
35
|
+
def set_ssl_context(ctx)
|
36
|
+
@sslctx = ctx
|
37
|
+
end
|
38
|
+
|
39
|
+
def secure?
|
40
|
+
@secure
|
41
|
+
end
|
42
|
+
|
43
|
+
def set_socket(io)
|
44
|
+
ssl = OpenSSL::SSL::SSLSocket.new(io, @sslctx)
|
45
|
+
ssl.accept
|
46
|
+
super(ssl)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
data/lib/groat/smtpd/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: groat-smtpd
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 1
|
10
|
+
version: 0.1.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Peter Bowen
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-03-
|
18
|
+
date: 2011-03-23 00:00:00 -04:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -73,6 +73,7 @@ files:
|
|
73
73
|
- lib/groat/smtpd/server.rb
|
74
74
|
- lib/groat/smtpd/smtp.rb
|
75
75
|
- lib/groat/smtpd/smtpsyntax.rb
|
76
|
+
- lib/groat/smtpd/ssl.rb
|
76
77
|
- lib/groat/smtpd/version.rb
|
77
78
|
has_rdoc: true
|
78
79
|
homepage: http://github.com/pzb/groat-smtpd
|