restful_authenticationで認証メールをgmailから送信して、エイリアスアドレスで受信する
現状は動作確認のため自分の.Mac(MobileMe)を利用して認証メールを送信するようにしているが、本当はgmailを利用して送信したかった...。.Macメールでちゃんと送信できれば、そのまま設定を置き換えればgmailでも送信できそうなのもだが、何度やってもgmailからは送信してくれない...。調べていくと、gmailの場合はSMTPにTSLで接続する必要があるらしい。
しかし、RubyがSSL/TSLに対応しているのは1.9系かららしい。そのため、1.8系でgmailを利用するためには、以下のコードで拡張する必要があるようだ。
lib/smtp_tls.rbによる拡張
# ---------- lib/smtp_tls.rb ---------- require "openssl" require "net/smtp" Net::SMTP.class_eval do private def do_start(helodomain, user, secret, authtype) raise IOError, 'SMTP session already started' if @started check_auth_args user, secret, authtype if user or secret sock = timeout(@open_timeout) { TCPSocket.open(@address, @port) } @socket = Net::InternetMessageIO.new(sock) @socket.read_timeout = 60 #@read_timeout check_response(critical { recv_response() }) do_helo(helodomain) if starttls raise 'openssl library not installed' unless defined?(OpenSSL) ssl = OpenSSL::SSL::SSLSocket.new(sock) ssl.sync_close = true ssl.connect @socket = Net::InternetMessageIO.new(ssl) @socket.read_timeout = 60 #@read_timeout do_helo(helodomain) end authenticate user, secret, authtype if user @started = true ensure unless @started # authentication failed, cancel connection. @socket.close if not @started and @socket and not @socket.closed? @socket = nil end end def do_helo(helodomain) begin if @esmtp ehlo helodomain else helo helodomain end rescue Net::ProtocolError if @esmtp @esmtp = false @error_occured = false retry end raise end end def starttls getok('STARTTLS') rescue return false return true end def quit begin getok('QUIT') rescue EOFError, OpenSSL::SSL::SSLError end end endhttp://www.prestonlee.com/archives/63
config/initializers/mail.rbの設定
# ---------- config/initializers/mail.rb ---------- require "smtp_tls" ActionMailer::Base.delivery_method = :smtp ActionMailer::Base.smtp_settings = { :address => "smtp.gmail.com", :port => 587, :domain => "www.example-domain.com", :authentication => :login, :user_name => "my_account", :password => "パスワード" }
Todoサーバーを再起動して試してみる。ユーザー登録してみると、アクティベーションを促すメールがgmailから送信された!
gmailのエイリアスアドレス
gmail送信のことを調べていて、すごく便利な技を教えてもらった。(有名らしいが自分は知らなかったので、感動!!)
つまり、「my_account+」の書式であれば、「+」以降に何を書いてもmy_account@gmail.comで受信可能になるということ。素晴らしい!
参考ページ
以下のページがたいへん参考になりました。感謝です!
- wwwaku » Blog Archive » RailsでGmailをSMTPサーバーとして使う方法(素晴らしいコードの紹介に感謝です!これが無ければ、gmail送信を諦めていたところです。)
- F's Garage:イマドキのユーザー登録が絡む系のデバッグの小ネタ
- てらじろぐ | ActionMailer設定色々