3 # Copyright 2020 Theke Solutions
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
23 use Scalar
::Util
qw(blessed);
26 use C4
::Auth
qw(get_template_and_user);
27 use C4
::Output
qw(output_html_with_http_headers);
30 use Koha
::SMTP
::Servers
;
33 my $op = $input->param('op') || 'list';
35 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
36 { template_name
=> "admin/smtp_servers.tt",
39 flagsrequired
=> { parameters
=> 'manage_smtp_servers' },
47 my $name = $input->param('smtp_name');
48 my $host = $input->param('smtp_host');
49 my $port = $input->param('smtp_port') || 25;
50 my $timeout = $input->param('smtp_timeout') || 120;
51 my $ssl_mode = $input->param('smtp_ssl_mode');
52 my $user_name = $input->param('smtp_user_name') || undef;
53 my $password = $input->param('smtp_password') || undef;
54 my $debug = ( scalar $input->param('smtp_debug_mode') ) ?
1 : 0;
57 Koha
::SMTP
::Server
->new(
63 ssl_mode
=> $ssl_mode,
64 user_name
=> $user_name,
65 password
=> $password,
70 push @messages, { type
=> 'message', code
=> 'success_on_insert' };
73 if ( blessed
$_ and $_->isa('Koha::Exceptions::Object::DuplicateID') ) {
77 code
=> 'error_on_insert',
78 reason
=> 'duplicate_id'
83 # list servers after adding
86 elsif ( $op eq 'edit_form' ) {
87 my $smtp_server_id = $input->param('smtp_server_id');
90 $smtp_server = Koha
::SMTP
::Servers
->find($smtp_server_id)
91 unless !$smtp_server_id;
95 smtp_server
=> $smtp_server
102 code
=> 'error_on_edit',
103 reason
=> 'invalid_id'
107 elsif ( $op eq 'edit_save' ) {
109 my $smtp_server_id = $input->param('smtp_server_id');
112 $smtp_server = Koha
::SMTP
::Servers
->find($smtp_server_id)
113 unless !$smtp_server_id;
115 if ( $smtp_server ) {
117 my $name = $input->param('smtp_name');
118 my $host = $input->param('smtp_host');
119 my $port = $input->param('smtp_port') || 25;
120 my $timeout = $input->param('smtp_timeout') || 120;
121 my $ssl_mode = $input->param('smtp_ssl_mode');
122 my $user_name = $input->param('smtp_user_name') || undef;
123 my $password = $input->param('smtp_password') || undef;
124 my $debug = ( scalar $input->param('smtp_debug_mode') ) ?
1 : 0;
127 if defined $password and $password eq '****';
130 $smtp_server->password( $password )
139 ssl_mode
=> $ssl_mode,
140 user_name
=> $user_name,
141 password
=> $password,
149 code
=> 'success_on_update'
156 code
=> 'error_on_update'
160 # list servers after adding
167 code
=> 'error_on_update',
168 reason
=> 'invalid_id'
173 if ( $op eq 'list' ) {
174 my $smtp_servers = Koha
::SMTP
::Servers
->search;
176 servers_count
=> $smtp_servers->count,
177 default_config
=> $smtp_servers->get_default,
183 messages
=> \
@messages,
186 output_html_with_http_headers
$input, $cookie, $template->output;