We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b3317b commit 4cc1cb9Copy full SHA for 4cc1cb9
lib/net/imap.rb
@@ -792,10 +792,11 @@ class IMAP < Protocol
792
"UTF8=ONLY" => "UTF8=ACCEPT",
793
}.freeze
794
795
- autoload :ConnectionState, File.expand_path("imap/connection_state", __dir__)
796
- autoload :SASL, File.expand_path("imap/sasl", __dir__)
797
- autoload :SASLAdapter, File.expand_path("imap/sasl_adapter", __dir__)
798
- autoload :StringPrep, File.expand_path("imap/stringprep", __dir__)
+ dir = File.expand_path("imap", __dir__)
+ autoload :ConnectionState, "#{dir}/connection_state"
+ autoload :SASL, "#{dir}/sasl"
+ autoload :SASLAdapter, "#{dir}/sasl_adapter"
799
+ autoload :StringPrep, "#{dir}/stringprep"
800
801
include MonitorMixin
802
if defined?(OpenSSL::SSL)
0 commit comments