gmailer 0.1.2 → 0.1.3

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.
Files changed (3) hide show
  1. data/CHANGES +3 -0
  2. data/gmailer.rb +1 -1
  3. metadata +2 -2
data/CHANGES CHANGED
@@ -1,3 +1,6 @@
1
+ == 0.1.3 - 29-Aug-2006
2
+ - fix connection problem in connect_no_cookie
3
+
1
4
  == 0.1.2 - 17-Jul-2006
2
5
  - fix connection problem with ruby 1.8.4+
3
6
 
data/gmailer.rb CHANGED
@@ -145,7 +145,7 @@ module GMailer
145
145
  postdata = "service=mail&Email=" + URI.escape(@login) + "&Passwd=" + URI.escape(@pwd) + "&null=Sign%20in&continue=" +
146
146
  URI.escape('https://mail.google.com/mail/?ui=html&zy=l') + "&rm=false&PersistentCookie=yes"
147
147
 
148
- np = Net::HTTP::Proxy(@proxy_host,@proxy_port,@proxy_user,@proxy_pass).new(GM_LNK_HOST, 443)
148
+ np = Net::HTTP::Proxy(@proxy_host,@proxy_port,@proxy_user,@proxy_pass).new("www.google.com", 443)
149
149
  np.use_ssl = true
150
150
  np.verify_mode = OpenSSL::SSL::VERIFY_NONE
151
151
  result = ''
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.0
3
3
  specification_version: 1
4
4
  name: gmailer
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.1.2
7
- date: 2006-07-17 00:00:00 +09:00
6
+ version: 0.1.3
7
+ date: 2006-08-29 00:00:00 +09:00
8
8
  summary: An class interface of the Google's webmail service
9
9
  require_paths:
10
10
  - ""