るりまサーチ

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

別のキーワード

  1. _builtin using
  2. main using
  3. module using
  4. processcontroller using_at_exit_when_process_exit
  5. shell/process-controller using_at_exit_when_process_exit

ライブラリ

検索結果

Net::POP3.auth_only(address, port = nil, account, password, isapop=false) (7.0)

POP セッションを開き、認証だけを行って接続を切ります。

...続を切ります。

主に POP before SMTP のために用意されています。


使用例:

require 'net/pop'

Net::POP3
.auth_only('pop.example.com', nil, # using default port (110)
'YourAccount', 'YourPassword')

@param address POP3サーバのホスト名文...