]> git.ipfire.org Git - ipfire-2.x.git/blame - html/cgi-bin/mail.cgi
BUG10902: Add statusfile line when editing an ovpn n2n connection
[ipfire-2.x.git] / html / cgi-bin / mail.cgi
CommitLineData
9c7b9020
AM
1#!/usr/bin/perl
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2015 IPFire Team <alexander.marx@ipfire.org> #
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it 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. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but 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. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
21
22use MIME::Lite;
23
24#enable only the following on debugging purpose
25#use warnings;
26#use CGI::Carp 'fatalsToBrowser';
27
28require '/var/ipfire/general-functions.pl';
29require "${General::swroot}/lang.pl";
30require "${General::swroot}/header.pl";
31
32#Initialize variables and hashes
33my $dmafile="${General::swroot}/dma/dma.conf";
34my $authfile="${General::swroot}/dma/auth.conf";
35my $mailfile="${General::swroot}/dma/mail.conf";
36my %dma=();
37my %auth=();
38my %mail=();
39my %mainsettings=();
40my %cgiparams=();
41my $errormessage='';
42
43#Read all parameters for site
44&Header::getcgihash(\%cgiparams);
45&General::readhash("${General::swroot}/main/settings", \%mainsettings);
46&General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
47
48#Show Headers
49&Header::showhttpheaders();
50
51#Check configfiles
52if ( -f $dmafile){
53 open (FILE, "<", $dmafile) or die $!;
54 foreach my $line (<FILE>) {
55 $line =~ m/^([A-Z]+)\s+?(.*)?$/;
56 my $key = $1;
57 my $val = $2;
58 $dma{$key}=$val;
59 }
60}else{
61 open(FILE, ">$dmafile") or die $!;
62}
63close FILE;
64
65if (exists $dma{'AUTHPATH'}){
66 open (FILE, "<", $dma{'AUTHPATH'}) or die "$dma{'AUTHPATH'} nicht gefunden $! ";
67 my $authline;
68 foreach my $line (<FILE>) {
69 $authline = $line;
70 }
71 my @part1 = split(/\|/,$authline);
72 my @part2 = split(/\:/,$part1[1]);
73 $auth{'AUTHNAME'} = $part1[0];
74 $auth{'AUTHHOST'} = $part2[0];
75 $auth{'AUTHPASS'} = $part2[1];
76}
77
78if ( -f $mailfile){
79 &General::readhash($mailfile, \%mail);
80}
81
82#ACTIONS
83if ($cgiparams{'ACTION'} eq "$Lang::tr{'save'}"){ #SaveButton on configsite
84 #Check fields
85 if ($cgiparams{'USEMAIL'} eq 'on'){
86 $errormessage=&checkmailsettings;
87 }else{
88 $cgiparams{'txt_mailserver'}='';
89 $cgiparams{'txt_mailport'}='';
90 $cgiparams{'txt_mailuser'}='';
91 $cgiparams{'txt_mailpass'}='';
92 $cgiparams{'mail_tls'}='';
93 $cgiparams{'txt_mailsender'}='';
94 $cgiparams{'txt_recipient'}='';
95 }
96 if(!$errormessage){
97 #clear hashes
98 %auth=();
99 %dma=();
100 %mail=();
101
102 #clear configfiles
103 open (TXT, ">$dmafile") or die("Could not open /var/ipfire/dma/dma.conf: $!\n");
2799b3d9
AM
104 open (TXT1, ">$authfile") or die("Could not open /var/ipfire/dma/auth.conf: $!\n");
105 open (TXT2, ">$mailfile") or die("Could not open /var/ipfire/dma/mail.conf: $!\n");
9c7b9020
AM
106 close TXT2;
107
108 #Fill hashes with actual values
109 $mail{'USEMAIL'} = $cgiparams{'USEMAIL'};
110 $mail{'SENDER'} = $cgiparams{'txt_mailsender'};
111 $mail{'RECIPIENT'} = $cgiparams{'txt_recipient'};
112
4bfec109
AM
113 if ($cgiparams{'txt_mailuser'} && $cgiparams{'txt_mailpass'}) {
114 $auth{'AUTHNAME'} = $cgiparams{'txt_mailuser'};
115 $auth{'AUTHPASS'} = $cgiparams{'txt_mailpass'};
116 $auth{'AUTHHOST'} = $cgiparams{'txt_mailserver'};
117 print TXT1 "$auth{'AUTHNAME'}|$auth{'AUTHHOST'}:$auth{'AUTHPASS'}\n";
118 }
9c7b9020
AM
119
120 $dma{'SMARTHOST'} = $cgiparams{'txt_mailserver'};
121 $dma{'PORT'} = $cgiparams{'txt_mailport'};
122 $dma{'STARTTLS'} = '' if ($cgiparams{'mail_tls'});
123 $dma{'SECURETRANSFER'} = '' if exists $dma{'STARTTLS'};
124 $dma{'SPOOLDIR'} = "/var/spool/dma";
125 $dma{'FULLBOUNCE'} = '';
126 $dma{'MAILNAME'} = "$mainsettings{'HOSTNAME'}.$mainsettings{DOMAINNAME}";
127 $dma{'AUTHPATH'} = "$authfile" if exists $auth{'AUTHNAME'};
128
129 #Create new configfiles
130 &General::writehash("$mailfile", \%mail);
131 while ( ($k,$v) = each %dma ) {
132 print TXT "$k $v\n";
133 }
134 close TXT;
4bfec109 135 close TXT1;
9c7b9020
AM
136 close TXT2;
137
138 }else{
139 $cgiparams{'update'}='on';
140 &configsite;
141 }
142}
143if ($cgiparams{'ACTION'} eq "$Lang::tr{'email testmail'}"){ #Testmail button on configsite
144 &testmail;
145}
146
147#Show site
148&configsite;
149
150#FUNCTIONS
151sub configsite{
152
153
154 #If update set fieldvalues new
155 if($cgiparams{'update'} eq 'on'){
156 $dma{'USEMAIL'}= 'on';
157 $dma{'SMARTHOST'} = $cgiparams{'txt_mailserver'};
158 $dma{'PORT'} = $cgiparams{'txt_mailport'};
159 $auth{'AUTHUSER'} = $cgiparams{'txt_mailuser'};
160 $auth{'AUTHHOST'} = $cgiparams{'txt_mailserver'};
161 $auth{'AUTHPASS'} = $cgiparams{'txt_mailpass'};
162 }
163 #find preselections
164 $checked{'usemail'}{$mail{'USEMAIL'}} = 'CHECKED';
165 $checked{'mail_tls'}{'on'} = 'CHECKED' if exists $dma{'STARTTLS'};
166
167 #Open site
168 &Header::openpage($Lang::tr{'email settings'}, 1, '');
169 &Header::openbigbox('100%', 'center');
170 &error;
171 &info;
172 &Header::openbox('100%', 'left', $Lang::tr{'email config'});
173
174 #### JAVA SCRIPT ####
175 print<<END;
176<script>
177 \$(document).ready(function() {
178 // Show/Hide elements when USEMAIL checkbox is checked.
179 if (\$("#MAIL").attr("checked")) {
180 \$(".MAILSRV").show();
181 } else {
182 \$(".MAILSRV").hide();
183 }
184
185 // Toggle MAIL elements when "USEMAIL" checkbox is clicked
186 \$("#MAIL").change(function() {
187 \$(".MAILSRV").toggle();
188 });
189 });
190</script>
191END
192 ##### JAVA SCRIPT END ####
193 my $col="style='background-color:$color{'color22'}'";
194 print<<END;
195 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
196 <table style='width:100%' border='0'>
197 <tr>
198 <th colspan='3'></th>
199 </tr>
200 <tr>
201 <td style='width:24em'>$Lang::tr{'email usemail'}</td>
202 <td><label><input type='checkbox' name='USEMAIL' id='MAIL' $checked{'usemail'}{'on'}></label></td>
203 <td></td>
204 </tr>
205 </table><br>
206
207 <div class="MAILSRV">
208 <table style='width:100%;'>
209 <tr>
afd6e193
AM
210 <td>$Lang::tr{'email mailsender'}<img src='/blob.gif' alt='*' /></td>
211 <td><input type='text' name='txt_mailsender' value='$mail{'SENDER'}' style='width:22em;'></td>
212 </tr>
213 <tr>
214 <td>$Lang::tr{'email mailrcpt'}<img src='/blob.gif' alt='*' /></td>
215 <td><input type='text' name='txt_recipient' value='$mail{'RECIPIENT'}' style='width:22em;'></td>
216 </tr>
217 <tr>
218 <td style='width:24em'>$Lang::tr{'email mailaddr'}<img src='/blob.gif' alt='*' /></td>
9c7b9020
AM
219 <td><input type='text' name='txt_mailserver' value='$dma{'SMARTHOST'}' style='width:22em;'></td>
220 </tr>
221 <tr>
afd6e193 222 <td>$Lang::tr{'email mailport'}<img src='/blob.gif' alt='*' /></td>
9c7b9020
AM
223 <td><input type='text' name='txt_mailport' value='$dma{'PORT'}' size='3'></td>
224 </tr>
225 <tr>
afd6e193 226 <td>$Lang::tr{'email mailuser'}</td>
9c7b9020
AM
227 <td><input type='text' name='txt_mailuser' value='$auth{'AUTHNAME'}' style='width:22em;'></td>
228 </tr>
229 <tr>
afd6e193 230 <td>$Lang::tr{'email mailpass'}</td>
9c7b9020
AM
231 <td><input type='password' name='txt_mailpass' value='$auth{'AUTHPASS'}' style='width:22em;' ></td>
232 </tr>
233 <tr>
234 <td>$Lang::tr{'email tls'}</td>
235 <td><input type='checkbox' name='mail_tls' $checked{'mail_tls'}{'on'}></td>
236 </tr>
9c7b9020
AM
237END
238 if (! -z $dmafile && $mail{'USEMAIL'} eq 'on'){
239 print "<tr>";
240 print "<td></td>";
241 print "<td><input type='submit' name='ACTION' value='$Lang::tr{'email testmail'}'></td>";
242 print "</tr>";
243 }
244 print<<END;;
245 <tr>
246 <td colspan='2'>&nbsp;</td>
247 </tr>
248 </table>
249 </div>
250
251 <table style='width:100%;'>
252 <tr>
253 <td colspan='3' display:inline align='right'><input type='submit' name='ACTION' value='$Lang::tr{'save'}'></td>
254 </tr>
255 </table>
256 <br>
257 </form>
258END
259 &Header::closebox();
260 &Header::closebigbox();
261 &Header::closepage();
262 exit 0;
263}
264
265sub checkmailsettings {
266 #Check if mailserver is an ip address or a domain
267 if ($cgiparams{'txt_mailserver'} =~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/){
268 if (! &General::validip($cgiparams{'txt_mailserver'})){
269 $errormessage.="$Lang::tr{'email invalid mailip'} $cgiparams{'txt_mailserver'}<br>";
270 }
271 }elsif(! &General::validfqdn($cgiparams{'txt_mailserver'})){
272 $errormessage.="$Lang::tr{'email invalid mailfqdn'} $cgiparams{'txt_mailserver'}<br>";
273 }
274 #Check valid mailserverport
275 if($cgiparams{'txt_mailport'} < 1 || $cgiparams{'txt_mailport'} > 65535){
276 $errormessage.="$Lang::tr{'email invalid mailport'} $cgiparams{'txt_mailport'}<br>";
277 }
278 #Check valid sender
279 if(! $cgiparams{'txt_mailsender'}){
280 $errormessage.="$Lang::tr{'email empty field'} $Lang::tr{'email mailsender'}<br>";
281 }else{
282 if (! &General::validemail($cgiparams{'txt_mailsender'})){
283 $errormessage.="<br>$Lang::tr{'email invalid'} $Lang::tr{'email mailsender'}<br>";
284 }
285 }
286 return $errormessage;
287}
288
289sub testmail {
290 ### Create a new multipart message:
291 $msg = MIME::Lite->new(
292 From => $mail{'SENDER'},
293 To => $mail{'RECIPIENT'},
294 #Cc => 'some@other.com, some@more.com',
295 Subject => 'IPFire Testmail',
296 Type => 'multipart/mixed'
297 );
298
299 ### Add parts (each "attach" has same arguments as "new"):
300 $msg->attach(
301 Type => 'TEXT',
302 Data => "This is the IPFire test mail."
303 );
304
305 ### Add attachment for testing
306 #$msg->attach(
307 # Type => 'application/txt',
308 # Encoding => 'base64',
309 # Path => '/var/ipfire/dma/dma.conf',
310 # Filename => 'dma.conf',
311 # Disposition => 'attachment'
312 #);
313
314 $msg->send_by_sendmail;
315}
316
317sub info {
318 if ($infomessage) {
319 &Header::openbox('100%', 'left', $Lang::tr{'info messages'});
320 print "<class name='base'>$infomessage\n";
321 print "&nbsp;</class>\n";
322 &Header::closebox();
323 }
324}
325
326sub error {
327 if ($errormessage) {
328 &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
329 print "<class name='base'>$errormessage\n";
330 print "&nbsp;</class>\n";
331 &Header::closebox();
332 }
333}