class Net::POP3

def n_bytes

Returns the total size in bytes of all the messages on the POP server.
def n_bytes
  return @n_bytes if @n_bytes
  @n_mails, @n_bytes = command().stat
  @n_bytes
end