ignore some site settings for emails sent to mailinglist mirror category

This commit is contained in:
Gerhard Schlager
2017-11-17 14:49:10 +01:00
parent aea161fabd
commit 1a3ab7c02e
4 changed files with 65 additions and 4 deletions

View File

@ -795,4 +795,23 @@ describe Email::Receiver do
end
end
context "mailinglist mirror" do
before do
SiteSetting.block_auto_generated_emails = true
SiteSetting.find_related_post_with_key = true
Fabricate(:mailinglist_mirror_category)
end
it "should allow creating topic even when email is autogenerated" do
expect { process(:mailinglist) }.to change { Topic.count }
end
it "should allow replying without reply key" do
process(:mailinglist)
topic = Topic.last
expect { process(:mailinglist_reply) }.to change { topic.posts.count }
end
end
end