Class: Net::POP3Command
- Inherits:
-
Object
- Object
- Net::POP3Command
- Defined in:
- lib/net/pop_ssl.rb
Overview
:nodoc: internal use only
Instance Method Summary collapse
- #apop(account, password) ⇒ Object
- #auth(account, password) ⇒ Object
- #dele(num) ⇒ Object
-
#initialize(sock) ⇒ POP3Command
constructor
A new instance of POP3Command.
- #inspect ⇒ Object
- #list ⇒ Object
- #quit ⇒ Object
- #retr(num, &block) ⇒ Object
- #rset ⇒ Object
- #stat ⇒ Object
- #top(num, lines = 0, &block) ⇒ Object
- #uidl(num = nil) ⇒ Object
Constructor Details
#initialize(sock) ⇒ POP3Command
Returns a new instance of POP3Command.
862 863 864 865 866 867 |
# File 'lib/net/pop_ssl.rb', line 862 def initialize(sock) @socket = sock @error_occured = false res = check_response(critical { recv_response() }) @apop_stamp = res.slice(/<.+>/) end |
Instance Method Details
#apop(account, password) ⇒ Object
880 881 882 883 884 885 886 887 888 |
# File 'lib/net/pop_ssl.rb', line 880 def apop(account, password) raise POPAuthenticationError, 'not APOP server; cannot login' \ unless @apop_stamp check_response_auth(critical { get_response('APOP %s %s', account, Digest::MD5.hexdigest(@apop_stamp + password)) }) end |
#auth(account, password) ⇒ Object
873 874 875 876 877 878 |
# File 'lib/net/pop_ssl.rb', line 873 def auth(account, password) check_response_auth(critical { check_response_auth(get_response('USER %s', account)) get_response('PASS %s', password) }) end |
#dele(num) ⇒ Object
928 929 930 |
# File 'lib/net/pop_ssl.rb', line 928 def dele(num) check_response(critical { get_response('DELE %d', num) }) end |
#inspect ⇒ Object
869 870 871 |
# File 'lib/net/pop_ssl.rb', line 869 def inspect "#<#{self.class} socket=#{@socket}>" end |
#list ⇒ Object
890 891 892 893 894 895 896 897 898 899 900 901 |
# File 'lib/net/pop_ssl.rb', line 890 def list critical { getok 'LIST' list = [] @socket.each_list_item do |line| m = /\A(\d+)[ \t]+(\d+)/.match(line) or raise POPBadResponse, "bad response: #{line}" list.push [m[1].to_i, m[2].to_i] end return list } end |
#quit ⇒ Object
949 950 951 |
# File 'lib/net/pop_ssl.rb', line 949 def quit check_response(critical { get_response('QUIT') }) end |
#retr(num, &block) ⇒ Object
921 922 923 924 925 926 |
# File 'lib/net/pop_ssl.rb', line 921 def retr(num, &block) critical { getok('RETR %d', num) @socket.(&block) } end |
#rset ⇒ Object
910 911 912 |
# File 'lib/net/pop_ssl.rb', line 910 def rset check_response(critical { get_response('RSET') }) end |
#stat ⇒ Object
903 904 905 906 907 908 |
# File 'lib/net/pop_ssl.rb', line 903 def stat res = check_response(critical { get_response('STAT') }) m = /\A\+OK\s+(\d+)\s+(\d+)/.match(res) or raise POPBadResponse, "wrong response format: #{res}" [m[1].to_i, m[2].to_i] end |
#top(num, lines = 0, &block) ⇒ Object
914 915 916 917 918 919 |
# File 'lib/net/pop_ssl.rb', line 914 def top(num, lines = 0, &block) critical { getok('TOP %d %d', num, lines) @socket.(&block) } end |
#uidl(num = nil) ⇒ Object
932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 |
# File 'lib/net/pop_ssl.rb', line 932 def uidl(num = nil) if num res = check_response(critical { get_response('UIDL %d', num) }) return res.split(/ /)[1] else critical { getok('UIDL') table = {} @socket.each_list_item do |line| num, uid = line.split table[num.to_i] = uid end return table } end end |