192件ヒット
[1-100件を表示]
(0.133秒)
ライブラリ
-
net
/ imap (192)
キーワード
-
add
_ authenticator (12) - debug (12)
- debug= (12)
-
decode
_ utf7 (12) -
default
_ imap _ port (12) -
default
_ imaps _ port (12) -
default
_ port (12) -
default
_ ssl _ port (12) -
default
_ tls _ port (12) -
encode
_ utf7 (12) -
format
_ date (12) -
format
_ datetime (12) -
max
_ flag _ count (12) -
max
_ flag _ count= (12) - new (24)
検索結果
先頭5件
-
Net
:: IMAP . add _ authenticator(auth _ type , authenticator) -> () (6302.0) -
Net::IMAP#authenticate で使う 認証用クラスを設定します。
...Net::IMAP#authenticate で使う
認証用クラスを設定します。
imap ライブラリに新たな認証方式を追加するために用います。
通常は使う必要はないでしょう。もしこれを用いて
認証方式を追加する場合は net/imap.rb の
Net::IMAP::LoginA......uthenticator などを参考にしてください。
@param auth_type 認証の種類(文字列)
@param authenticator 認証クラス(Class オブジェクト)... -
Net
:: IMAP . decode _ utf7(str) -> String (6102.0) -
modified UTF-7 の文字列を UTF-8 の文字列に変換します。
...modified UTF-7 の文字列を UTF-8 の文字列に変換します。
modified UTF-7 は IMAP のメールボックス名に使われるエンコーディングで、
UTF-7 を修正したものです。
詳しくは 2060 の 5.1.3 を参照してください。
Net::IMAP ではメールボッ......クス名のエンコードを自動的変換「しない」
ことに注意してください。必要があればユーザが変換すべきです。
@param str 変換対象の modified UTF-7 でエンコードされた文字列
@see Net::IMAP.encode_utf7... -
Net
:: IMAP . default _ imap _ port -> Integer (6102.0) -
デフォルトの IMAP のポート番号(143)を返します。
...デフォルトの IMAP のポート番号(143)を返します。
@see Net::IMAP.default_tls_port... -
Net
:: IMAP . default _ imaps _ port -> Integer (6102.0) -
デフォルトの IMAPS のポート番号(993)を返します。
...デフォルトの IMAPS のポート番号(993)を返します。
@see Net::IMAP.default_port... -
Net
:: IMAP . default _ port -> Integer (6102.0) -
デフォルトの IMAP のポート番号(143)を返します。
...デフォルトの IMAP のポート番号(143)を返します。
@see Net::IMAP.default_tls_port... -
Net
:: IMAP . default _ ssl _ port -> Integer (6102.0) -
デフォルトの IMAPS のポート番号(993)を返します。
...デフォルトの IMAPS のポート番号(993)を返します。
@see Net::IMAP.default_port... -
Net
:: IMAP . default _ tls _ port -> Integer (6102.0) -
デフォルトの IMAPS のポート番号(993)を返します。
...デフォルトの IMAPS のポート番号(993)を返します。
@see Net::IMAP.default_port... -
Net
:: IMAP . encode _ utf7(str) -> String (6102.0) -
UTF-8 の文字列を modified UTF-7 の文字列に変換します。
...UTF-8 の文字列を modified UTF-7 の文字列に変換します。
modified UTF-7 は IMAP のメールボックス名に使われるエンコーディングで、
UTF-7 を修正したものです。
詳しくは Net::IMAP.encode_utf7 を見てください。
@param str 変換対象の UTF-8......でエンコードされた文字列
@see Net::IMAP.decode_utf7... -
Net
:: IMAP . format _ date(time) -> String (6102.0) -
時刻オブジェクトを IMAP の日付フォーマットでの文字列に変換します。
...時刻オブジェクトを IMAP の日付フォーマットでの文字列に変換します。
require 'net/imap'
Net::IMAP.format_date(Time.new(2011, 6, 20))
# => "20-Jun-2011"
@param time 変換する時刻オブジェクト...