サインインしていないと仮定します。
この場合、mails_controllerのアクションにアクセスすると、このフラッシュ通知が表示されます。
You need to sign in or sign up before continuing.
ただし、communities_controllerには表示されません。
なんで?どうすれば修正できますか?
mails_controller.rb
class MailsController < ApplicationController
before_filter :authenticate_user!
....
end
communitys_controller.rb
class CommunitiesController < ApplicationController
load_and_authorize_resource :find_by => :id
before_filter :authenticate_user!
end