322件ヒット
[301-322件を表示]
(0.074秒)
ライブラリ
- dbm (12)
-
net
/ http (36) -
net
/ imap (60) -
rinda
/ tuplespace (24) -
rubygems
/ remote _ fetcher (84) -
rubygems
/ spec _ fetcher (48) - tsort (58)
クラス
- DBM (12)
-
Gem
:: RemoteFetcher (84) -
Gem
:: SpecFetcher (48) -
Net
:: IMAP (48) -
Net
:: IMAP :: FetchData (12) -
Rinda
:: TupleEntry (24)
モジュール
-
Net
:: HTTPHeader (36) - TSort (58)
キーワード
- [] (12)
- attr (12)
-
cache
_ dir (12) - dir (12)
- download (12)
-
each
_ strongly _ connected _ component (23) -
each
_ strongly _ connected _ component _ from (23) - escape (12)
-
fetch
_ path (12) -
find
_ matching (12) -
get
_ file _ uri _ path (12) -
normalize
_ uri (12) -
open
_ uri _ or _ path (12) - store (12)
-
strongly
_ connected _ components (12) -
uid
_ fetch (12) -
uid
_ store (12) - unescape (12)
検索結果
先頭2件
-
Net
:: IMAP # store(set , attr , flags) -> [Net :: IMAP :: FetchData] | nil (207.0) -
STORE コマンドを送り、メールボックス内のメッセージを 更新します。
...配列、もしくは
Range オブジェクトを渡します。
Net::IMAP#select で指定したメールボックスを対象とします。
attr で何をどのように変化させるかを指定します。
以下を指定することができます。
* "FLAGS"
* "+FLAGS"
* "-FLAGS"......:IMAP::FetchData オブジェクトの
配列で返します。
例:
p imap.store(6..8, "+FLAGS", [:Deleted])
#=> [#<Net::IMAP::FetchData seqno=6, attr={"FLAGS"=>[:Seen, :Deleted]}>, #<Net::IMAP::FetchData seqno=7, attr={"FLAGS"=>[:Seen, :Deleted]}>, #<Net::IMAP::FetchData seqno=8, attr={"FLAG......S"=>[:Seen, :Deleted]}>]
@param set 更新するメッセージのsequence number
@param attr 更新方式(文字列)
@param flags 更新内容(Symbol の配列)
@see Net::IMAP#uid_store, Net::IMAP#fetch... -
Net
:: IMAP # uid _ store(set , attr , flags) -> [Net :: IMAP :: FetchData] | nil (207.0) -
UID STORE コマンドを送り、メールボックス内のメッセージを 更新します。
...配列、もしくは
Range オブジェクトを渡します。
Net::IMAP#select で指定したメールボックスを対象とします。
attr で何をどのように変化させるかを指定します。
以下を指定することができます。
* "FLAGS"
* "+FLAGS"
* "-FLAGS"......してください。
返り値は更新された内容を Net::IMAP::FetchData オブジェクトの
配列で返します。
@param set 更新するメッセージの UID
@param attr 更新方式(文字列)
@param flags 更新内容(Symbol の配列)
@see Net::IMAP#store, Net::IMAP#uid_fetch...