class Net::POP3

def n_mails

Returns the number of messages on the POP server.
def n_mails
  return @n_mails if @n_mails
  @n_mails, @n_bytes = command().stat
  @n_mails
end