I've stopped bashing my head on the desk to post this messge
I'm following the Home Email Guide as found here, section 3.5, "Postfix TLS Support".
I am trying to create an ssl certificate, and am running into some problems.
I have openssl emerged, and have editted my CA.pl file to say -nodes, as per the instructions. Here is a copy of the relevant section from the file:
Code: Select all
# create a certificate
system ("$REQ -new -nodes -x509 -keyout newreq.pem -out newreq.pem $DAYS");
$RET=$?;
print "Certificate (and private key) is in newreq.pem\n"
} elsif (/^-newreq$/) {
# create a certificate request
system ("$REQ -new -nodes -keyout newreq.pem -out newreq.pem $DAYS");
$RET=$?;
print "Request (and private key) is in newreq.pem\n";
Code: Select all
./CA.pl -newcaI just press enter.CA certificate filename (or enter to create)
then it continues asking
if I just press "enter" it saysMaking CA certificate ...
Using configuration from /etc/ssl/openssl.cnf
Generating a 1024 bit RSA private key
...........................++++++
.................++++++
writing new private key to './demoCA/private/cakey.pem'
Enter PEM pass phrase:
what do I put in for the PEM pass phrase ?Enter PEM pass phrase:
Verifying password - Enter PEM pass phrase:
phrase is too short, needs to be at least 4 chars
Enter PEM pass phrase:
I tried putting in my password (just to see what would happen) and it continued through this section, and went on to asking me my location and details etc. looked like it all worked.
however the next section of the document says to
but the file does not exist... newreq.pem exists, but not newcert.pemcp newcert.pem /etc/postfix
so I am at a loss to see what the problem is... if anyone can shed some light, I would be most grateful!! thanks very much
pleeeeeease anyone??

