Merge pull request #3361 from techAPJ/patch-2

FIX: add email reply error message for topic not getting created in restricted category
This commit is contained in:
Régis Hanol 2015-04-10 13:59:11 +02:00
commit a68868e7e9
4 changed files with 45 additions and 0 deletions

View File

@ -51,6 +51,8 @@ module Jobs
message_template = :email_reject_topic_closed message_template = :email_reject_topic_closed
when Email::Receiver::AutoGeneratedEmailError when Email::Receiver::AutoGeneratedEmailError
message_template = :email_reject_auto_generated message_template = :email_reject_auto_generated
when Discourse::InvalidAccess
message_template = :email_reject_invalid_access
when ActiveRecord::Rollback when ActiveRecord::Rollback
message_template = :email_reject_post_error message_template = :email_reject_post_error
when Email::Receiver::InvalidPost when Email::Receiver::InvalidPost

View File

@ -1632,6 +1632,13 @@ en:
We couldn't find your reply in the provided email. **Make sure your reply is at the top of the email** -- we can't process inline replies. We couldn't find your reply in the provided email. **Make sure your reply is at the top of the email** -- we can't process inline replies.
email_reject_invalid_access:
subject_template: "[%{site_name}] Email issue -- Invalid Access"
text_body_template: |
We're sorry, but your email message to %{destination} (titled %{former_title}) didn't work.
Your account does not have the privileges to post new topics in that category. If you believe this is in error, contact a staff member.
email_reject_post_error: email_reject_post_error:
subject_template: "[%{site_name}] Email issue -- Posting error" subject_template: "[%{site_name}] Email issue -- Posting error"
text_body_template: | text_body_template: |

View File

@ -562,6 +562,25 @@ greatest show ever created. Everyone should watch it.
expect(e.message).to include("too short") expect(e.message).to include("too short")
end end
it "blocks user in restricted group from creating topic" do
to = "some@email.com"
restricted_user = Fabricate(:user, trust_level: 4)
restricted_group = Fabricate(:group)
restricted_group.add(restricted_user)
restricted_group.save
category = Fabricate(:category, email_in_allow_strangers: false, email_in: to)
category.set_permissions(restricted_group => :readonly)
category.save
expect{
process_email(from: restricted_user.email, to: to)
}.to raise_error(Discourse::InvalidAccess)
end
end end

View File

@ -152,6 +152,23 @@ describe Jobs::PollMailbox do
end end
end end
end end
describe "user in restricted group" do
it "raises InvalidAccess error" do
restricted_group = Fabricate(:group)
restricted_group.add(user)
restricted_group.save
category.set_permissions(restricted_group => :readonly)
category.save
expect_exception Discourse::InvalidAccess
poller.handle_mail(email)
expect(email).to be_deleted
end
end
end end
describe "a valid reply" do describe "a valid reply" do