-
I've recently created a couple of linked sites using Nikola, on one of which I installed isso for comments support. (I can provide detailed configuration information for Gentoo Linux now, by the way, including a working openrc init script.) It took me a while to figure out the right Apache configuration, but eventually I solved it, and got everything working... EXCEPT for email moderation notices. When I create a comment, postfix logs only the following:
Postfix, apache, and isso are all running on the same host. My isso SMTP configuration section looks like this (actual destination address redacted):
I've tried it also with 'to' and 'from' blank, with the same results. Clearly I am missing something or doing something wrong, but I can't figure out from the documentation alone what I'm doing wrong. Can anyone advise? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
I'm sending the moderation e-mails from a 3rd party; I'm not sure how much help I can offer. My settings are as follows: [moderation]
enabled = true
approve-if-email-previously-approved = true
purge-after = 90d
[smtp]
host = smtp.example.com
port = 587
security = starttls
username = mymailusername@example.com
password = mypassword
from = "Isso Comments" <isso@example.com>
to = admin@example.com
timeout = 20 |
Beta Was this translation helpful? Give feedback.
-
On 5/6/24 17:56, Óscar wrote:
I'm sending the moderation e-mails from a 3rd party; I'm not sure how
much help I can offer.
My settings are as follows:
[moderation]
enabled = true
approve-if-email-previously-approved = true
purge-after = 90d
[smtp]
host = smtp.example.com
port = 587
security = starttls
username = ***@***.***
password = mypassword
from ="Isso Comments" ***@***.***>
to = ***@***.***
timeout = 20
Interesting. If I try to enable starttls, I get a certificate error:
File "/usr/lib/python3.11/ssl.py", line 1382, in do_handshake
self._sslobj.do_handshake()
ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED]
certificate verify failed: unable to get local issuer certificate
(_ssl.c:1010)
Yet I know my certificate is correctl..... OH. I wonder if the
certificate is not parsed as valid for "localhost"...?
…--
Phil Stracchino
Fenian House Publishing
***@***.***
***@***.***
Landline: +1.603.293.8485
Mobile: +1.603.998.6958
|
Beta Was this translation helpful? Give feedback.
OK, I figured out a way to make it work, by adding a second smtp listener port SPECIFICALLY for isso with TLS and SASL disabled. My Isso SMTP section :
And the Postfix listener service for it: