diff -Nru /home/knghtbrd/src/mutt/mutt-rel/mutt-1.4/pgp.c mutt-1.4/pgp.c --- /home/knghtbrd/src/mutt/mutt-rel/mutt-1.4/pgp.c 2002-01-09 07:39:28.000000000 -0800 +++ mutt-1.4/pgp.c 2003-01-05 06:22:11.000000000 -0800 @@ -1648,20 +1648,23 @@ b->encoding = ENC7BIT; - b->type = TYPEAPPLICATION; - b->subtype = safe_strdup ("pgp"); + b->type = TYPETEXT; + b->subtype = safe_strdup ("plain"); mutt_set_parameter ("format", "text", &b->parameter); mutt_set_parameter ("x-action", flags & PGPENCRYPT ? "encrypt" : "sign", &b->parameter); b->filename = safe_strdup (pgpoutfile); - + +#if 0 /* The following is intended to give a clue to some completely brain-dead * "mail environments" which are typically used by large corporations. */ b->d_filename = safe_strdup ("msg.pgp"); +#endif + b->disposition = DISPINLINE; b->unlink = 1; b->use_disp = 1;