Donate Share

Swift Mailer - Pluggable Mailing in PHP

Tracker: Feature Requests

4 VERP (Variable Envelope Return Path) - ID: 1692528
Last Update: Settings changed ( nobody )

VERP (Variable Envelope Return Path) feature is useful (especially when
using sending newsletters etc.) to identify the recipients' addresses which
cause delivery errors.

About VERP, please refer to:
http://cr.yp.to/proto/verp.txt

or to:
http://www.postfix.org/VERP_README.html

PEAR Mail supports this:
http://pear.php.net/manual/en/package.mail.mail.factory.php

Basically, actual 'VERP' return-path address generation is done by the MTA,
so all the SMTP(or sendmail) client has to do is just to add 'XVERP' to
SMTP MAIL FROM or to add '-XV' option to sendmail (postfix case).

I'll be happy to see this feature in Swift:-)


Nobody/Anonymous ( nobody ) - 2007-04-01 20:55

4

Open

None

Nobody/Anonymous

None

None

Public


Comments ( 3 )




Date: 2009-01-23 18:50
Sender: nobody

c8zHMm <a href="http://zrsiubpxqbnm.com/">zrsiubpxqbnm</a>,
[url=http://ywtmawoluymm.com/]ywtmawoluymm[/url],
[link=http://yjhfpqicexsn.com/]yjhfpqicexsn[/link],
http://fwjlnrybtfte.com/


Date: 2007-04-17 02:20
Sender: sf-robotSourceForge.net Site Admin


This Tracker item was closed automatically by the system. It was
previously set to a Pending status, and the original submitter
did not respond within 14 days (the time period specified by
the administrator of this Tracker).


Date: 2007-04-02 07:42
Sender: d11wtqProject AdminAccepting Donations


I'll look into including this functionality. It's possible to do this now
by using a plugin:

<?php

class VerpPlugin implements Swift_Events_BeforeCommandListener
{
public function beforeCommandSent(Swift_Events_CommandEvent $e)
{
if (substr($e->getString(), 0, 9) == "MAIL FROM: ")
{
$e->setString( /* whatever is needed */ );
}
}
}[/php]

I'm always concious of adding too much "fluff" to the core of the library,
although I agree, this would be a useful addition given the audience this
mailer is used by.

Thanks :)


Log in to comment.

Attached File

No Files Currently Attached

Changes ( 6 )

Field Old Value Date By
status_id Closed 2009-01-23 18:50 nobody
status_id Pending 2007-04-17 02:20 sf-robot
close_date 2007-04-02 07:43 2007-04-17 02:20 sf-robot
status_id Open 2007-04-02 07:43 d11wtq
priority 5 2007-04-02 07:43 d11wtq
close_date - 2007-04-02 07:43 d11wtq