るりまサーチ

最速Rubyリファレンスマニュアル検索!
22件ヒット [1-22件を表示] (0.051秒)
トップページ > クエリ:new[x] > クエリ:p=[x] > クラス:Net::POP3[x]

別のキーワード

  1. openssl new
  2. _builtin new
  3. rexml/document new
  4. resolv new
  5. socket new

ライブラリ

検索結果

Net::POP3.start(address, port = nil, account=nil, password=nil, isapop=false) -> Net::POP3 (107.0)

Net::POP3 オブジェクトを生成し、サーバへ接続します。

...
Net::POP3
オブジェクトを生成し、サーバへ接続します。

ブロックを与えない場合には生成したオブジェクトを返します。

ブロックを与えた場合には、生成した Net::POP3 オブジェクトが
ブロックに渡され、ブロックが終わっ...
...995)を
使います。

以下のコードと同じ動作をします。
require 'net/pop'

Net::POP3
.new(address, port, isapop).start(account, password)

使用例:

require 'net/pop'

Net::POP3
.start(addr, port, account, password) {|pop|
pop.each_mail do |m|
file.write m.pop...
...バがAPOPを提供していない場合に発生します
@raise Net::POPError サーバが認証失敗以外のエラーを報告した場合に発生します
@raise Net::POPBadResponse サーバからの応答がプロトコル上不正であった場合に発生します

@see Net::POP3#start...

Net::POP3.start(address, port = nil, account=nil, password=nil, isapop=false) {|pop| .... } -> object (107.0)

Net::POP3 オブジェクトを生成し、サーバへ接続します。

...
Net::POP3
オブジェクトを生成し、サーバへ接続します。

ブロックを与えない場合には生成したオブジェクトを返します。

ブロックを与えた場合には、生成した Net::POP3 オブジェクトが
ブロックに渡され、ブロックが終わっ...
...995)を
使います。

以下のコードと同じ動作をします。
require 'net/pop'

Net::POP3
.new(address, port, isapop).start(account, password)

使用例:

require 'net/pop'

Net::POP3
.start(addr, port, account, password) {|pop|
pop.each_mail do |m|
file.write m.pop...
...バがAPOPを提供していない場合に発生します
@raise Net::POPError サーバが認証失敗以外のエラーを報告した場合に発生します
@raise Net::POPBadResponse サーバからの応答がプロトコル上不正であった場合に発生します

@see Net::POP3#start...