1
0
مراية لـ https://github.com/postalserver/postal.git تم المزامنة 2025-12-01 05:43:04 +00:00
الملفات
postal/db/migrate/20240206173036_add_privacy_mode_to_servers.rb
Adam Cooke 15f9671b66 feat: privacy mode
Adds support for hiding IP addresses & hostnames associated with clients sending
authenticated mail in to Postal over SMTP and HTTP
2024-02-07 09:45:09 +00:00

6 أسطر
149 B
Ruby

class AddPrivacyModeToServers < ActiveRecord::Migration[6.1]
def change
add_column :servers, :privacy_mode, :boolean, default: false
end
end