On Fri, Jan 18, 2019 at 08:36:45AM +0100, Giovanni Bechis wrote: > On Wed, Jan 09, 2019 at 09:16:51AM +0100, Giovanni Bechis wrote: > > Update to latest version with a fix to handle > > type conversions in amavisd. > > Comments ? ok ? > > Cheers > > Giovanni > New diff to update to 4.050 > Cheers > Giovanni
This looks OK afresh1@ but to get tests to pass I need this patch since we don't enforce passwords in our test mariadb instance. Not sure if there's a better workaround.
$OpenBSD$ Index: t/10connect.t --- t/10connect.t.orig +++ t/10connect.t @@ -71,7 +70,9 @@ ok($dbh->disconnect(), 'Disconnected'); eval {$dbh= DBI->connect($test_dsn, $test_user, $test_password, { RaiseError => 1, PrintError => 1, AutoCommit => 0, Username => '4yZ73s9qeECdWi', Password => '64heUGwAsVoNqo' });}; +SKIP: { skip "Our mariadb test runs with --skip-grant-tables", 1; ok($@, 'Username and Password attributes override'); +} eval {$dbh= DBI->connect($test_dsn, '4yZ73s9qeECdWi', '64heUGwAsVoNqo', { RaiseError => 1, PrintError => 1, AutoCommit => 0,