% layout 'default', title => "Sme server 2 - roundcube";
% content_for 'module' => begin
% if (config->{debug} == 1) {
%= dumper $c->current_route
% }
% if ( stash 'error' ) {
%= $c->render_to_string(inline => stash 'error')
%}
<%=$title %>
If the Webmail panel does not appear after logging in, then please check your password.
% my $thisdomain = $c->req->url->to_abs->host;
% my $url = $c->stash('modul');
% if (!$url) {
% $url = $thisdomain."/roundcube";
%}
% my $username = 'admin';
% if ($url =~ /[?&]_user=([^&]+)/) {
% $username = $1;
%}
% if (!($url =~ /https:/)) {
% $url = 'https://' . $url;
%}
%end