Send nil for SMTP_LOGIN or SMTP_PASSWORD if it was left blank in the envfile, otherwise Ruby still attempts auth even if SMTP_AUTH_METHOD is none (#2180)
This commit is contained in:
		
							parent
							
								
									59a77923b3
								
							
						
					
					
						commit
						b79ba3db8a
					
				| @ -98,12 +98,10 @@ Rails.application.configure do | |||||||
|   config.action_mailer.smtp_settings = { |   config.action_mailer.smtp_settings = { | ||||||
|     :port                 => ENV['SMTP_PORT'], |     :port                 => ENV['SMTP_PORT'], | ||||||
|     :address              => ENV['SMTP_SERVER'], |     :address              => ENV['SMTP_SERVER'], | ||||||
|     :user_name            => ENV['SMTP_LOGIN'], |     :user_name            => ENV['SMTP_LOGIN'].presence, | ||||||
|     :password             => ENV['SMTP_PASSWORD'], |     :password             => ENV['SMTP_PASSWORD'].presence, | ||||||
| 
 |  | ||||||
|     :domain               => ENV['SMTP_DOMAIN'] || ENV['LOCAL_DOMAIN'], |     :domain               => ENV['SMTP_DOMAIN'] || ENV['LOCAL_DOMAIN'], | ||||||
|     :authentication       => ENV['SMTP_AUTH_METHOD'] == 'none' ? nil : ENV['SMTP_AUTH_METHOD'] || :plain, |     :authentication       => ENV['SMTP_AUTH_METHOD'] == 'none' ? nil : ENV['SMTP_AUTH_METHOD'] || :plain, | ||||||
| 
 |  | ||||||
|     :openssl_verify_mode  => ENV['SMTP_OPENSSL_VERIFY_MODE'], |     :openssl_verify_mode  => ENV['SMTP_OPENSSL_VERIFY_MODE'], | ||||||
|     :enable_starttls_auto => ENV['SMTP_ENABLE_STARTTLS_AUTO'] || true, |     :enable_starttls_auto => ENV['SMTP_ENABLE_STARTTLS_AUTO'] || true, | ||||||
|   } |   } | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user