1333{
1334 struct Body *b_enc = NULL, *rv = NULL;
1335 char buf[1024] = { 0 };
1336 FILE *fp_pgp_in = NULL, *fp_pgp_out = NULL, *fp_pgp_err = NULL, *fp_signed = NULL;
1337 bool err = false;
1338 bool empty = true;
1339 pid_t pid;
1342
1344
1347 if (!fp_sig)
1348 {
1349 goto cleanup;
1350 }
1351
1354 if (!fp_signed)
1355 {
1359 goto cleanup;
1360 }
1361
1363 fputc('\n', fp_signed);
1366
1367 pid =
pgp_invoke_sign(&fp_pgp_in, &fp_pgp_out, &fp_pgp_err, -1, -1, -1,
1369 if (pid == -1)
1370 {
1375 goto cleanup;
1376 }
1377
1380 fputc('\n', fp_pgp_in);
1382
1383
1384
1385 while (fgets(buf, sizeof(buf) - 1, fp_pgp_out))
1386 {
1388 fputs("-----BEGIN PGP SIGNATURE-----\n", fp_sig);
1390 fputs("-----END PGP SIGNATURE-----\n", fp_sig);
1391 else
1392 fputs(buf, fp_sig);
1393 empty = false;
1394 }
1395
1396
1397 err = false;
1398 while (fgets(buf, sizeof(buf) - 1, fp_pgp_err))
1399 {
1400 err = true;
1401 fputs(buf, stdout);
1402 }
1403
1406 empty = true;
1407
1411
1413 {
1416 goto cleanup;
1417 }
1418
1419 if (err)
1421 if (empty)
1422 {
1424
1426 goto cleanup;
1427 }
1428
1435 rv = b_enc;
1436
1440
1442
1453
1454cleanup:
1457 return rv;
1458}
char * buf_strdup(const struct Buffer *buf)
Copy a Buffer's string.
static const char * buf_string(const struct Buffer *buf)
Convert a buffer to a const char * "string".
bool cs_subset_bool(const struct ConfigSubset *sub, const char *name)
Get a boolean config item by name.
void crypt_convert_to_7bit(struct Body *b)
Convert an email to 7bit encoding.
int mutt_any_key_to_continue(const char *s)
Prompt the user to 'press any key' and wait.
struct Body * mutt_body_new(void)
Create a new Body.
#define mutt_file_fclose(FP)
#define mutt_file_fopen(PATH, MODE)
void pgp_class_void_passphrase(void)
Forget the cached passphrase - Implements CryptModuleSpecs::void_passphrase() -.
@ TYPE_MULTIPART
Type: 'multipart/*'.
@ TYPE_APPLICATION
Type: 'application/*'.
@ DISP_INLINE
Content is inline.
@ DISP_NONE
No preferred disposition.
void mutt_generate_boundary(struct ParameterList *pl)
Create a unique boundary id for a MIME part.
int filter_wait(pid_t pid)
Wait for the exit of a process and return its status.
char * mutt_str_dup(const char *str)
Copy a string, safely.
bool mutt_str_equal(const char *a, const char *b)
Compare two strings.
void mutt_param_set(struct ParameterList *pl, const char *attribute, const char *value)
Set a Parameter.
static char PgpPass[1024]
Cached PGP Passphrase.
bool pgp_use_gpg_agent(void)
Does the user want to use the gpg agent?
pid_t pgp_invoke_sign(FILE **fp_pgp_in, FILE **fp_pgp_out, FILE **fp_pgp_err, int fd_pgp_in, int fd_pgp_out, int fd_pgp_err, const char *fname)
Use PGP to sign a file.
const char * pgp_micalg(const char *fname)
Find the hash algorithm of a file.
struct Buffer * buf_pool_get(void)
Get a Buffer from the pool.
void buf_pool_release(struct Buffer **ptr)
Return a Buffer to the pool.
int mutt_write_mime_body(struct Body *b, FILE *fp, struct ConfigSubset *sub)
Write a MIME part.
struct Body * parts
parts of a multipart or message/rfc822
bool unlink
If true, filename should be unlink()ed before free()ing this structure.
struct ParameterList parameter
Parameters of the content-type.
bool use_disp
Content-Disposition uses filename= ?
unsigned int disposition
content-disposition, ContentDisposition
struct Body * next
next attachment in the list
char * subtype
content-type subtype
unsigned int encoding
content-transfer-encoding, ContentEncoding
unsigned int type
content-type primary type, ContentType
char * filename
When sending a message, this is the file to which this structure refers.
String manipulation buffer.
Container for Accounts, Notifications.
struct ConfigSubset * sub
Inherited config items.