Methods
Public Instance methods
[ show source ]
# File lib/action_mailer/vendor/tmail/header.rb, line 358
358: def id
359: ensure_parsed
360: @id
361: end
[ show source ]
# File lib/action_mailer/vendor/tmail/header.rb, line 363
363: def id=( arg )
364: ensure_parsed
365: @id = arg
366: end
Private Instance methods
[ show source ]
# File lib/action_mailer/vendor/tmail/header.rb, line 383
383: def do_accept( strategy )
384: strategy.meta @id
385: end
[ show source ]
# File lib/action_mailer/vendor/tmail/header.rb, line 378
378: def do_parse
379: @id = @body.slice(MESSAGE_ID) or
380: raise SyntaxError, "wrong Message-ID format: #{@body}"
381: end
[ show source ]
# File lib/action_mailer/vendor/tmail/header.rb, line 370
370: def init
371: @id = nil
372: end
[ show source ]
# File lib/action_mailer/vendor/tmail/header.rb, line 374
374: def isempty?
375: not @id
376: end