0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00

Update vacation.pl

replace typo's thanks to christian
This commit is contained in:
Jan Kruis 2022-10-19 01:34:56 +02:00 committed by GitHub
parent a10414cf15
commit 93d75a98ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -134,7 +134,7 @@ our $noreply_pattern = 'bounce|do-not-reply|facebook|linkedin|list-|myspace|twit
our $no_vacation_pattern = 'info\@example\.org';
#
# The subroutine repalce_string replaces in the body text the text defined at $replace_from and $replace_until with the date of activefrom and activeunitul in the format specified at $date_format.
# The subroutine replace_string replaces in the body text the text defined at $replace_from and $replace_until with the date of activefrom and activeunitul in the format specified at $date_format.
#
# Like :
#
@ -378,7 +378,7 @@ sub get_accountname {
# Replace <%From_Date> with date part of activefrom out the vacation table on base of email
# Replace <%Until_Date> with date part of activeuntil out the vacation table on base of email
#
# The varibale $replace_form and $replace_until will have the <%From_Date> and <%Until_Date> replace text
# The varibale $replace_from and $replace_until will have the <%From_Date> and <%Until_Date> replace text
sub replace_string {
my ($to) =@_;
@ -395,7 +395,7 @@ sub replace_string {
my $u_date = $row[2];
#
# Note !! do not replace '%Y-%m-%d' with date_format because this is the format that f_date and u_date are are filled with date in this format
# $date_formart is used to diplay the dates in your choice of format.
# $date_format is used to diplay the dates in your choice of format.
#
my $date_f = Time::Piece->strptime($f_date,'%Y-%m-%d');
$f_date = $date_f->strftime($date_format);