2011-07-24 22:22:13 +02:00
|
|
|
class InternalController < ApplicationController
|
|
|
|
|
|
|
|
theme :theme_resolver
|
|
|
|
layout "simple"
|
|
|
|
|
|
|
|
def error
|
2011-08-02 23:12:17 +02:00
|
|
|
|
2011-07-27 20:34:30 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def imaperror
|
|
|
|
@title = t(:imap_error)
|
|
|
|
@error = params[:error] || t(:unspecified_error)
|
|
|
|
logger.error "!!! InternalControllerImapError: " + @error
|
2011-07-29 20:05:47 +02:00
|
|
|
render 'error'
|
|
|
|
end
|
|
|
|
|
2011-08-02 23:12:17 +02:00
|
|
|
def page_not_found
|
|
|
|
@title = t(:page_not_found)
|
|
|
|
@error = t(:page_not_found)
|
|
|
|
logger.error "!!! InternalControllerError: " + @error
|
|
|
|
render 'error'
|
|
|
|
end
|
|
|
|
|
2011-07-29 20:05:47 +02:00
|
|
|
def loginfailure
|
|
|
|
reset_session
|
|
|
|
flash[:error] = t(:login_failure)
|
|
|
|
@current_user = nil
|
|
|
|
redirect_to :controller=>'user', :action => 'login'
|
2011-07-24 22:22:13 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|