21 lines
502 B
Perl
21 lines
502 B
Perl
#!/usr/bin/perl
|
|
|
|
require './tomcat-lib.pl';
|
|
require './jru-lib.pl';
|
|
&error_setup($text{'manual_err'});
|
|
&ReadParseMime();
|
|
|
|
# Work out the file
|
|
@files = get_email_template_files();
|
|
&indexof($in{'file'}, @files) >= 0 || &error($text{'manual_efile'});
|
|
$in{'data'} =~ s/\r//g;
|
|
$in{'data'} =~ /\S/ || &error($text{'manual_edata'});
|
|
|
|
# Write to it
|
|
&open_lock_tempfile(DATA, ">$in{'file'}");
|
|
&print_tempfile(DATA, $in{'data'});
|
|
&close_tempfile(DATA);
|
|
|
|
&webmin_log("manual", undef, $in{'file'});
|
|
&redirect("");
|