-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 01/24/2012 10:21 AM, Derick Rethans wrote:
> Hi,
> 
> could something be done about the commit spam subjects? It was
> mightly useful to have the paths and the commit messages in there.

The problem here is that you can push multiple changesets at once and
the header will get very long. Max subject length are arbitrary.

I understand that it's useful, so you suggested having a mail for each
commit instead of each push. I prefer mails per push as they are the
only documentation of who pushed what. In case someone pulls from a
person that doesn't have karma and pushes it, I want to ask that
person why and what. So the pushmails is useful for me and gives me a
good overview over the overall change.

So the option is to
 (1) have commit mails or push mails only.
 (2) both
 (3) send one type of mail to a separate mailinglist
 (4) change the pushmail format to something useful.

- - dsp

> cheers, Derick
> 
> 
> On Mon, 23 Jan 2012, ras...@php.net wrote:
> 
>> The branch, master on web/master.git has been updated from
>> 4fe64dfdc12c4bd8965ba4af73b900a545a012fb (commit) to
>> 8181453dbb6b46b5da50cf744643c6d1380e97f0 (commit)
>> 
>> http://git.php.net/?p=web/master.git;a=log;h=8181453dbb6b46b5da50cf744643c6d1380e97f0;hp=4fe64dfdc12c4bd8965ba4af73b900a545a012fb
>>
>>
>> 
Summary of changes:
>> scripts/update-user-notes |   19 +++++++++++++++---- 1 files
>> changed, 15 insertions(+), 4 deletions(-)
>> 
>> -- Log ---------------------------------------- commit
>> 8181453dbb6b46b5da50cf744643c6d1380e97f0 Author: Rasmus Lerdorf
>> <ras...@php.net> Date:   Mon Jan 23 18:47:00 2012 -0800
>> 
>> No ssl stream on the ancient rsync box, so fake it
>> 
>> diff --git a/scripts/update-user-notes
>> b/scripts/update-user-notes index ef90da3..64ac120 100755 ---
>> a/scripts/update-user-notes +++ b/scripts/update-user-notes @@
>> -20,11 +20,22 @@ if (substr($root,-1) != '/') { } $since =
>> $argv[2];
>> 
>> +$SSL_fopen = false; +if(in_array('https',
>> stream_get_wrappers())) { +    $SSL_fopen = true; +} + /* get
>> user notes */ -$fp = @fopen( -
>> "https://master.php.net/fetch/user-notes.php?token=$token";.($since?"&since=$since":""),
>>
>> 
- -    "r"
>> -); +if($SSL_fopen) { +    $fp = @fopen( +
>> "https://master.php.net/fetch/user-notes.php?token=$token";.($since?"&since=$since":""),
>>
>> 
+        "r"
>> +    ); +} else { +    $url =
>> escapeshellarg("https://master.php.net/fetch/user-notes.php?token=$token";.($since?"&since=$since":""));
>>
>> 
+    $fp = popen("curl -s $url",'r');
>> +} + if (!$fp) { exit(1); }
>> 
>> Thank you for your contribution.
>> 
>> 
> 

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBAgAGBQJPHwd2AAoJEAT0aMuPE7Z1agsP/jpuV2iVoqpauvS3rpkUux0k
DAC+Btcg3UhxSD9+kVnJtBQLCyIPUWFijWmw8K+cj4/FP2gpyPwrGfaY+tcyxXvB
DVjWd63AOfP8p3qJ7vy0IFeKnzkyZOWhU8dVg/+/OkikmPMSiUW7SnjZDFedcA4O
pSs0Ac3VsBLKE/jLxUXfFCrxhtqSrKa7/PY3mqY/xgOmm3rHsn0gobAVtBfb7uv4
rU7uNdO5/dtN0iGv3opkvf1DUAkb6CiuG+Z8waL7jXBf8Cg1n5IypB/bbS4/H6KP
E/rc6DsKy1rwgvE416hcnCbyIEdCL035wY6h2ESmE6xn4o2vcSmNbRF2b4sRLUh3
IyH0QVEGbYm2m5rQ1JYGCVlRXg6M4IMvvBkwDdPuGAU+Xw6fVUkbhMdhOS0s53Zb
BpHyKb46vnZNeMPp7uEOtnuERIfAC2pCNcSTZvidLox4QkIy2VRpzlT7YoY4T+34
f+U2KFUdtrHmkSwd35bt/Khia8Z//PuBDpX0t/es+SKQfypE6B+UmTcTGW/XjFr6
xUqznhS4+JiVRpmXXTns+uAIXHDm7sJWKzPubXGnXN2ktAM0dmWQKSbUhKVFhQei
bvUXCeYqt08x0/B1HQT6lcltunIY8jUHaVuur+DF7kfNzjwtpkIrK7i2Nlg6S0EL
xqkFqvcHx15CizZF1wLP
=BVfW
-----END PGP SIGNATURE-----

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to