9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* [9fans] sed crash
@ 2009-02-05  2:28 Uriel
  2009-02-05  2:59 ` Pietro Gagliardi
  2009-02-05  4:15 ` Russ Cox
  0 siblings, 2 replies; 22+ messages in thread
From: Uriel @ 2009-02-05  2:28 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

For those that enjoy fixing bugs:

% echo foo | sed
's/..a|..b|..c|..d|..e|..f|..g|..h|..i|..j|..k|..l|..m|..n|..o|..p//g'

Will crash both native and p9p sed.

Yes, I know it is a nonsensical expression, but it is the simplest one
that still made it crash, I have lost the original version which was
much more complex.

Note that providing two characters as input will still crash, but if
the input line is a single character it wont crash.

I have been meaning to get all the fun of tracking this one down
myself for a while, but seems that I never get to it, so I will let
others enjoy the fun of fixing it.

Peace

uriel



^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [9fans] sed crash
  2009-02-05  2:28 [9fans] sed crash Uriel
@ 2009-02-05  2:59 ` Pietro Gagliardi
  2009-02-05  3:08   ` Pietro Gagliardi
  2009-02-05  4:15 ` Russ Cox
  1 sibling, 1 reply; 22+ messages in thread
From: Pietro Gagliardi @ 2009-02-05  2:59 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

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

On Feb 4, 2009, at 9:28 PM, Uriel wrote:

> For those that enjoy fixing bugs:
>
> % echo foo | sed
> 's/..a|..b|..c|..d|..e|..f|..g|..h|..i|..j|..k|..l|..m|..n|..o|..p//g'
>
> Will crash both native and p9p sed.
>
> Yes, I know it is a nonsensical expression, but it is the simplest one
> that still made it crash, I have lost the original version which was
> much more complex.
>
> Note that providing two characters as input will still crash, but if
> the input line is a single character it wont crash.
>
> I have been meaning to get all the fun of tracking this one down
> myself for a while, but seems that I never get to it, so I will let
> others enjoy the fun of fixing it.
>
> Peace
>
> uriel
>
For me, it crashes on the second line of input, in the dosub()
function. Will investigate now.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.8 (Darwin)

iEYEARECAAYFAkmKVgoACgkQuv7AVNQDs+x7ZACfYvtxSB5c8TD8LFFjPPHsgtah
9DwAnjIQ0GM4b82JGPpdJIUYfHjs7+Pv
=7lRk
-----END PGP SIGNATURE-----



^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [9fans] sed crash
  2009-02-05  2:59 ` Pietro Gagliardi
@ 2009-02-05  3:08   ` Pietro Gagliardi
  2009-02-05  3:45     ` Pietro Gagliardi
  0 siblings, 1 reply; 22+ messages in thread
From: Pietro Gagliardi @ 2009-02-05  3:08 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

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

	lp = loc2;
	loc2 = sp - genbuf + linebuf;
	while(*sp++ = *lp++)

At the point of crash, loc2 is a null pointer when it is assigned to
lp, so when the while() statement executes, crash. Now to find out why
and when loc2 becomes null.

On Feb 4, 2009, at 9:59 PM, Pietro Gagliardi wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> On Feb 4, 2009, at 9:28 PM, Uriel wrote:
>
>> For those that enjoy fixing bugs:
>>
>> % echo foo | sed
>> 's/..a|..b|..c|..d|..e|..f|..g|..h|..i|..j|..k|..l|..m|..n|..o|..p//
>> g'
>>
>> Will crash both native and p9p sed.
>>
>> Yes, I know it is a nonsensical expression, but it is the simplest
>> one
>> that still made it crash, I have lost the original version which was
>> much more complex.
>>
>> Note that providing two characters as input will still crash, but if
>> the input line is a single character it wont crash.
>>
>> I have been meaning to get all the fun of tracking this one down
>> myself for a while, but seems that I never get to it, so I will let
>> others enjoy the fun of fixing it.
>>
>> Peace
>>
>> uriel
>>
> For me, it crashes on the second line of input, in the dosub()
> function. Will investigate now.
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.8 (Darwin)
>
> iEYEARECAAYFAkmKVgoACgkQuv7AVNQDs+x7ZACfYvtxSB5c8TD8LFFjPPHsgtah
> 9DwAnjIQ0GM4b82JGPpdJIUYfHjs7+Pv
> =7lRk
> -----END PGP SIGNATURE-----
>

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.8 (Darwin)

