Peter Baranyi

Results 14 issues of Peter Baranyi

The maintainer of this distribution has indicated that it is deprecated and no longer suitable for use. https://metacpan.org/pod/IO::Socket::INET6 Therefore Swaks should not use it.

Consider the following scenario: ~/projects/name/test.pl ~/shortcut -> ~/projects/name If I open test.pl from projects/name, flymake works. However if I open it through the symbolic link "shortcut" then I get a...

If a perl script has taint mode enabled on its first line: # !/usr/bin/perl -T then flymake will show an error on this line: "-T" is on the #! line,...

On Django 3.1 I get the following error after following the installation guide: `ValueError: dictionary doesn't specify a version` The solution is to add 'version': 1, to the LOGGING dict.

There should be a way to enable/disable incoming mail in a mailbox, like how the clicker can be toggled. Simplest solution: one checkbox. Other possible solutions: enable incoming mail for...

enhancement

Cookie “language” will be soon rejected because it has the “sameSite” attribute set to “none” or an invalid value, without the “secure” attribute. To know more about the “sameSite“ attribute,...

The align attribute of and is not supported in HTML5. Use CSS instead. Present in mailbox view, among other validation errors.

enhancement

It made sense to use this module when the website used CGI but that is no longer the case. It would be good to use something else so there would...

enhancement

let connection = amqp.createConnection(...); connection.on('ready', function () { connection.exchange(..., function () { connection.queue(..., function (q, messageCount, consumerCount) { connection.disconnect(); }); }); }); connection.on('error', function(e) { console.log(e); } How should I...