るりまサーチ

最速Rubyリファレンスマニュアル検索!
24件ヒット [1-24件を表示] (0.006秒)
トップページ > クエリ:examine[x] > 種類:ライブラリ[x]

別のキーワード

  1. imap examine
  2. net/imap examine
  3. examine net/imap
  4. examine net::imap

検索結果

net/imap (19.0)

このライブラリは Internet Message Access Protocol (IMAP) の クライアントライブラリです。2060 を元に 実装されています。

...が多いです。

メールボックス内のメッセージ(メール)を処理する場合、
まず Net::IMAP#select もしくは
Net::IMAP#examine で処理対象のメールボックスを
指定する必要があります。これらの操作が成功したならば、
「selected」状態...
...表示する。
require 'net/imap'

imap = Net::IMAP.new('mail.example.com')
imap.authenticate('LOGIN', 'joe_user', 'joes_password')
imap.examine('INBOX')
imap.search(["RECENT"]).each do |message_id|
envelope = imap.fetch(message_id, "ENVELOPE")[0].attr["ENVELOPE"]
puts "#{envelope...
...ントの現在の状態では使えないコマンドを使おうとした
場合にも発生します。例えば、
selected状態(SELECT/EXAMINEでこの状態に移行する)にならずに
SEARCH コマンドを使おうとした場合に発生します。
サーバの内部エラー(...

rubygems/commands/specification_command (7.0)

指定された Gem パッケージの gemspec の情報を YAML 形式で表示するためのライブラリです。

...ブラリです。

Usage: gem specification [GEMFILE] [options]
Options:
-v, --version VERSION Specify version of gem to examine
--platform PLATFORM Specify the platform of gem to specification
--all Output specifications fo...