Dominic

Results 26 issues of Dominic

When starting with a default symfony project the swiftmailer is set-upped to use spool for sending out mails. https://github.com/symfony/symfony-standard/blob/7a885f1dcd2f5191f19470866aca9a472770ebcf/app/config/config.yml#L69 The spool is only flushed sent out on the [kernel terminate...

The optparse.bash code has a mix of tabs an spaces. Please stick to one. ;-)

websockify has IMHO a security flaw when it come to the use of SSL. On any systems, it's recommended, to restrict the access to the SSL key and certificate. On...

feature
bug
patchwelcome

I recently came across http://tus.io/, a protocol specification for 'Resumable File Uploads'. The [team](https://github.com/tus) already build a [jQuery plugin](https://github.com/tus/tus-jquery-client) that implements the protocol. There is also an PHP server [implementation](https://github.com/leblanc-simon/php-tus)....

enhancement

When using a tool like [RedShift](https://github.com/jonls/redshift) the gamma ramp via randr is modified. It would be nice if this feature could be added. Is this even possible?

enhancement

Similar to the official nginx docker container it would be ideal to run the openresty nginx server as a non root user. https://github.com/nginxinc/docker-nginx/blob/25a3fc7343c6916fce1fba32caa1e8de8409d79f/stable/alpine/Dockerfile#L52 This would simplify the handling of nginx.conf...

documentation

The credentials are placed in the default keyring on Linux. This keyring will be unlocked by default on login. By defining a different keyring and requesting a password from this...

enhancement

According to [RFC 7518](https://tools.ietf.org/html/rfc7518#section-3.4) the key type should be a ECDSA. It's also recommended to check the curve of the key. See https://github.com/namshi/jose/blob/master/src/Namshi/JOSE/Signer/OpenSSL/ECDSA.php for more details.

'os.Stat' checks if a file or directory exists. By adding an additional check (mode) the distinction could be made. By checking `!os.IsNotExist(err)` could also go wrong, due to other types...