SYNOPSIS

  use Mail::Verp;

  #Using class methods

  #Change separator to something else
  Mail::Verp->separator('+');

  #Create a VERP envelope sender of an email to [email protected].
  my $verp_email = Mail::Verp->encode('[email protected]', '[email protected]');

  #If a bounce comes back, decode $verp_email to figure out
  #the original recipient of the bounced mail.
  my ($sender, $recipient) = Mail::Verp->decode($verp_email);


  #Using instance methods

  my $verp = Mail::Verp->new(separator => '+');

  #Create a VERP envelope sender of an email to [email protected].
  my $verp_email = $verp->encode('[email protected]', '[email protected]');

  #Decode a bounce
  my ($sender, $recipient) = $verp->decode($verp_email);

ABSTRACT

Mail::Verp encodes and decodes Variable Envelope Return Paths (\s-1VERP\s0) email addresses.

DESCRIPTION

Mail::Verp encodes the address of an email recipient into the envelope sender address so that a bounce can be more easily handled even if the original recipient is forwarding their mail to another address and the remote Mail Transport Agents send back unhelpful bounce messages. The module can also be used to decode bounce recipient addresses.

FUNCTIONS

new()

Primarily useful to save typing. So instead of typing \*(C`Mail::Verp\*(C' you can say my $x = Mail::Verp->new; then use $x whereever \*(C`Mail::Verp\*(C' is usually required. Accepts an optional \*(C`separator\*(C' argument for changing the separator, which defaults to hyphen '-'. The value can also be changed using the \*(C`separator\*(C' accessor. my $x = Mail::Verp->new(separator => '+');

encode(\s-1LOCAL-ADDRESS\s0, REMOTE-ADDRESS)

Encodes LOCAL-ADDRESS, REMOTE-ADDRESS into a verped address suitable for use as an envelope return address. It may also be useful to use the same address in Errors-To and Reply-To headers to compensate for broken Mail Transport Agents. Uses current separator value.

decode(\s-1VERPED-ADDRESS\s0)

Decodes VERPED-ADDRESS into its constituent parts. Returns LOCAL-ADDRESS and REMOTE-ADDRESS in list context, REMOTE-ADDRESS in scalar context. Returns VERPED-ADDRESS if the decoding fails. Uses current separator value.

separator

Returns current value of the \s-1VERP\s0 \*(C`separator\*(C'

separator(\s-1SEPARATOR\s0)

Sets new value for \s-1VERP\s0 \*(C`separator\*(C' and returns the previous value.

\$1

None.

RELATED TO Mail::Verp…

\s-1DJ\s0 Bernstein details verps here: http://cr.yp.to/proto/verp.txt.

Sam Varshavchik proposes an encoding here: http://www.courier-mta.org/draft-varshavchik-verp-smtpext.txt.

AUTHOR

Gyepi Sam <[email protected]>

COPYRIGHT AND LICENSE

Copyright 2007 by Gyepi Sam

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.