Methods
Public Instance methods
[ show source ]
# File lib/action_mailer/vendor/tmail/port.rb, line 150
150: def flagged=( b )
151: set_status 'F', b
152: end
[ show source ]
# File lib/action_mailer/vendor/tmail/port.rb, line 154
154: def flagged?
155: get_status 'F'
156: end
[ show source ]
# File lib/action_mailer/vendor/tmail/port.rb, line 142
142: def replied=( b )
143: set_status 'R', b
144: end
[ show source ]
# File lib/action_mailer/vendor/tmail/port.rb, line 146
146: def replied?
147: get_status 'R'
148: end
[ show source ]
# File lib/action_mailer/vendor/tmail/port.rb, line 134
134: def seen=( b )
135: set_status 'S', b
136: end
[ show source ]
# File lib/action_mailer/vendor/tmail/port.rb, line 138
138: def seen?
139: get_status 'S'
140: end
Private Instance methods
[ show source ]
# File lib/action_mailer/vendor/tmail/port.rb, line 160
160: def procinfostr( str, tag, true_p )
161: a = str.upcase.split(//)
162: a.push true_p ? tag : nil
163: a.delete tag unless true_p
164: a.compact.sort.join('').squeeze
165: end