mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 04:03:57 -06:00
0a738bd5bc
This commit allows group SMTP emails to be sent with a different from email address that has been set up as an alias in the email provider. Emails from the alias will be grouped correctly using Message-IDs in the mail client, and replies to the alias go into the correct group inbox.
8 lines
180 B
Ruby
8 lines
180 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddEmailFromAliasToGroups < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :groups, :email_from_alias, :string, null: true
|
|
end
|
|
end
|