Methods
Public Instance methods
[ show source ]
# File lib/action_mailer/vendor/tmail/port.rb, line 169
169: def flagged=( b )
170: set_status 'F', b
171: end
[ show source ]
# File lib/action_mailer/vendor/tmail/port.rb, line 173
173: def flagged?
174: get_status 'F'
175: end
[ show source ]
# File lib/action_mailer/vendor/tmail/port.rb, line 161
161: def replied=( b )
162: set_status 'R', b
163: end
[ show source ]
# File lib/action_mailer/vendor/tmail/port.rb, line 165
165: def replied?
166: get_status 'R'
167: end
[ show source ]
# File lib/action_mailer/vendor/tmail/port.rb, line 153
153: def seen=( b )
154: set_status 'S', b
155: end
[ show source ]
# File lib/action_mailer/vendor/tmail/port.rb, line 157
157: def seen?
158: get_status 'S'
159: end
Private Instance methods
[ show source ]
# File lib/action_mailer/vendor/tmail/port.rb, line 179
179: def procinfostr( str, tag, true_p )
180: a = str.upcase.split(//)
181: a.push true_p ? tag : nil
182: a.delete tag unless true_p
183: a.compact.sort.join('').squeeze
184: end