iEYEARECAAYFAkmKWCEACgkQuv7AVNQDs+xSQQCgoFPwqMsaphtaKBTHHLFryiJr
eUMAnA9BjuDpMU40VqJp5hu1EDr3mdXp
=XF/E
-----END PGP SIGNATURE-----



^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [9fans] sed crash
  2009-02-05  3:08   ` Pietro Gagliardi
@ 2009-02-05  3:45     ` Pietro Gagliardi
  2009-02-05  3:51       ` Akshat Kumar
  0 siblings, 1 reply; 22+ messages in thread
From: Pietro Gagliardi @ 2009-02-05  3:45 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

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

The bug doesn't seem to be in sed. The match() function calls
rregexec(), which sets a strucuture that is set to loc2, which is made
null for some reason.

On Feb 4, 2009, at 10:08 PM, Pietro Gagliardi wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> 	lp = loc2;
> 	loc2 = sp - genbuf + linebuf;
> 	while(*sp++ = *lp++)
>
> At the point of crash, loc2 is a null pointer when it is assigned to
> lp, so when the while() statement executes, crash. Now to find out
> why and when loc2 becomes null.
>
> On Feb 4, 2009, at 9:59 PM, Pietro Gagliardi wrote:
>
>> -----BEGIN PGP SIGNED MESSAGE-----
>> Hash: SHA1
>>
>> On Feb 4, 2009, at 9:28 PM, Uriel wrote:
>>
>>> For those that enjoy fixing bugs:
>>>
>>> % echo foo | sed
>>> 's
>>> /..a|..b|..c|..d|..e|..f|..g|..h|..i|..j|..k|..l|..m|..n|..o|..p//g'
>>>
>>> Will crash both native and p9p sed.
>>>
>>> Yes, I know it is a nonsensical expression, but it is the simplest
>>> one
>>> that still made it crash, I have lost the original version which was
>>> much more complex.
>>>
>>> Note that providing two characters as input will still crash, but if
>>> the input line is a single character it wont crash.
>>>
>>> I have been meaning to get all the fun of tracking this one down
>>> myself for a while, but seems that I never get to it, so I will let
>>> others enjoy the fun of fixing it.
>>>
>>> Peace
>>>
>>> uriel
>>>
>> For me, it crashes on the second line of input, in the dosub()
>> function. Will investigate now.
>> -----BEGIN PGP SIGNATURE-----
>> Version: GnuPG v1.4.8 (Darwin)
>>
>> iEYEARECAAYFAkmKVgoACgkQuv7AVNQDs+x7ZACfYvtxSB5c8TD8LFFjPPHsgtah
>> 9DwAnjIQ0GM4b82JGPpdJIUYfHjs7+Pv
>> =7lRk
>> -----END PGP SIGNATURE-----
>>
>
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.8 (Darwin)
>
> iEYEARECAAYFAkmKWCEACgkQuv7AVNQDs+xSQQCgoFPwqMsaphtaKBTHHLFryiJr
> eUMAnA9BjuDpMU40VqJp5hu1EDr3mdXp
> =XF/E
> -----END PGP SIGNATURE-----
>

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.8 (Darwin)

iEUEARECAAYFAkmKYMwACgkQuv7AVNQDs+xcpACYi9wXYM/0ONUOOrqPJu4ViRFZ
BACfTLv0GRuZzUP/WYeU72Jm+KqDunw=
=Vrfb
-----END PGP SIGNATURE-----



^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [9fans] sed crash
  2009-02-05  3:45     ` Pietro Gagliardi
@ 2009-02-05  3:51       ` Akshat Kumar
  2009-02-05  3:58         ` andrey mirtchovski
  0 siblings, 1 reply; 22+ messages in thread
