Method: Net::POP3#n_bytes
- Defined in:
- lib/net/pop3_ssl.rb
#n_bytes ⇒ Object
Returns the total size in bytes of all the messages on the POP server.
610 611 612 613 614 |
# File 'lib/net/pop3_ssl.rb', line 610 def n_bytes return @n_bytes if @n_bytes @n_mails, @n_bytes = command().stat @n_bytes end |