Description of problem: The database can't created with the schema file. Version-Release number of selected component (if applicable): opendmarc-1.4.2-10.el9.x86_64 How reproducible: every time Steps to Reproduce: 1. call mysql opendmarc < /usr/share/opendmarc/db/schema.mysql Actual results: ERROR 1067 (42000) at line 58: Fehlerhafter Vorgabewert (DEFAULT) für 'lastsent' Expected results: That the tables of the database are created. Additional info: This line fails: lastsent TIMESTAMP NOT NULL DEFAULT '1970-01-01 00:00:00', an fix will be: USE opendmarc; SET @@session.time_zone = '+00:00'; ... lastsent TIMESTAMP NOT NULL DEFAULT '1970-01-01 00:00:01', ...