From: Akshat Kumar @ 2009-02-05  3:51 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

Dear Pietro,
Could you please remove the PGP Signatures from
your messages?


don't do unto us, illegibly
ak



^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [9fans] sed crash
  2009-02-05  3:51       ` Akshat Kumar
@ 2009-02-05  3:58         ` andrey mirtchovski
  2009-02-05  4:39           ` Pietro Gagliardi
  0 siblings, 1 reply; 22+ messages in thread
From: andrey mirtchovski @ 2009-02-05  3:58 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

also, can you please remove debugging output from 9fans?



^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [9fans] sed crash
  2009-02-05  2:28 [9fans] sed crash Uriel
  2009-02-05  2:59 ` Pietro Gagliardi
@ 2009-02-05  4:15 ` Russ Cox
  2009-02-05 14:41   ` Uriel
  1 sibling, 1 reply; 22+ messages in thread
From: Russ Cox @ 2009-02-05  4:15 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

Sed is fixed in plan9port.

$ hg diff sed.c
diff -r 478b53880a80 src/cmd/sed.c
--- a/src/cmd/sed.c	Wed Feb 04 20:12:48 2009 -0800
+++ b/src/cmd/sed.c	Wed Feb 04 20:13:08 2009 -0800
@@ -994,7 +994,7 @@
 		return 0;
 	subexp[0].s.rsp = buf;
 	subexp[0].e.rep = 0;
-	if (rregexec(pattern, linebuf, subexp, MAXSUB)) {
+	if (rregexec(pattern, linebuf, subexp, MAXSUB) > 0) {
 		loc1 = subexp[0].s.rsp;
 		loc2 = subexp[0].e.rep;
 		return 1;
$

http://hg.pdos.csail.mit.edu/hg/plan9/rev/0bf86c524c9b


^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [9fans] sed crash
  2009-02-05  3:58         ` andrey mirtchovski
@ 2009-02-05  4:39           ` Pietro Gagliardi
  2009-02-05 11:14             ` Iruata Souza
                               ` (2 more replies)
  0 siblings, 3 replies; 22+ messages in thread
From: Pietro Gagliardi @ 2009-02-05  4:39 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On Feb 4, 2009, at 10:58 PM, andrey mirtchovski wrote:

> also, can you please remove debugging output from 9fans?

What do you mean? Could you paste the raw text data for one of my
emails? PGP for Mac Mail hides everything.



^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [9fans] sed crash
  2009-02-05  4:39           ` Pietro Gagliardi
@ 2009-02-05 11:14             ` Iruata Souza
  2009-02-05 13:16             ` erik quanstrom
  2009-02-05 23:02             ` Akshat Kumar
  2 siblings, 0 replies; 22+ messages in thread
From: Iruata Souza @ 2009-02-05 11:14 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On Thu, Feb 5, 2009 at 2:39 AM, Pietro Gagliardi <pietro10@mac.com> wrote:
> On Feb 4, 2009, at 10:58 PM, andrey mirtchovski wrote:
>
>> also, can you please remove debugging output from 9fans?
>
> What do you mean? Could you paste the raw text data for one of my emails?
> PGP for Mac Mail hides everything.
>
>

maybe he's trying to say this is a mailing list, not twitter.
correct me if i'm wrong, andrey.

iru



^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [9fans] sed crash
  2009-02-05  4:39           ` Pietro Gagliardi
  2009-02-05 11:14             ` Iruata Souza
@ 2009-02-05 13:16             ` erik quanstrom
  2009-02-05 14:31               ` Joel C. Salomon
  2009-02-05 21:02               ` Pietro Gagliardi
  2009-02-05 23:02             ` Akshat Kumar
  2 siblings, 2 replies; 22+ messages in thread
From: erik quanstrom @ 2009-02-05 13:16 UTC (permalink / raw)
  To: 9fans

>
> What do you mean? Could you paste the raw text data for one of my
> emails? PGP for Mac Mail hides everything.
>

i considered adding code to upas to at least
strip pgp nonesense from message bodies.  but this
would require upas to know things about what
message bodies look like after mime is done with
them.  i thought that was a bad idea.  next we'll
be replacing :-) (':' '-' ')' for those with impaired
mail readers) with a jpeg.

- erik



^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [9fans] sed crash
  2009-02-05 13:16             ` erik quanstrom
@ 2009-02-05 14:31               ` Joel C. Salomon
  2009-02-05 14:44                 ` erik quanstrom
  2009-02-05 21:02               ` Pietro Gagliardi
  1 sibling, 1 reply; 22+ messages in thread
From: Joel C. Salomon @ 2009-02-05 14:31 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

erik quanstrom wrote:
> next we'll be replacing :-) (':' '-' ')' for those with impaired mail
readers) with a jpeg.

