るりまサーチ

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

別のキーワード

  1. etc sc_xopen_enh_i18n
  2. pop3 n_bytes
  3. net/pop n_bytes
  4. pop n_mails

ライブラリ

クラス

キーワード

検索結果

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

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

...ールの総バイト数を返します。

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

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

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

...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 <1162042773.26346.155555a1861c@pop.example.com>\r\n"
<- "APOP Yo...

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

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

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

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