るりまサーチ

最速Rubyリファレンスマニュアル検索!
1954件ヒット [1-100件を表示] (0.128秒)
トップページ > クエリ:-[x] > クエリ:p[x] > クエリ:net/imap[x]

別のキーワード

  1. openssl p
  2. openssl p=
  3. fileutils mkdir_p
  4. _builtin p
  5. matrix p

ライブラリ

キーワード

検索結果

<< 1 2 3 ... > >>

net/imap (44126.0)

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

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

=== IMAP の概要

IMAPを利用するには、まずサーバに接続し、
Net::IMAP#authenticate もしくは
Net::IMAP#login で認証します。
IMAP ではメール...
...IMAP を使わないメールアプリケーションがメールの順番を
変えてしまった場合は、UID が振り直されます。

=== 例

デフォルトのメールボックス(INBOX)の送り元とサブジェクトを表示する。
require 'net/imap'

imap = Net::IMAP.new('ma...
...'joes_password')
imap.examine('INBOX')
imap.search(["RECENT"]).each do |message_id|
envelope = imap.fetch(message_id, "ENVELOPE")[0].attr["ENVELOPE"]
p
uts "#{envelope.from[0].name}: \t#{envelope.subject}"
end

2003年4月のメールをすべて Mail/sent-mail から "Mail/sent-apr03"...

Net::IMAP::ResponseError#response -> Net::IMAP::TaggedResponse | Net::IMAP::UntaggedResponse (14400.0)

エラーとなったレスポンスを表すオブジェクトを返します。

エラーとなったレスポンスを表すオブジェクトを返します。

Net::IMAP::BodyTypeBasic#disposition -> Net::IMAP::ContentDisposition | nil (14316.0)

Content-Dispotition の値を返します。

...Content-Dispotition の値を返します。

Net::IMAP::ContentDisposition オブジェクトを返します。

@see 1806, 2183...

Net::IMAP::BodyTypeMessage#disposition -> Net::IMAP::ContentDisposition | nil (14316.0)

Content-Dispotition の値を返します。

...Content-Dispotition の値を返します。

Net::IMAP::ContentDisposition オブジェクトを返します。

@see 1806, 2183...

Net::IMAP::BodyTypeMultipart#disposition -> Net::IMAP::ContentDisposition | nil (14316.0)

Content-Dispotition の値を返します。

...Content-Dispotition の値を返します。

Net::IMAP::ContentDisposition オブジェクトを返します。

@see 1806, 2183...

絞り込み条件を変える

Net::IMAP::BodyTypeText#disposition -> Net::IMAP::ContentDisposition | nil (14316.0)

Content-Dispotition の値を返します。

...Content-Dispotition の値を返します。

Net::IMAP::ContentDisposition オブジェクトを返します。

@see 1806, 2183...

Net::IMAP::BodyTypeMessage#envelope -> Net::IMAP::Envelpe | nil (14300.0)

メッセージのエンベロープを返します。

メッセージのエンベロープを返します。

Net::IMAP::BodyTypeMultipart#parts -> [Net::IMAP::BodyTypeBasic | Net::IMAP::BodyTypeText | Net::IMAP::BodyTypeMessage | Net::IMAP::BodyTypeMultipart] (14300.0)

マルチパートの各部分を返します。

マルチパートの各部分を返します。

Net::IMAP::ContentDisposition#param -> { String => String } | nil (14234.0)

Content-Disposition フィールドのパラメータをハッシュテーブルで 返します。

...Content-Disposition フィールドのパラメータをハッシュテーブルで
返します。

ハッシュテーブルのキーは以下のような値を取ります。詳しくは
2183 などを見てください。
* "FILENAME"
* "CREATION-DATE"
* "MODIFICATION-DATE"
* "READ-DAT"...

Net::IMAP::Envelope#in_reply_to -> String | nil (14232.0)

In-reply-to の内容を文字列で返します。

...In-reply-to の内容を文字列で返します。

エンベロープに存在しないときは nil を返します。...

絞り込み条件を変える

<< 1 2 3 ... > >>