るりまサーチ (Ruby 2.3.0)

最速Rubyリファレンスマニュアル検索!
20件ヒット [1-20件を表示] (0.023秒)
トップページ > クエリ:IO[x] > バージョン:2.3.0[x] > ライブラリ:net/imap[x]

別のキーワード

  1. io popen
  2. io pipe
  3. io each
  4. io each_line
  5. io readlines

検索結果

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

Content-Dispotition の値を返します。

Content-Dispotition の値を返します。

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

@see 1806, 2183

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

Content-Dispotition の値を返します。

Content-Dispotition の値を返します。

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

@see 1806, 2183

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

Content-Dispotition の値を返します。

Content-Dispotition の値を返します。

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

@see 1806, 2183

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

Content-Dispotition の値を返します。

Content-Dispotition の値を返します。

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

@see 1806, 2183

Net::IMAP::BodyTypeBasic#description -> String | nil (18307.0)

Content-Description の値を文字列で返します。

Content-Description の値を文字列で返します。

@see 2045

絞り込み条件を変える

Net::IMAP::BodyTypeBasic#extension -> Array | nil (18307.0)

メッセージの拡張データを返します。

メッセージの拡張データを返します。

Net::IMAP::BodyTypeMessage#description -> String | nil (18307.0)

Content-Description の値を文字列で返します。

Content-Description の値を文字列で返します。

@see 2045

Net::IMAP::BodyTypeMessage#extension -> Array | nil (18307.0)

メッセージの拡張データを返します。

メッセージの拡張データを返します。

Net::IMAP::BodyTypeMultipart#extension -> Array | nil (18307.0)

メッセージの拡張データを返します。

メッセージの拡張データを返します。

Net::IMAP::BodyTypeText#description -> String | nil (18307.0)

Content-Description の値を文字列で返します。

Content-Description の値を文字列で返します。

@see 2045

絞り込み条件を変える

Net::IMAP::BodyTypeText#extension -> Array | nil (18307.0)

メッセージの拡張データを返します。

メッセージの拡張データを返します。

Net::IMAP::NOINFERIORS -> Symbol (18307.0)

「:Noinferiors」というシンボルを返します。

「:Noinferiors」というシンボルを返します。

このメールボックスの
下に子レベルの階層が存在不可能であることを意味します。

LIST応答の属性
(Net::IMAP#list、Net::IMAP::MailboxList#attr)
として用いられます。

詳しくは 2060 を参照してください。

Net::IMAP::ContentDisposition (18007.0)

1806, 2183 で定義されている MIME の Content-Disposition フィールドを表すクラスです。

1806, 2183 で定義されている MIME の
Content-Disposition フィールドを表すクラスです。

Net::IMAP::ContinuationRequest (18007.0)

IMAP の continuation request (命令継続要求) を表すクラスです。

IMAP の continuation request (命令継続要求) を表すクラスです。

通常このクラスを直接扱うことはありません。
レスポンスハンドラ(Net::IMAP#add_response_handler)
に渡されます。

詳しくは 2060 の 7.5 を参照してください。

Net::IMAP::ContentDisposition#dsp_type -> String (9007.0)

Content-Disposition フィールドのタイプを文字列で返します。

Content-Disposition フィールドのタイプを文字列で返します。

"INLINE", "ATTACHMENT" などの文字列を返します。

詳しくは 2183 などを見てください。

絞り込み条件を変える

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

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

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

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

Net::IMAP::ContinuationRequest#data -> Net::IMAP::ResponseText (9007.0)

レスポンスのデータを返します。

レスポンスのデータを返します。

Net::IMAP::ContinuationRequest#raw_data -> String (9007.0)

レスポンス文字列を返します。

レスポンス文字列を返します。

Net::IMAP#starttls(options) -> Net::IMAP::TaggedResponse (307.0)

STARTTLS コマンドを送って TLS のセッションを開始します。

STARTTLS コマンドを送って TLS のセッションを開始します。

options で openssl に渡すオプションを指定します。
OpenSSL::SSL::SSLContext#set_params の引数と同じ意味です。

互換性のため、certs で証明書or証明書ディレクトリのファイル名(文字列)、
verify で検証するかどうか(Net::IMAP::VERIFY_PEER、
Net::IMAP::VERIFY_NONEに対応します)を
指定することができます。

@param options SSL/TLS のオプション(Hash オブジェクト)
@param ce...

Net::IMAP.new(host, options) -> Net::IMAP (307.0)

新たな Net::IMAP オブジェクトを生成し、指定したホストの 指定したポートに接続し、接続語の IMAP オブジェクトを返します。

...同じです。
これの :ssl パラメータを使うことで、OpenSSL のパラメータを詳細に
調整できます。



require 'net/imap'

imap = Net::IMAP.new('imap.example.com', :port => 993,
:ssl => { :verify_mode => OpenSSL::SSL::VERIFY_PEER,...

絞り込み条件を変える