From: rhatto Date: Mon, 9 Oct 2006 20:10:36 +0000 (+0000) Subject: sendkey pgp/mime small change X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=dbc3d590d10088942245e613098f4f468470dc74;p=firma.git sendkey pgp/mime small change --- diff --git a/firma b/firma index 1bdfcac..ebc6700 100755 --- a/firma +++ b/firma @@ -1409,8 +1409,9 @@ Content-Disposition: inline" # this is the body of the message to be sent, so no indentation here MESSAGE_BODY="`$GPG --armor --export $LIST_ADDRESS`" + MESSAGE_BODY="`echo -e "${PASSPHRASE}\n${MESSAGE_BODY}" | $GPG_ENCRYPT --recipient $recipients`" - MESSAGE_BODY=" + MESSAGE_BODY="\ This is an OpenPGP/MIME encrypted message (RFC 2440 and 3156) --$boundary Content-Type: application/pgp-encrypted @@ -1423,9 +1424,9 @@ Content-Type: application/octet-stream; name=\"encrypted.asc\" Content-Disposition: inline; filename=\"encrypted.asc\" Content-Description: OpenPGP encrypted message -$(echo -e "${PASSPHRASE}\n${MESSAGE_BODY}" | $GPG_ENCRYPT --recipient $recipients) +${MESSAGE_BODY} ---$boundary--" +--${boundary}--" AssembleMessage