Method: Net::POP3#n_mails
- Defined in:
- lib/pop_ssl.rb
#n_mails ⇒ Object
Returns the number of messages on the POP server.
604 605 606 607 608 |
# File 'lib/pop_ssl.rb', line 604 def n_mails return @n_mails if @n_mails @n_mails, @n_bytes = command().stat @n_mails end |