This is Plan 9: replace it with ☺.

—Joel



^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [9fans] sed crash
  2009-02-05  4:15 ` Russ Cox
@ 2009-02-05 14:41   ` Uriel
  2009-02-05 17:27     ` Russ Cox
  0 siblings, 1 reply; 22+ messages in thread
From: Uriel @ 2009-02-05 14:41 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

That was even faster than I expected. Thanks Russ!

uriel

P.S.: Silly question, why is du(1) not built by default in p9p? The
code already there seems to work as far as I can tell..

On Thu, Feb 5, 2009 at 5:15 AM, Russ Cox <rsc@swtch.com> wrote:
> Sed is fixed in plan9port.
>
> $ hg diff sed.c
> diff -r 478b53880a80 src/cmd/sed.c
> --- a/src/cmd/sed.c     Wed Feb 04 20:12:48 2009 -0800
> +++ b/src/cmd/sed.c     Wed Feb 04 20:13:08 2009 -0800
> @@ -994,7 +994,7 @@
>                return 0;
>        subexp[0].s.rsp = buf;
>        subexp[0].e.rep = 0;
> -       if (rregexec(pattern, linebuf, subexp, MAXSUB)) {
> +       if (rregexec(pattern, linebuf, subexp, MAXSUB) > 0) {
>                loc1 = subexp[0].s.rsp;
>                loc2 = subexp[0].e.rep;
>                return 1;
> $
>
> http://hg.pdos.csail.mit.edu/hg/plan9/rev/0bf86c524c9b
>
>



^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [9fans] sed crash
  2009-02-05 14:31               ` Joel C. Salomon
@ 2009-02-05 14:44                 ` erik quanstrom
  0 siblings, 0 replies; 22+ messages in thread
From: erik quanstrom @ 2009-02-05 14:44 UTC (permalink / raw)
  To: 9fans

> erik quanstrom wrote:
> > next we'll be replacing :-) (':' '-' ')' for those with impaired mail
> readers) with a jpeg.
>
> This is Plan 9: replace it with ☺.

clearly.  " tcs -f emoticon" anyone? ☺

the point i'm trying to make is that "☺" is
not the same as :-).  i find it irritating that
some mail readers massage and process the
text to the point where one can see no
difference.

the reason this is irritating is that the mail
reader has decided that message bodies are
not text but rather an input language to it's
own special mail frobnicator.  since nobody
has admitted that this is a language, there
is no spec and i'd wager that no two mail
readers do quite the same thing.

- erik



^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [9fans] sed crash
  2009-02-05 14:41   ` Uriel
@ 2009-02-05 17:27     ` Russ Cox
  2009-02-05 22:56       ` Uriel
  0 siblings, 1 reply; 22+ messages in thread
From: Russ Cox @ 2009-02-05 17:27 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

> P.S.: Silly question, why is du(1) not built by default in p9p? The
> code already there seems to work as far as I can tell..

It's a long story, dating back to when the standard mode of
operation was to put $PLAN9/bin ahead of the system binaries
in your $PATH.  In that context it didn't make sense to include
tools like du, dd, and grep, because too many programs
expected to get the standard tool rather than the Plan 9 one.

The 9 script made it easier to live with $PLAN9/bin at the
end of the $PATH, so now there's no harm in having those.
I've re-enabled dd and du.

