My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions

Issue 106 attachment: 030_gmail_ssl_support.rb (251 bytes)

1
2
3
4
5
6
7
8
9
10
11
# Adds paypal ipn support.
#
class GmailSslSupport < ActiveRecord::Migration
def self.up
Preference.create(:name => 'use_smtp_tls_patch', :value => '0')
end

def self.down
Preference.destroy_all("name = 'use_smtp_tls_patch'")
end
end
Powered by Google Project Hosting