Viacheslav Vasilyev

Results 121 comments of Viacheslav Vasilyev

unfortunately, provided workaround does not mount volumes to configurer pod, I'll try to take a look on array implementation after I finish with kvv2 check-and-set

for EKS managed groups you may want to set eksctl CLI option `--disable-pod-imds` or config option `disablePodIMDS`

It's already there ``` volumes: - ./dkim/config:/etc/exim4/_docker_additional_macros:ro - ./dkim/domain.key:/etc/exim4/domain.key:ro ``` and: ``` $ cat ./dkim/config DKIM_DOMAIN = ${lc:${domain:$h_from:}} DKIM_KEY_FILE = /etc/exim4/domain.key DKIM_PRIVATE_KEY = ${if exists{DKIM_KEY_FILE}{DKIM_KEY_FILE}{0}} DKIM_SELECTOR = mail DKIM_CANON =...

Hi, Add new file named `dkim/config` and tune volumes in your docker-compose file as shown above. This way new configuration will be appended to existing one through `_docker_additional_macros`

Another option is to import required files into the container ```dockerfile FROM tiredofit/self-service-password:5.0.3 COPY tls/ca.pem /etc/ssl/certs/ca.pem COPY ldap.conf /etc/openldap/ldap.conf ``` ``` TLS_CACERT /etc/ssl/certs/ca.pem TLS_REQCERT try ```

I was also affected by this problem, I'm on Linux Mint 20.3, I thought it could be related to the system-resolved configuration, but in the system-resolved daemon logs I was...

For instance let's imagine the case where we have the following files sorted by the logical order of execution 1. base-config.groovy - we're applying basic configuration 1. config-ldap.groovy - we're...

I think it's question about directions, DKIM agent must sign only outbound emails, not inbound.

In RoutingAgent we can use **mailItem.Message.RootPart.Headers.FindFirst("Received");** to resolve IP and compare with permitted signers. In our case it will be our external IP or it can be another itemlist in...

My environment is Exchange2010 SP3 CU11. Check out idea in pull request.