Re: [Ilohamail-devel] Patch for PHP 5.3

2011-02-22 Thread Neale Pickett
Going just from this list and the various Ilohamail web sites I too
thought it was a dead project.  Has there been any discussion about
handing the project over to someone who's willing to keep it updated? 
(not it)

The Debian package maintainers seem the obvious candidates here.



On 2/22/2011, "Andrew Alderwick"  wrote:

>Hi Neale,
>
>While there hasn't been much upstream development on IlohaMail, the 
>Debian package is being actively maintained by Joerg Jaspert and Radu 
>Spineanu - after all, it's made it into Squeeze [1]. I'm sure they'd be 
>very interested in your contribution if you haven't emailed them 
>already: the Debian patch is already quite extensive from my cursory 
>look!
>
>As for the apparent death of Ilohamail reported by johnw, it's worth 
>baring in mind that there are more users today than when Ilohamail was 
>under truly rapid development [2].
>
>Thanks,
>Andy
>
>[1] http://packages.debian.org/squeeze/ilohamail
>[2] http://qa.debian.org/popcon.php?package=ilohamail
>
>On Tue, Feb 22, 2011 at 07:22:58AM -0700, Neale Pickett wrote:
>>No thanks.
>>
>>So I guess I'll be picking up maintainership then?
>>-- 
>>Sent from my Android phone with K-9 Mail. Please excuse my brevity.
>>
>>johnw  wrote:
>>
>>Ilohamail is dead.
>>Use roundcube instead.
>>-- 
>>Sent from my Android phone with K-9 Mail. Please excuse my brevity.
>>
>>
>>Neale Pickett  說:
>>
>>I had to patch Ilohamail for it to work with Debian Stable, which gave me PHP 
>>5.3.
>
>-- 
>Dr Andrew Alderwick
>FSFE Fellow 1638
>
>--
>Index, Search & Analyze Logs and other IT data in Real-Time with Splunk 
>Collect, index and harness all the fast moving IT data generated by your 
>applications, servers and devices whether physical, virtual or in the cloud.
>Deliver compliance at lower cost and gain new business insights. 
>Free Software Download: http://p.sf.net/sfu/splunk-dev2dev
>___
>Ilohamail-devel mailing list
>Ilohamail-devel@lists.sourceforge.net
>https://lists.sourceforge.net/lists/listinfo/ilohamail-devel
>

--
Index, Search & Analyze Logs and other IT data in Real-Time with Splunk 
Collect, index and harness all the fast moving IT data generated by your 
applications, servers and devices whether physical, virtual or in the cloud.
Deliver compliance at lower cost and gain new business insights. 
Free Software Download: http://p.sf.net/sfu/splunk-dev2dev
___
Ilohamail-devel mailing list
Ilohamail-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ilohamail-devel


Re: [Ilohamail-devel] Patch for PHP 5.3

2011-02-22 Thread Andrew Alderwick
Hi Neale,

While there hasn't been much upstream development on IlohaMail, the 
Debian package is being actively maintained by Joerg Jaspert and Radu 
Spineanu - after all, it's made it into Squeeze [1]. I'm sure they'd be 
very interested in your contribution if you haven't emailed them 
already: the Debian patch is already quite extensive from my cursory 
look!

As for the apparent death of Ilohamail reported by johnw, it's worth 
baring in mind that there are more users today than when Ilohamail was 
under truly rapid development [2].

Thanks,
Andy

[1] http://packages.debian.org/squeeze/ilohamail
[2] http://qa.debian.org/popcon.php?package=ilohamail

On Tue, Feb 22, 2011 at 07:22:58AM -0700, Neale Pickett wrote:
>No thanks.
>
>So I guess I'll be picking up maintainership then?
>-- 
>Sent from my Android phone with K-9 Mail. Please excuse my brevity.
>
>johnw  wrote:
>
>Ilohamail is dead.
>Use roundcube instead.
>-- 
>Sent from my Android phone with K-9 Mail. Please excuse my brevity.
>
>
>Neale Pickett  說:
>
>I had to patch Ilohamail for it to work with Debian Stable, which gave me PHP 
>5.3.

-- 
Dr Andrew Alderwick
FSFE Fellow 1638

--
Index, Search & Analyze Logs and other IT data in Real-Time with Splunk 
Collect, index and harness all the fast moving IT data generated by your 
applications, servers and devices whether physical, virtual or in the cloud.
Deliver compliance at lower cost and gain new business insights. 
Free Software Download: http://p.sf.net/sfu/splunk-dev2dev
___
Ilohamail-devel mailing list
Ilohamail-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ilohamail-devel


Re: [Ilohamail-devel] Patch for PHP 5.3

2011-02-22 Thread Petri Simolin
There are many of us using IlohaMail still.

Thanks Neale

Br,
Petri Simolin

On Tue, Feb 22, 2011 at 4:22 PM, Neale Pickett  wrote:
> No thanks.
>
> So I guess I'll be picking up maintainership then?
> --
> Sent from my Android phone with K-9 Mail. Please excuse my brevity.
>
> johnw  wrote:
>>
>> Ilohamail is dead.
>> Use roundcube instead.
>> --
>> Sent from my Android phone with K-9 Mail. Please excuse my brevity.
>>
>>
>> Neale Pickett  說:
>>>
>>> I had to patch Ilohamail for it to work with Debian Stable, which gave me
>>> PHP 5.3. --- mime.inc~ 2004-11-30 00:25:40.0 -0600 +++ mime.inc
>>> 2011-02-21 17:12:51.0 -0600 @@ -84,7 +84,7 @@ $line =
>>> str_replace(")(", ") (", $line); $struct = iml_ParseBSString($line); - if
>>> ((strcasecmp($struct[0], "message")==0) && (strcasecmp($struct[1],
>>> "rfc822")==0)){ + if (is_string($struct[0]) && (strcasecmp($struct[0],
>>> "message")==0) && (strcasecmp($struct[1], "rfc822")==0)){ $struct =
>>> array($struct); } return $struct; @@ -97,13 +97,13 @@ $pos = strpos($part,
>>> "."); $rest = substr($original_part, $pos+1); $part = substr($original_part,
>>> 0, $pos); - if ((strcasecmp($a[0], "message")==0) && (strcasecmp($a[1],
>>> "rfc822")==0)){ + if (is_string($a[0]) && (strcasecmp($a[0], "message")==0)
>>> && (strcasecmp($a[1], "rfc822")==0)){ $a = $a[8]; } //echo "m - part:
>>> $original_part current: $part rest: $rest array: ".implode(" ",
>>> $a)."\n"; return iml_GetPartArray($a[$part-1], $rest); }else if
>>> ($part>0){ - if ((strcasecmp($a[0], "message")==0) && (strcasecmp($a[1],
>>> "rfc822")==0)){ + if (is_string($a[0]) && (strcasecmp($a[0], "message")==0)
>>> && (strcasecmp($a[1], "rfc822")==0)){ $a = $a[8]; } //echo "s - part: $part
>>> rest: $rest array: ".implode(" ", $a)."\n"; @@ -118,7 +118,7 @@ if
>>> (is_array($a)){ $parent=iml_GetPartArray($a, $part); - if
>>> ((strcasecmp($parent[0], "message")==0) && (strcasecmp($parent[1],
>>> "rfc822")==0)){ + if (is_string($parent[0]) && (strcasecmp($parent[0],
>>> "message")==0) && (strcasecmp($parent[1], "rfc822")==0)){ $parent =
>>> $parent[8]; }
>>> 
>>> Index, Search & Analyze Logs and other IT data in Real-Time with Splunk
>>> Collect, index and harness all the fast moving IT data generated by your
>>> applications, servers and devices whether physical, virtual or in the cloud.
>>> Deliver compliance at lower cost and gain new business insights. Free
>>> Software Download: http://p.sf.net/sfu/splunk-dev2dev
>>> 
>>> Ilohamail-devel mailing list Ilohamail-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/ilohamail-devel
>
> --
> Index, Search & Analyze Logs and other IT data in Real-Time with Splunk
> Collect, index and harness all the fast moving IT data generated by your
> applications, servers and devices whether physical, virtual or in the cloud.
> Deliver compliance at lower cost and gain new business insights.
> Free Software Download: http://p.sf.net/sfu/splunk-dev2dev
> ___
> Ilohamail-devel mailing list
> Ilohamail-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/ilohamail-devel
>
>

--
Index, Search & Analyze Logs and other IT data in Real-Time with Splunk 
Collect, index and harness all the fast moving IT data generated by your 
applications, servers and devices whether physical, virtual or in the cloud.
Deliver compliance at lower cost and gain new business insights. 
Free Software Download: http://p.sf.net/sfu/splunk-dev2dev
___
Ilohamail-devel mailing list
Ilohamail-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ilohamail-devel


Re: [Ilohamail-devel] Patch for PHP 5.3

2011-02-22 Thread Neale Pickett
No thanks.

So I guess I'll be picking up maintainership then?
-- 
Sent from my Android phone with K-9 Mail. Please excuse my brevity.

johnw  wrote:

Ilohamail is dead. 
Use roundcube instead. 
-- 
Sent from my Android phone with K-9 Mail. Please excuse my brevity.


Neale Pickett  說:

I had to patch Ilohamail for it to work with Debian Stable, which gave me PHP 
5.3. --- mime.inc~ 2004-11-30 00:25:40.0 -0600 +++ mime.inc 2011-02-21 
17:12:51.0 -0600 @@ -84,7 +84,7 @@ $line = str_replace(")(", ") (", 
$line); $struct = iml_ParseBSString($line); - if ((strcasecmp($struct[0], 
"message")==0) && (strcasecmp($struct[1], "rfc822")==0)){ + if 
(is_string($struct[0]) && (strcasecmp($struct[0], "message")==0) && 
(strcasecmp($struct[1], "rfc822")==0)){ $struct = array($struct); } return 
$struct; @@ -97,13 +97,13 @@ $pos = strpos($part, "."); $rest = 
substr($original_part, $pos+1); $part = substr($original_part, 0, $pos); - if 
((strcasecmp($a[0], "message")==0) && (strcasecmp($a[1], "rfc822")==0)){ + if 
(is_string($a[0]) && (strcasecmp($a[0], "message")==0) && (strcasecmp($a[1], 
"rfc822")==0)){ $a = $a[8]; } //echo "m - part: $original_part current: $part 
rest: $rest array: ".implode(" ", $a)."\n"; return 
iml_GetPartArray($a[$part-1], $rest); }else if
($part>0){ - if ((strcasecmp($a[0], "message")==0) && (strcasecmp($a[1], 
"rfc822")==0)){ + if (is_string($a[0]) && (strcasecmp($a[0], "message")==0) && 
(strcasecmp($a[1], "rfc822")==0)){ $a = $a[8]; } //echo "s - part: $part rest: 
$rest array: ".implode(" ", $a)."\n"; @@ -118,7 +118,7 @@ if 
(is_array($a)){ $parent=iml_GetPartArray($a, $part); - if 
((strcasecmp($parent[0], "message")==0) && (strcasecmp($parent[1], 
"rfc822")==0)){ + if (is_string($parent[0]) && (strcasecmp($parent[0], 
"message")==0) && (strcasecmp($parent[1], "rfc822")==0)){ $parent = $parent[8]; 
}_
Index, Search & Analyze Logs and other IT data in Real-Time with Splunk 
Collect, index and harness all the fast moving IT data generated by your 
applications, servers and devices whether physical, virtual or in the cloud. 
Deliver compliance at lower cost and gain new business insights. Free Software 
Download: 
http://p.sf.net/sfu/splunk-dev2dev_
Ilohamail-devel mailing list Ilohamail-devel@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/ilohamail-devel 

--
Index, Search & Analyze Logs and other IT data in Real-Time with Splunk 
Collect, index and harness all the fast moving IT data generated by your 
applications, servers and devices whether physical, virtual or in the cloud.
Deliver compliance at lower cost and gain new business insights. 
Free Software Download: http://p.sf.net/sfu/splunk-dev2dev___
Ilohamail-devel mailing list
Ilohamail-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ilohamail-devel


[Ilohamail-devel] Patch for PHP 5.3

2011-02-21 Thread Neale Pickett
I had to patch Ilohamail for it to work with Debian Stable, which gave me
PHP 5.3.


--- mime.inc~   2004-11-30 00:25:40.0 -0600
+++ mime.inc2011-02-21 17:12:51.0 -0600
@@ -84,7 +84,7 @@
 $line = str_replace(")(", ") (", $line);

$struct = iml_ParseBSString($line);
-   if ((strcasecmp($struct[0], "message")==0) &&
(strcasecmp($struct[1], "rfc822")==0)){
+   if (is_string($struct[0]) && (strcasecmp($struct[0],
"message")==0) && (strcasecmp($struct[1], "rfc822")==0)){
$struct = array($struct);
}
 return $struct;
@@ -97,13 +97,13 @@
$pos = strpos($part, ".");
$rest = substr($original_part, $pos+1);
$part = substr($original_part, 0, $pos);
-   if ((strcasecmp($a[0], "message")==0) &&
(strcasecmp($a[1], "rfc822")==0)){
+   if (is_string($a[0]) && (strcasecmp($a[0],
"message")==0) && (strcasecmp($a[1], "rfc822")==0)){
$a = $a[8];
}
//echo "m - part: $original_part current: $part rest:
$rest array: ".implode(" ", $a)."\n";
return iml_GetPartArray($a[$part-1], $rest);
}else if ($part>0){
-   if ((strcasecmp($a[0], "message")==0) &&
(strcasecmp($a[1], "rfc822")==0)){
+   if (is_string($a[0]) && (strcasecmp($a[0],
"message")==0) && (strcasecmp($a[1], "rfc822")==0)){
$a = $a[8];
}
//echo "s - part: $part rest: $rest array: ".implode("
", $a)."\n";
@@ -118,7 +118,7 @@
if (is_array($a)){
$parent=iml_GetPartArray($a, $part);

-   if ((strcasecmp($parent[0], "message")==0) &&
(strcasecmp($parent[1], "rfc822")==0)){
+   if (is_string($parent[0]) && (strcasecmp($parent[0],
"message")==0) && (strcasecmp($parent[1], "rfc822")==0)){
$parent = $parent[8];
}



--
Index, Search & Analyze Logs and other IT data in Real-Time with Splunk 
Collect, index and harness all the fast moving IT data generated by your 
applications, servers and devices whether physical, virtual or in the cloud.
Deliver compliance at lower cost and gain new business insights. 
Free Software Download: http://p.sf.net/sfu/splunk-dev2dev
___
Ilohamail-devel mailing list
Ilohamail-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ilohamail-devel