Russ


^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [9fans] sed crash
  2009-02-05 13:16             ` erik quanstrom
  2009-02-05 14:31               ` Joel C. Salomon
@ 2009-02-05 21:02               ` Pietro Gagliardi
  2009-02-05 21:13                 ` erik quanstrom
  2009-02-05 21:21                 ` john
  1 sibling, 2 replies; 22+ messages in thread
From: Pietro Gagliardi @ 2009-02-05 21:02 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

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

I misunderstood what they meant by "debugging." PGP is doing nothing
wrong; I thought there was debugging info in the email.

On Feb 5, 2009, at 8:16 AM, erik quanstrom wrote:

>>
>> What do you mean? Could you paste the raw text data for one of my
>> emails? PGP for Mac Mail hides everything.
>>
>
> i considered adding code to upas to at least
> strip pgp nonesense from message bodies.  but this
> would require upas to know things about what
> message bodies look like after mime is done with
> them.  i thought that was a bad idea.  next we'll
> be replacing :-) (':' '-' ')' for those with impaired
> mail readers) with a jpeg.
>
> - erik
>

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.8 (Darwin)

iEYEARECAAYFAkmLU9gACgkQuv7AVNQDs+xFiwCeJQOQC4pVv8sR5gFkEilI2tSP
O/gAoJNbwL5A0nBgd4182tT6GFXTsf+3
=hmuJ
-----END PGP SIGNATURE-----



^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [9fans] sed crash
  2009-02-05 21:02               ` Pietro Gagliardi
@ 2009-02-05 21:13                 ` erik quanstrom
  2009-02-07  0:21                   ` Derek Fawcus
  2009-02-05 21:21                 ` john
  1 sibling, 1 reply; 22+ messages in thread
From: erik quanstrom @ 2009-02-05 21:13 UTC (permalink / raw)
  To: 9fans

> I misunderstood what they meant by "debugging." PGP is doing nothing
> wrong; I thought there was debugging info in the email.

imho, it is against the spirit of MIME to put
encoded data in a text/plain body.  your
other post points out why funky non-standard
encodings are a problem.

it would be much preferable to put the pgp
stuff in its own mime part, as many mail readers
do.

- erik



^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [9fans] sed crash
  2009-02-05 21:02               ` Pietro Gagliardi
  2009-02-05 21:13                 ` erik quanstrom
@ 2009-02-05 21:21                 ` john
  1 sibling, 0 replies; 22+ messages in thread
From: john @ 2009-02-05 21:21 UTC (permalink / raw)
  To: 9fans

> I misunderstood what they meant by "debugging." PGP is doing nothing
> wrong; I thought there was debugging info in the email.
>
> On Feb 5, 2009, at 8:16 AM, erik quanstrom wrote:
>
>>>
>>> What do you mean? Could you paste the raw text data for one of my
>>> emails? PGP for Mac Mail hides everything.
>>>
>>
>> i considered adding code to upas to at least
>> strip pgp nonesense from message bodies.  but this
>> would require upas to know things about what
>> message bodies look like after mime is done with
>> them.  i thought that was a bad idea.  next we'll
>> be replacing :-) (':' '-' ')' for those with impaired
>> mail readers) with a jpeg.
>>
>> - erik
>>

The PGP doesn't bother me much; at least it's much more informative
and useful than "Hey, I know how to use acid to find out where a
process is dying!"

John




^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [9fans] sed crash
  2009-02-05 17:27     ` Russ Cox
@ 2009-02-05 22:56       ` Uriel
  0 siblings, 0 replies; 22+ messages in thread
From: Uriel @ 2009-02-05 22:56 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

Cool, thanks again!

uriel

On Thu, Feb 5, 2009 at 6:27 PM, Russ Cox <rsc@swtch.com> wrote:
>> P.S.: Silly question, why is du(1) not built by default in p9p? The
>> code already there seems to work as far as I can tell..
>
> It's a long story, dating back to when the standard mode of
> operation was to put $PLAN9/bin ahead of the system binaries
> in your $PATH.  In that context it didn't make sense to include
> tools like du, dd, and grep, because too many programs
> expected to get the standard tool rather than the Plan 9 one.
>
> The 9 script made it easier to live with $PLAN9/bin at the
> end of the $PATH, so now there's no harm in having those.
> I've re-enabled dd and du.
>
> Russ
>
>



