diff options
author | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-24 08:23:09 +0000 |
---|---|---|
committer | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-24 08:23:09 +0000 |
commit | bca0b4075d53194b09ed5edef95d9ba9c3f6e62a (patch) | |
tree | 29404fd7f60a73267121b5b4f98b7d2c890bbfba /lib/mailread.rb | |
parent | 30f1eb1856eae8b310fe6440dfcab95b6fe76046 (diff) |
Mon Dec 24 17:20:34 2007 NAKAMURA, Hiroshi <[email protected]>
* lib/{mailread.rb,getopts.rb,parsearg.rb}: removed.
see [ruby-core:12535], [ruby-dev:31969].
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14589 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/mailread.rb')
-rw-r--r-- | lib/mailread.rb | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/lib/mailread.rb b/lib/mailread.rb deleted file mode 100644 index 08b33c92a4..0000000000 --- a/lib/mailread.rb +++ /dev/null @@ -1,62 +0,0 @@ -# The Mail class represents an internet mail message (as per RFC822, RFC2822) -# with headers and a body. -class Mail - - # Create a new Mail where +f+ is either a stream which responds to gets(), - # or a path to a file. If +f+ is a path it will be opened. - # - # The whole message is read so it can be made available through the #header, - # #[] and #body methods. - # - # The "From " line is ignored if the mail is in mbox format. - def initialize(f) - unless defined? f.gets - f = open(f, "r") - opened = true - end - - @header = {} - @body = [] - begin - while line = f.gets() - line.chop! - next if /^From /=~line # skip From-line - break if /^$/=~line # end of header - - if /^(\S+?):\s*(.*)/=~line - (attr = $1).capitalize! - @header[attr] = $2 - elsif attr - line.sub!(/^\s*/, '') - @header[attr] += "\n" + line - end - end - - return unless line - - while line = f.gets() - break if /^From /=~line - @body.push(line) - end - ensure - f.close if opened - end - end - - # Return the headers as a Hash. - def header - return @header - end - - # Return the message body as an Array of lines - def body - return @body - end - - # Return the header corresponding to +field+. - # - # Matching is case-insensitive. - def [](field) - @header[field.capitalize] - end -end |