mutt stable branch with some hacks
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add missing files that were supposed to be included with [76f8df0ac80396559aa80e7f145be6f235a6db51]

+104
+46
doc/pgpewrap.man
··· 1 + .\" -*-nroff-*- 2 + .\" 3 + .\" pgpewrap, a command line munging tool 4 + .\" Manpage Copyright (c) 2013 Honza Horak 5 + .\" 6 + .\" This program is free software; you can redistribute it and/or modify 7 + .\" it under the terms of the GNU General Public License as published by 8 + .\" the Free Software Foundation; either version 2 of the License, or 9 + .\" (at your option) any later version. 10 + .\" 11 + .\" This program is distributed in the hope that it will be useful, 12 + .\" but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + .\" GNU General Public License for more details. 15 + .\" 16 + .\" You should have received a copy of the GNU General Public License 17 + .\" along with this program; if not, write to the Free Software 18 + .\" Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 19 + .\" 20 + .TH pgpewrap 1 "May 2013" Unix "User Manuals" 21 + .SH NAME 22 + pgpewrap \- Mutt command line munging tool 23 + 24 + .SH SYNTAX 25 + .PP 26 + \fBpgpewrap\fP [ \fBflags\fP ] \-\- \fBprefix\fP [ \fBrecipients\fP ] 27 + 28 + .SH DESCRIPTION 29 + .PP 30 + This is a little C program which does some command line munging: The 31 + first argument is a command to be executed. When \fBpgpewrap\fP 32 + encounters a "\-\-" (dash\-dash) argument, it will interpret the next 33 + argument as a prefix which is put in front of all following 34 + arguments. 35 + 36 + .SH EXAMPLE 37 + 38 + pgpewrap pgpe file \-\- \-r a b c 39 + 40 + will execute: 41 + 42 + pgpe file -r a -r b -r c 43 + 44 + This script is needed with PGP 5 and with GPG, since their command 45 + line interfaces can't be properly served by mutt's format mechanism. 46 +
+58
doc/pgpring.man
··· 1 + .\" -*-nroff-*- 2 + .\" 3 + .\" pgpring, a key ring dumper 4 + .\" Manpage Copyright (c) 2004-2013 Matthew Wilcox, Honza Horak 5 + .\" 6 + .\" This program is free software; you can redistribute it and/or modify 7 + .\" it under the terms of the GNU General Public License as published by 8 + .\" the Free Software Foundation; either version 2 of the License, or 9 + .\" (at your option) any later version. 10 + .\" 11 + .\" This program is distributed in the hope that it will be useful, 12 + .\" but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + .\" GNU General Public License for more details. 15 + .\" 16 + .\" You should have received a copy of the GNU General Public License 17 + .\" along with this program; if not, write to the Free Software 18 + .\" Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 19 + .\" 20 + .TH pgpring 1 "May 2013" Unix "User Manuals" 21 + .SH NAME 22 + pgpring \- Mutt key ring dumper 23 + 24 + .SH SYNTAX 25 + .PP 26 + \fBpgpring\fP [ \fB\-k\fP \fIkeyring\fP ] [ \fB\-2\fP | \fB\-5\fP ] 27 + [ \fB\-s\fP ] [ \fB\-S\fP ] [ \fB\-f\fP ] 28 + 29 + .SH DESCRIPTION 30 + .PP 31 + pgpring is a key ring dumper. It extracts information from PGP's 32 + binary key ring and emits it in an (almost) readable output format 33 + understood by mutt's key selection routines. This output format 34 + mimics the one used by the GNU Privacy Guard (GPG). 35 + 36 + .SH OPTIONS 37 + .TP 38 + .BI \-k " keyring" 39 + Dump the contents of the specified keyring. 40 + .TP 41 + .B \-2 42 + Use the default keyring for PGP 2.x. 43 + .TP 44 + .B \-5 45 + Use the default keyring for PGP 5. 46 + .TP 47 + .B \-s 48 + Dump the secret keyring. 49 + .TP 50 + .B \-S 51 + Dump signatures. 52 + .TP 53 + .B \-f 54 + Dump fingerprints. 55 + 56 + .SH AUTHORS 57 + Thomas Roessler <roessler@does\-not\-exist.org> 58 +