Yullo,

As part of me mail pipeline stuff, just wanting to create an object that stores information of how an e-mail is perceived from an SMTP servers point on view (ie: helo, mail_from, rcpt_to, etc).

Mainly going to be built on the following style:

my $self = bless({
  IP_RECEIVED_FROM => '',
  HELO => '',
  RCPT_TO => '',
  MAIL_FROM => '',
  DATA => '',
  AUTH => '',
  STARTTLS => ''
  # etc
}, 'Email::Envelope');

Basic get/set accessors from that point, but also a simple_object() method to pull out the DATA section as an Email::Simple object. Not sure if i'd need to include more stuff like MIME, etc.

(casey made me send this!)


-- -Scott McWhirter- | -kungfuftr-

Reply via email to