Sha256: 2730cbbce24f34de531ea4b753f6cafd202afedaaebbb59fe3e718c6dc3df43e
Contents?: true
Size: 452 Bytes
Versions: 15
Compression:
Stored size: 452 Bytes
Contents
# encoding: utf-8 # Include this module to retrieve emails via POP3. Each email retrieved is given to a new instance of the "includer". # This module uses the defaults set in Configuration to retrieve POP3 settings. # # Thanks to Nicolas Fouché for this wrapper # module Mail module Retrievable module_function def method_missing(name, *args, &block) Mail.defaults.retriever_method.__send__(name, *args, &block) end end end
Version data entries
15 entries across 15 versions & 1 rubygems