summaryrefslogtreecommitdiff
path: root/lib/net/pop.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/net/pop.rb')
-rw-r--r--lib/net/pop.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/net/pop.rb b/lib/net/pop.rb
index 7098bb9499..74c0e1815b 100644
--- a/lib/net/pop.rb
+++ b/lib/net/pop.rb
@@ -52,10 +52,10 @@ Net::Session
class POP3Session < Session
- Version = '1.1.1'
+ Version = '1.1.2'
session_setvar :port, '110'
- session_setvar :command_type, 'POP3Command'
+ session_setvar :command_type, 'Net::POP3Command'
attr :mails
@@ -189,7 +189,7 @@ Net::POP3Session
class APOPSession < POP3Session
- session_setvar :command_type, 'APOPCommand'
+ session_setvar :command_type, 'Net::APOPCommand'
end