2009-04-02 10 views
8

私が望むのは、SSLを使ってSMTP経由でルビースクリプトから電子メールを送信することです。sslでsmtpでメールを送信する方法(レールではなく、GmailではTLSなし)

私は、RailsやTLSを使用したGmailの例しか見つけられません。

私は、ルビー1.8.5でSMTPSサポートについて話している人が見つかりましたが、libdocには言及していません。

SSLを使用してSMTP経由でメールを送信する例があれば誰でも、ポート465でですか?

ruby -v 
ruby 1.8.7 (2008-08-11 patchlevel 72) [i486-linux] 

答えて

0

あなたはおそらく既に箱から出してサポートされていないようSSLの一部、についてNet::SMTP standard library

について知っている、私は可能なポインタのカップルを見つけた:

+0

私はすでにこれらの例を試してみましたが、Gmailでうまくいっていますが、私のISPアカウントでSSL経由で通常のSMTPを使用することはできません。 –

0

mailsend(http://www.muquit.com/muquit/software/mailsend/mailsend.html)のようなサードパーティのオープンソースのコマンドラインプログラムを使用して、あなたのために汚い仕事をすることができます。いくつかの出力を期待通りのフォーマットでパイプしてください。

3

ポニーはどうですか?
gem install pony。
http://github.com/adamwiggins/pony/tree/master
または私はあなたの質問を理解できませんでしたか?

私はそれがあなたを助けてくれることを願っています。あなたの代わりにTLSのSSLを使用する必要がある場合
おかげ
tknv/

0

はあなたの猿 - パッチネット::このようなSMTPことができます。

require "openssl" 
require "net/smtp" 

Net::SMTP.class_eval do 

    def self.start(address, port = nil, 
        helo = 'localhost.localdomain', 
        user = nil, secret = nil, authtype = nil, use_tls = false, 
        use_ssl = false, &block) # :yield: smtp 
    new(address, port).start(helo, user, secret, authtype, use_tls, use_ssl, &block) 
    end 

    def start(helo = 'localhost.localdomain', 
      user = nil, secret = nil, authtype = nil, use_tls = false, use_ssl = false) # :yield: smtp 
    start_method = use_tls ? :do_tls_start : use_ssl ? :do_ssl_start : :do_start 
    if block_given? 
     begin 
     send start_method, helo, user, secret, authtype 
     return yield(self) 
     ensure 
     do_finish 
     end 
    else 
     send start_method, helo, user, secret, authtype 
     return self 
    end 
    end 

    private 

    def do_tls_start(helodomain, user, secret, authtype) 
    raise IOError, 'SMTP session already started' if @started 

    if VERSION == '1.8.6' 
     check_auth_args user, secret, authtype if user or secret 
    elsif VERSION == '1.8.7' 
     check_auth_args user, secret 
    end 

    sock = timeout(@open_timeout) { TCPSocket.open(@address, @port) } 
    @socket = Net::InternetMessageIO.new(sock) 
    @socket.read_timeout = 60 #@read_timeout 
    @socket.debug_output = STDERR #@debug_output 

    check_response(critical { recv_response() }) 
    do_helo(helodomain) 

    raise 'openssl library not installed' unless defined?(OpenSSL) 
    starttls 
    ssl = OpenSSL::SSL::SSLSocket.new(sock) 
    ssl.sync_close = true 
    ssl.connect 
    @socket = Net::InternetMessageIO.new(ssl) 
    @socket.read_timeout = 60 #@read_timeout 
    @socket.debug_output = STDERR #@debug_output 
    do_helo(helodomain) 

    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_ssl_start(helodomain, user, secret, authtype) 
    raise IOError, 'SMTP session already started' if @started 

    if VERSION == '1.8.6' 
     check_auth_args user, secret, authtype if user or secret 
    elsif VERSION == '1.8.7' 
     check_auth_args user, secret 
    end 

    sock = timeout(@open_timeout) { TCPSocket.open(@address, @port) } 
    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 
    @socket.debug_output = STDERR #@debug_output 

    check_response(critical { recv_response() }) 
    do_helo(helodomain) 

    do_helo(helodomain) 

    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') 
    end 

    def quit 
    begin 
     getok('QUIT') 
    rescue EOFError, OpenSSL::SSL::SSLError 
    end 
    end 
end 

は、私はこの問題を解決するhttp://github.com/collectiveidea/action_mailer_optional_tls/blob/master/lib/smtp_tls.rb

9

を参照してください。この設定は以下のとおりです。

config.action_mailer.perform_deliveries = true 
config.action_mailer.raise_delivery_errors = false 
config.action_mailer.delivery_method = :smtp 
config.action_mailer.smtp_settings = { 
    :address    => 'mail.domain.com', 
    :port     => '465', 
    :domain    => 'yourdomain.com', 
    :user_name   => '[email protected]', 
    :password    => 'yourpassword', 
    :authentication  => :login, 
    :ssl     => true, 
    :openssl_verify_mode => 'none' #Use this because ssl is activated but we have no certificate installed. So clients need to confirm to use the untrusted url. 
} 

これは私にとって非常にうまく機能します。

+1

gitlab /メール通知と戦っていました - :ssl => trueが私のために働いていました。 –

+0

Mail GemのREADME.md doc(https://github.com/mikel/mail#getting-emails-from-a-pop-server)は本当に古いので、 ':enable_ssl => true'は動作しなくなりました。代わりに ':ssl => true'を使用してください、何の痛み〒_〒 – DiveInto

関連する問題