1 |
Les sous-répertoires smeserver-php-3.0.0.old/root et smeserver-php-3.0.0/root sont identiques |
diff -Nur smeserver-php-3.0.0.old/root/etc/e-smith/templates/etc/php.ini/80ModuleSettings02mailfunction smeserver-php-3.0.0/root/etc/e-smith/templates/etc/php.ini/80ModuleSettings02mailfunction |
2 |
|
--- smeserver-php-3.0.0.old/root/etc/e-smith/templates/etc/php.ini/80ModuleSettings02mailfunction 2020-03-26 00:20:11.371000000 -0400 |
3 |
|
+++ smeserver-php-3.0.0/root/etc/e-smith/templates/etc/php.ini/80ModuleSettings02mailfunction 2020-03-26 00:24:55.338000000 -0400 |
4 |
|
@@ -8,5 +8,9 @@ |
5 |
|
my $mlog = ($mailog eq "enabled")? "/var/log/php/php$PHP_VERSION/mail.log" : ""; |
6 |
|
$OUT .= "$mlog"; |
7 |
|
} |
8 |
|
-mail.add_x_header = On |
9 |
|
+mail.add_x_header = { |
10 |
|
+ my $axh = $php{MailAddXHeader} || "disabled"; |
11 |
|
+ my $ax = ($axh eq "enabled") ? "Yes" : "No"; |
12 |
|
+ $OUT .= "$ax"; |
13 |
|
+} |
14 |
|
|