Girish Ramakrishnan
Girish Ramakrishnan
What is the status of this? Looks like a very old issue.
I see this error for all the wikipedia torrents at https://meta.wikimedia.org/wiki/Data_dump_torrents
OK, the issue is that those files are not directly torrents. The .torrent links in wikimedia are links to files that are eventually served via cloudflare. Downloading the file on...
You can also download the yt-dlp binary separately and update the config like so: ``` # Path to your youtube-dl binary youtubedl: /usr/local/bin/yt-dlp # Path to your python binary python:...
The upstream project has moved to using environment variables instead of config.php based 'define'. Maybe we should consider moving to reading configs from env vars as well?
I am happy to fix the docs depending on the answer.
Our email server restarts automatically as well, which is probably why we haven't seen this issue since we have been using haraka in production for years now. I just happened...
@msimerson Yes, indeed that's a great solution.
Currently, the code reads like [this](https://github.com/jupyterhub/ldapauthenticator/blob/master/ldapauthenticator/ldapauthenticator.py#L307) ``` server = ldap3.Server( self.server_address, port=self.server_port, use_ssl=self.use_ssl ) auto_bind = ( ldap3.AUTO_BIND_NO_TLS if self.use_ssl else ldap3.AUTO_BIND_TLS_BEFORE_BIND ) conn = ldap3.Connection( server, user=userdn, password=password, auto_bind=auto_bind...
How about something like: ``` if self.auto_bind: auto_bind = self.auto_bind else: auto_bind = ( ldap3.AUTO_BIND_NO_TLS if self.use_ssl else ldap3.AUTO_BIND_TLS_BEFORE_BIND ) ```