blob: a3c70213c4d1a435289c125311dec1ced4615b78 (
plain)
1
2
3
4
5
6
7
8
9
|
module Mail
class Message
attr_accessor :url_part_number
attr_accessor :rfc822_attachment # when a whole email message is attached as text
attr_accessor :within_rfc822_attachment # for parts within a message attached as text (for getting subject mainly)
attr_accessor :count_parts_count
attr_accessor :count_first_uudecode_count
end
end
|