るりまサーチ

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

別のキーワード

  1. pop3 start
  2. pop3 delete_all
  3. open3 popen3
  4. open3 popen2
  5. open3 popen2e

ライブラリ

クラス

キーワード

検索結果

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

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

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

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

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

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

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

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

Net::POP3#set_debug_output(f) -> () (3013.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)
-> "+OK popd <1...