Set verify peer - default = true

This commit is contained in:
David Bomba 2024-02-24 14:15:57 +11:00
parent 28fc899ad5
commit adf9137542

View File

@ -19,7 +19,7 @@ return new class extends Migration
$table->text('smtp_username')->nullable();
$table->text('smtp_password')->nullable();
$table->string('smtp_local_domain')->nullable();
$table->boolean('smtp_verify_peer')->default(0);
$table->boolean('smtp_verify_peer')->default(true);
});
}