De: |
"Massimo S." <ecs-isp@2rosenthals.com> |
En-têtes complèts Message brut |
Sujet: |
Re: [eCS-ISP] HTTPS-Misery (for Steven) |
Date: |
Sat, 12 Oct 2024 01:48:30 +0200 |
À: |
eCS ISP Mailing List <ecs-isp@2rosenthals.com> |
|
---|
Il 11/10/2024 22:58, Steven Levine ha scritto:
In <list-11072204@2rosenthals.com>, on 10/09/24
at 10:28 AM, "Massimo S." <ecs-isp@2rosenthals.com> said:
Hi Massimo,
so i can't use this script
it requires too many modification to all my environment
i've too much stuff (scripts, bkups, etc. that expect these paths)
Then don't modify your environment. Modify the script. I'm happy to see
you already figured this out.
i've not the sufficient skill to fully modify your script
i'm sorry
even to understand it completely it could take months
Apparently, months became hours. :-) You implemented a solution before I
had a chance to respond.
agree, but when you are desperate you have to find a solution :)
If you decide to go with a single hook script solution, here is how I
would map the LE ident to a docroot:
docroot = ''
mapping = 'mapping-file.txt'
call stream mapping, 'C', 'OPEN'
do while lines(mapping) \= 0
line = linein(mapping)
parse var line ident docroot
docroot = strip(docroot)
if ident == gIndent then
leave
docroot = ''
end
call stream mapping, 'C', 'CLOSE'
if docroot = '' then
call Die 'Cannot map' gIdent 'to docroot'
Steven
what's that "mapping-file.txt" ?
now i'm more confused :-)
massimo
|