Git Product home page Git Product logo

Comments (5)

HarshRajIN avatar HarshRajIN commented on August 21, 2024

Ruby 2.6.4

from mail.

eval avatar eval commented on August 21, 2024

@HarshRajIN what config did you use?

from mail.

HarshRajIN avatar HarshRajIN commented on August 21, 2024
def self.send_using_options(options, environment)
        options[:from] = '[email protected]'
        options[:via] = :smtp
        options[:via_options] = {
          address: smtp_server_address(environment),
          port: '25',
          domain: 'company.com'
        }
        Pony.mail(options)
      end

Log-

SSL_connect returned=1 errno=0 state=error: certificate verify failed (unable to get local issuer certificate) 
	/usr/local/lib/ruby/2.6.0/net/protocol.rb:44:in `connect_nonblock'
	/usr/local/lib/ruby/2.6.0/net/protocol.rb:44:in `ssl_socket_connect'
	/usr/local/bundle/gems/net-smtp-0.3.3/lib/net/smtp.rb:690:in `tlsconnect'
	/usr/local/bundle/gems/net-smtp-0.3.3/lib/net/smtp.rb:666:in `do_start'
	/usr/local/bundle/gems/net-smtp-0.3.3/lib/net/smtp.rb:611:in `start'
	/usr/local/bundle/gems/mail-2.8.0/lib/mail/network/delivery_methods/smtp.rb:109:in `start_smtp_session'
	/usr/local/bundle/gems/mail-2.8.0/lib/mail/network/delivery_methods/smtp.rb:100:in `deliver!'
	/usr/local/bundle/gems/mail-2.8.0/lib/mail/message.rb:269:in `deliver!'
	/usr/local/bundle/gems/pony-1.13.1/lib/pony.rb:177:in `deliver'
	/usr/local/bundle/gems/pony-1.13.1/lib/pony.rb:166:in `mail'
	/usr/local/bundle/gems/cert-app-2.4.0/lib/cert_app/util/mail.rb:33:in `send_using_options'

from mail.

eval avatar eval commented on August 21, 2024

Newer versions of net-smtp will do starttls by default.

From mail v2.8 you can override this. Try

def self.send_using_options(options, environment)
        options[:from] = '[email protected]'
        options[:via] = :smtp
        options[:via_options] = {
          address: smtp_server_address(environment),
          port: '25',
<         domain: 'company.com'
>         domain: 'company.com',
>         enable_starttls: false
        }
        Pony.mail(options)
      end

NOTE: only use when you don't want to upgrade a non-secure connection.

from mail.

HarshRajIN avatar HarshRajIN commented on August 21, 2024

Got it. Thanks @eval

from mail.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.