1316{
1317 struct Body *t = NULL, *rv = NULL;
1318 char buf[1024] = { 0 };
1319 FILE *fp_pgp_in = NULL, *fp_pgp_out = NULL, *fp_pgp_err = NULL, *fp_signed = NULL;
1320 bool err = false;
1321 bool empty = true;
1322 pid_t pid;
1325
1327
1330 if (!fp_sig)
1331 {
1332 goto cleanup;
1333 }
1334
1337 if (!fp_signed)
1338 {
1342 goto cleanup;
1343 }
1344
1346 fputc('\n', fp_signed);
1349
1350 pid =
pgp_invoke_sign(&fp_pgp_in, &fp_pgp_out, &fp_pgp_err, -1, -1, -1,
1352 if (pid == -1)
1353 {
1358 goto cleanup;
1359 }
1360
1363 fputc('\n', fp_pgp_in);
1365
1366
1367
1368 while (fgets(buf, sizeof(buf) - 1, fp_pgp_out))
1369 {
1371 fputs("-----BEGIN PGP SIGNATURE-----\n", fp_sig);
1373 fputs("-----END PGP SIGNATURE-----\n", fp_sig);
1374 else
1375 fputs(buf, fp_sig);
1376 empty = false;
1377 }
1378
1379
1380 err = false;
1381 while (fgets(buf, sizeof(buf) - 1, fp_pgp_err))
1382 {
1383 err = true;
1384 fputs(buf, stdout);
1385 }
1386
1389 empty = true;
1390
1394
1396 {
1399 goto cleanup;
1400 }
1401
1402 if (err)
1404 if (empty)
1405 {
1407
1409 goto cleanup;
1410 }
1411
1418 rv = t;
1419
1423
1425
1436
1437cleanup:
1440 return rv;
1441}
char * mutt_buffer_strdup(const struct Buffer *buf)
Copy a Buffer's string.
static const char * mutt_buffer_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 *a)
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.
FILE * mutt_file_fopen(const char *path, const char *mode)
Call fopen() safely.
int mutt_file_fclose(FILE **fp)
Close a FILE handle (and NULL the pointer)
int filter_wait(pid_t pid)
Wait for the exit of a process and return its status.
void pgp_class_void_passphrase(void)
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.
char * mutt_str_dup(const char *str)
Copy a string, safely.
bool mutt_str_equal(const char *a, const char *b)
Compare two strings.
#define mutt_buffer_mktemp(buf)
void mutt_param_set(struct ParameterList *pl, const char *attribute, const char *value)
Set a Parameter.
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.
void mutt_buffer_pool_release(struct Buffer **pbuf)
Free a Buffer from the pool.
struct Buffer * mutt_buffer_pool_get(void)
Get a Buffer from the pool.
int mutt_write_mime_body(struct Body *a, 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.