gwynne                                   Tue, 18 Aug 2009 07:51:41 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=287439

Log:
change commit email envelope sender, per bjori's request

Changed paths:
    U   SVNROOT/commit-email.php

Modified: SVNROOT/commit-email.php
===================================================================
--- SVNROOT/commit-email.php    2009-08-18 07:38:47 UTC (rev 287438)
+++ SVNROOT/commit-email.php    2009-08-18 07:51:41 UTC (rev 287439)
@@ -7,6 +7,7 @@
 // Constants
 $smtp_server = '127.0.0.1';

+$envelope_sender = 'nore...@php.net'; // this-will-bou...@php.net
 $commit_email_list = array(
     // FastCGI ISAPI
     '|^php/fastcgi-isapi|' => array('sh...@php.net', 'w...@php.net', 
'ed...@php.net'),
@@ -234,7 +235,7 @@
 $rcpt_commands = "RCPT TO:<" . implode(">\r\nRCPT TO:<", $smtp_recipients) . 
">";
 fwrite($socket, <<<SMTP
 EHLO localhost\r
-MAIL FROM:<this-will-bou...@php.net> BODY=8BITMIME\r
+MAIL FROM:<{$envelope_sender}> BODY=8BITMIME\r
 {$rcpt_commands}\r
 DATA\r
 {$msg_body}\r

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to