516件ヒット
[1-100件を表示]
(0.071秒)
種類
- インスタンスメソッド (288)
- 特異メソッド (168)
- クラス (60)
クラス
-
Net
:: POP3 (348) -
Net
:: POPMail (108)
キーワード
- APOP (12)
- APOPSession (12)
- POP (12)
- POPAuthenticationError (12)
- POPMail (12)
- POPSession (12)
- active? (12)
- all (36)
-
auth
_ only (24) - certs (12)
-
delete
_ all (48) -
disable
_ ssl (12) - each (12)
-
each
_ mail (12) -
enable
_ ssl (24) - foreach (12)
- mail (36)
- mails (12)
- new (12)
-
open
_ timeout (12) - pop (36)
-
read
_ timeout (12) -
read
_ timeout= (12) -
set
_ debug _ output (12) -
socket
_ type (12) -
ssl
_ params (12) - start (48)
- started? (12)
-
use
_ ssl? (12)
検索結果
先頭5件
-
Net
:: POP3 # each {|popmail| . . . . } -> [Net :: POPMail] (6108.0) -
サーバ上の各メールを引数としてブロックを呼びだします。
...ルを引数としてブロックを呼びだします。
メールは Net::POPMail のインスタンスとして渡されます。
pop3.mails.each と同じです。
@raise TimeoutError 接続がタイムアウトした場合に発生します
@raise Net::POPError サーバがエラーを報告... -
Net
:: POP3 # each _ mail {|popmail| . . . . } -> [Net :: POPMail] (6108.0) -
サーバ上の各メールを引数としてブロックを呼びだします。
...ルを引数としてブロックを呼びだします。
メールは Net::POPMail のインスタンスとして渡されます。
pop3.mails.each と同じです。
@raise TimeoutError 接続がタイムアウトした場合に発生します
@raise Net::POPError サーバがエラーを報告... -
Net
:: POP3 . foreach(address , port = nil , account , password , isapop=false) {|mail| . . . . } -> () (6108.0) -
POP セッションを開始し、 サーバ上のすべてのメールを取りだし、 個々のメールを引数としてブロックを呼びだします。
...をします。
require 'net/pop'
Net::POP3.start(address, port, account, password, isapop=false) {|pop|
pop.each_mail do |m|
yield m
end
}
使用例:
require 'net/pop'
Net::POP3.foreach('pop.example.com', 110,
'YourAccount', 'YourPassword') do |m|......OP3サーバのポート番号
@param account アカウント名文字列
@param password パスワード文字列
@param isapop 真でAPOPを利用します
@raise TimeoutError 接続がタイムアウトした場合に発生します
@raise Net::POPAuthenticationError 認証に失敗した、も......ていない場合に発生します
@raise Net::POPError サーバが認証失敗以外のエラーを報告した場合に発生します
@raise Net::POPBadResponse サーバからの応答がプロトコル上不正であった場合に発生します
@see Net::POP3.start, Net::POP3#each_mail... -
Net
:: POP3 # active? -> bool (6102.0) -
POP3 セッションが開始されていたら真を返します。
...POP3 セッションが開始されていたら真を返します。
active? は obsolete です。... -
Net
:: POP3 . certs -> String|nil (6102.0) -
SSL のパラメータの ca_file (なければ ca_path) を返します。
...SSL のパラメータの ca_file (なければ ca_path) を返します。
どちらも設定されていない場合は nil を返します。
@see OpenSSL::SSL::SSLContext#ca_file, OpenSSL::SSL::SSLContext#ca_path... -
Net
:: POP3 . socket _ type -> Class (6102.0) -
このメソッドは obsolete です。 使わないでください。
このメソッドは obsolete です。
使わないでください。 -
Net
:: POPAuthenticationError (6002.0) -
POP3 で認証に失敗したときに発生します。
POP3 で認証に失敗したときに発生します。 -
Net
:: POP3 # started? -> bool (3002.0) -
POP3 セッションが開始されていたら真を返します。
...POP3 セッションが開始されていたら真を返します。
active? は obsolete です。... -
Net
:: POP3 . APOP(is _ apop) -> Class (134.0) -
bool が真なら Net::APOP クラス、偽なら Net::POP3 クラスを返します。
...bool が真なら Net::APOP クラス、偽なら Net::POP3 クラスを返します。
使用例:
require 'net/pop'
pop = Net::POP3::APOP($isapop).new(addr, port)
pop.start(account, password) {
....
}
@param is_apop 真の場合に Net::APOP を返します。...
