start

start(address, port = nil, helo = 'localhost', user = nil, secret = nil, authtype = nil) Class Public methods Creates a new Net::SMTP object and connects to the server. This method is equivalent to: Net::SMTP.new(address, port).start(helo_domain, account, password, authtype) Example Net::SMTP.start('your.smtp.server') do |smtp| smtp.send_message msgstr, 'from@example.com', ['dest@example.com'] end Block Usage If called with a block, the newly-opened Net::SMTP object is yielded

on_xmldecl_end

on_xmldecl_end() Instance Public methods

shield_path

shield_path(win) Class Public methods

new

GDBM.new(filename, mode = 0666, flags = nil) Class Public methods Creates a new GDBM instance by opening a gdbm file named filename. If the file does not exist, a new file with file mode mode will be created. flags may be one of the following: READER - open as a reader WRITER - open as a writer WRCREAT - open as a writer; if the database does not exist, create a new one NEWDB - open as a writer; overwrite any existing databases The values WRITER, WRCREAT and NEWDB ma

get_eventloop_weight 2

get_eventloop_weight() Instance Public methods

insert

insert(idx='end', keys={}) Instance Public methods

x

x(win) Class Public methods

process

process(action) Instance Public methods

list

list(refname, mailbox) Instance Public methods Sends a LIST command, and returns a subset of names from the complete set of all names available to the client. refname provides a context (for instance, a base directory in a directory-based mailbox hierarchy). mailbox specifies a mailbox or (via wildcards) mailboxes under that context. Two wildcards may be used in mailbox: '*', which matches all characters including the hierarchy delimiter (for instance, '/' on a UNIX-hosted directo

getquota

getquota(mailbox) Instance Public methods Sends the GETQUOTA command along with specified mailbox. If this mailbox exists, then an array containing a Net::IMAP::MailboxQuota object is returned. This command generally is only available to server admin.