Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 348477 | Differences between
and this patch

Collapse All | Expand All

(-)a/globals.h (+2 lines)
Lines 227-232 Link Here
227
WHERE char *PgpSignAs;
227
WHERE char *PgpSignAs;
228
WHERE short PgpTimeout;
228
WHERE short PgpTimeout;
229
WHERE char *PgpEntryFormat;
229
WHERE char *PgpEntryFormat;
230
WHERE char *PgpMimeSignatureFilename;
231
WHERE char *PgpMimeSignatureDescription;
230
WHERE char *PgpClearSignCommand;
232
WHERE char *PgpClearSignCommand;
231
WHERE char *PgpDecodeCommand;
233
WHERE char *PgpDecodeCommand;
232
WHERE char *PgpVerifyCommand;
234
WHERE char *PgpVerifyCommand;
(-)a/init.h (+12 lines)
Lines 1884-1889 Link Here
1884
  ** (PGP only)
1884
  ** (PGP only)
1885
  **
1885
  **
1886
  */
1886
  */
1887
  { "pgp_mime_signature_filename", DT_STR, R_NONE, UL &PgpMimeSignatureFilename, UL "signature.asc"},
1888
  /*
1889
  ** .pp
1890
  ** This option sets the filename used for signature parts in PGP/MIME
1891
  ** signed messages.
1892
  */
1893
  { "pgp_mime_signature_description", DT_STR, R_NONE, UL &PgpMimeSignatureDescription, UL "Digital signature"},
1894
  /*
1895
  ** .pp
1896
  ** This option sets the Content-Description used for signature parts in
1897
  ** PGP/MIME signed messages.
1898
  */
1887
  { "pgp_retainable_sigs", DT_BOOL, R_NONE, OPTPGPRETAINABLESIG, 0 },
1899
  { "pgp_retainable_sigs", DT_BOOL, R_NONE, OPTPGPRETAINABLESIG, 0 },
1888
  /*
1900
  /*
1889
  ** .pp
1901
  ** .pp
(-)a/pgp.c (+3 lines)
Lines 1130-1135 Link Here
1130
  t->encoding = ENC7BIT;
1130
  t->encoding = ENC7BIT;
1131
  t->unlink = 1; /* ok to remove this file after sending. */
1131
  t->unlink = 1; /* ok to remove this file after sending. */
1132
  mutt_set_parameter ("name", PgpMimeSignatureFilename, &t->parameter);
1133
  t->description = safe_strdup (PgpMimeSignatureDescription);
1134
1132
  return (a);
1135
  return (a);
1133
}
1136
}
1134
1137

Return to bug 348477