aboutsummaryrefslogtreecommitdiffstats
path: root/lib/net/imap.rb
diff options
context:
space:
mode:
authorgsinclair <gsinclair@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-05-09 14:42:43 +0000
committergsinclair <gsinclair@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-05-09 14:42:43 +0000
commitd9c41de9ccd3a1f262b22ddb0c705038c97beef5 (patch)
tree8531eb7693753d241af45ca9278fd33142b53d93 /lib/net/imap.rb
parent0603e040b232e019fcf7b6491586f696915819ef (diff)
downloadruby-d9c41de9ccd3a1f262b22ddb0c705038c97beef5.tar.gz
* lib/net/ftp.rb: ported documentation improvement from 1.8 branch
* lib/net/imap.rb: ditto * lib/net/pop.rb: ditto * lib/net/smtp.rb: ditto * lib/net/telnet.rb: ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6284 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/net/imap.rb')
-rw-r--r--lib/net/imap.rb14
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/net/imap.rb b/lib/net/imap.rb
index bfb677f22d..666e883d68 100644
--- a/lib/net/imap.rb
+++ b/lib/net/imap.rb
@@ -7,7 +7,9 @@
# You can freely distribute/modify this library.
#
# Documentation: Shugo Maeda, with RDoc conversion and overview by William
-# Webber.
+# Webber.
+#
+# See Net::IMAP for documentation.
#
@@ -19,13 +21,13 @@ begin
rescue LoadError
end
-module Net # :nodoc:
+module Net
#
# Net::IMAP implements Internet Message Access Protocol (IMAP) client
# functionality. The protocol is described in [IMAP].
#
- # == IMAP OVERVIEW
+ # == IMAP Overview
#
# An IMAP client connects to a server, and then authenticates
# itself using either #authenticate() or #login(). Having
@@ -63,7 +65,7 @@ module Net # :nodoc:
# UIDs have to be reassigned. An IMAP client cannot thus
# rearrange message orders.
#
- # == EXAMPLES OF USAGE
+ # == Examples of Usage
#
# === List sender and subject of all recent messages in the default mailbox
#
@@ -89,7 +91,7 @@ module Net # :nodoc:
# end
# imap.expunge
#
- # == THREAD-SAFENESS
+ # == Thread Safety
#
# Net::IMAP supports concurrent threads. For example,
#
@@ -103,7 +105,7 @@ module Net # :nodoc:
#
# This script invokes the FETCH command and the SEARCH command concurrently.
#
- # == ERRORS
+ # == Errors
#
# An IMAP server can send three different types of responses to indicate
# failure: