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