るりまサーチ

最速Rubyリファレンスマニュアル検索!
33件ヒット [1-33件を表示] (0.110秒)

別のキーワード

  1. net/pop start
  2. net/pop pop
  3. net/pop delete_all
  4. pop start
  5. pop3 start

ライブラリ

クラス

キーワード

検索結果

Net::POP3#n_bytes -> Integer (26102.0)

サーバにあるメールの総バイト数を返します。

サーバにあるメールの総バイト数を返します。

@see Net::POP3#n_mails
@raise TimeoutError 接続がタイムアウトした場合に発生します
@raise Net::POPError サーバがエラーを報告した場合に発生します
@raise Net::POPBadResponse サーバからの応答がプロトコル上不正であった場合に発生します

Net::POP3#set_debug_output(f) -> () (8013.0)

デバッグ用の出力 f をセットします。

...オブジェクトでなければなりません。

使用例:

require 'net/pop'

pop = Net::POP3.new('pop.example.com', 110)
pop.set_debug_output $stderr
pop.start('YourAccount', 'YourPassword') {
p pop.n_bytes
}

実行結果:

POP session started: pop.example.com:110 (POP)
->...

Net::POP3#n_mails -> Integer (8007.0)

サーバにあるメールの数を返します。

...サーバにあるメールの数を返します。

@see Net::POP3#n_bytes
@raise TimeoutError 接続がタイムアウトした場合に発生します
@raise Net::POPError サーバがエラーを報告した場合に発生します
@raise Net::POPBadResponse サーバからの応答がプロト...