るりまサーチ

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

別のキーワード

  1. net/smtp start
  2. net/imap name
  3. net/http get
  4. net/imap param
  5. net/pop pop

検索結果

<< 1 2 3 > >>

net/imap (38024.0)

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

...振り直されます。

=== 例

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

imap = Net::IMAP.new('mail.example.com')
imap.authenticate('LOGIN', 'joe_user', 'joes_password')
imap.examine('INBOX')
imap.search(["RECE...
...].name}: \t#{envelope.subject}"
end

2003年4月のメールをすべて Mail/sent-mail から "Mail/sent-apr03" へ移動させる

require 'net/imap'

imap = Net::IMAP.new('mail.example.com')
imap.authenticate('LOGIN', 'joe_user', 'joes_password')
imap.select('Mail/sent-mail')
if not i...
...Part One: Format of Internet Message Bodies", RFC
2045, November 1996.

* [RFC-822]
Crocker, D., "Standard for the Format of ARPA Internet Text
Messages", STD 11, RFC 822, University of Delaware, August 1982.

* [RFC-2087]
Myers, J., "IMAP4 QUOTA extension", RFC 2087, January 199...

Net::IMAP::ResponseText#text -> String (29101.0)

応答のテキストを文字列で返します。

応答のテキストを文字列で返します。

Net::IMAP::BodyTypeText (14016.0)

Content-Type が text であるメッセージを表すクラスです。

...Content-Type が text であるメッセージを表すクラスです。

平文のメールを表します。
詳しくは MIME のRFC(2045)を参照してください。...

Net::IMAP::ResponseText (14000.0)

応答のテキストを表すクラスです。

応答のテキストを表すクラスです。

Net::IMAP::BodyTypeText#media_type -> String (11006.0)

MIME のメディアタイプを返します。

...MIME のメディアタイプを返します。

これは "TEXT" を返します。

@see Net::IMAP::BodyTypeText#subtype...

絞り込み条件を変える

Net::IMAP::BodyTypeText#content_id -> String | nil (11000.0)

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

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

@see 2045

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

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

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

@see 2045

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

Content-Dispotition の値を返します。

Content-Dispotition の値を返します。

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

@see 1806, 2183

Net::IMAP::BodyTypeText#encoding -> String (11000.0)

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

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

@see 2045
<< 1 2 3 > >>