JohnTheodore
JohnTheodore
yea, I wasted a bunch of time debugging code trying to figure this out.. and I made a config.json. There should just be an empty default config.json when you create...
also I'm not sure if this project is still going, no changes in a few years. Is there something better to use for html emails?
@Bubujka thanks a lot! that worked. Do you know if gleemail's templating language {{ mustache }} will let me do things like this: {{==}} {{Look at the curlies!}} I have...
thanks for all the help!
Here are my kwargs from lemur/certificates/service.py(237) https://gist.github.com/JohnTheodore/baae0d3cfd24881d5f3b88ac7af96f89 I can see 'body' is empty. When I make the authority am I also supposed to make a new cert as well?
I set all those options in my lemur.conf.py: https://gist.github.com/JohnTheodore/bfbd98105c7aa66b44d895018b9a4e35 Though there are no authorities listed when I sign in.
hmm, I set all the variables for VERISIGN_* now. ``` VERISIGN_URL = 'certmanager-webservices.websecurity.symantec.com/vswebservices' VERISIGN_PEM_PATH = '/etc/lemur/jt-vice-mpki-api.p7b' VERISIGN_FIRST_NAME = 'lemur' VERISIGN_LAST_NAME = 'viceapi' VERISIGN_EMAIL = '[email protected]' VERISIGN_INTERMEDIATE = '/etc/lemur/digitcert.intermediate.pem' VERISIGN_ROOT =...
ok, these settings worked for creating an authority: ``` # MPKI settings VERISIGN_URL = 'https://certmanager-webservices.websecurity.symantec.com/vswebservices' VERISIGN_PEM_PATH = '/etc/lemur/jt-vice-mpki-api.p7b' VERISIGN_FIRST_NAME = 'lemur' VERISIGN_LAST_NAME = 'viceapi' VERISIGN_EMAIL = '[email protected]' VERISIGN_INTERMEDIATE = open('/etc/lemur/digitcert.intermediate.pem',...
readlines puts it into an array. and the cryptography library that parse_certificate runs wants it to be a single string blob I think?. There were errors creating the authority when...
I changed it to readlines(), and made a new authority, here is the error from that: ``` [2018-05-24 18:49:00,591] ERROR in schema: initializer for ctype 'char' must be a bytes...