^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [9fans] sed crash
  2009-02-05  4:39           ` Pietro Gagliardi
  2009-02-05 11:14             ` Iruata Souza
  2009-02-05 13:16             ` erik quanstrom
@ 2009-02-05 23:02             ` Akshat Kumar
  2009-02-05 23:11               ` hiro
  2 siblings, 1 reply; 22+ messages in thread
From: Akshat Kumar @ 2009-02-05 23:02 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

2009/2/4 Pietro Gagliardi <pietro10@mac.com>:
> PGP for Mac Mail hides everything.

upas and GMail have this capability also, but you might
find it more favourable to simply consider others on the
list, as well as the worth of the information you decide
to include.


filter:
from: pietro10@mac.com
*Delete*
ak



^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [9fans] sed crash
  2009-02-05 23:02             ` Akshat Kumar
@ 2009-02-05 23:11               ` hiro
  2009-02-05 23:18                 ` Akshat Kumar
  0 siblings, 1 reply; 22+ messages in thread
From: hiro @ 2009-02-05 23:11 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

>> PGP for Mac Mail hides everything.
>
> upas and GMail have this capability also, but you might

No, I ecperience the same annoying PGP SIGNATURE stuff on gmail.



^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [9fans] sed crash
  2009-02-05 23:11               ` hiro
@ 2009-02-05 23:18                 ` Akshat Kumar
  0 siblings, 0 replies; 22+ messages in thread
From: Akshat Kumar @ 2009-02-05 23:18 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

2009/2/5 hiro <23hiro@googlemail.com>:
>>> PGP for Mac Mail hides everything.
>>
>> upas and GMail have this capability also, but you might
>
> No, I ecperience the same annoying PGP SIGNATURE stuff on gmail.
>
>

hiding falls out naturally from automated filtration/deletion



^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [9fans] sed crash
  2009-02-05 21:13                 ` erik quanstrom
@ 2009-02-07  0:21                   ` Derek Fawcus
  0 siblings, 0 replies; 22+ messages in thread
From: Derek Fawcus @ 2009-02-07  0:21 UTC (permalink / raw)
  To: 9fans

On Thu, Feb 05, 2009 at 04:13:46PM -0500, erik quanstrom wrote:
> it would be much preferable to put the pgp
> stuff in its own mime part, as many mail readers
> do.

  X-Pgp-Agent: GPGMail d55 (v55, Leopard)
  X-Mailer: Apple Mail (2.930.3)

and his mailer (plugin) can do so - if it is configured correctly.




^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2009-02-07  0:21 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-02-05  2:28 [9fans] sed crash Uriel
2009-02-05  2:59 ` Pietro Gagliardi
2009-02-05  3:08   ` Pietro Gagliardi
2009-02-05  3:45     ` Pietro Gagliardi
2009-02-05  3:51       ` Akshat Kumar
2009-02-05  3:58         ` andrey mirtchovski
2009-02-05  4:39           ` Pietro Gagliardi
2009-02-05 11:14             ` Iruata Souza
2009-02-05 13:16             ` erik quanstrom
2009-02-05 14:31               ` Joel C. Salomon
2009-02-05 14:44                 ` erik quanstrom
2009-02-05 21:02               ` Pietro Gagliardi
2009-02-05 21:13                 ` erik quanstrom
2009-02-07  0:21                   ` Derek Fawcus
2009-02-05 21:21                 ` john
2009-02-05 23:02             ` Akshat Kumar
2009-02-05 23:11               ` hiro
2009-02-05 23:18                 ` Akshat Kumar
2009-02-05  4:15 ` Russ Cox
2009-02-05 14:41   ` Uriel
2009-02-05 17:27     ` Russ Cox
2009-02-05 22:56       ` Uriel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).