diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2009-01-09 15:00:36 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2009-01-09 15:00:36 +0000 |
commit | 968e7af6cffda22f1512f2ab775b96024b43fd05 (patch) | |
tree | 440a2e866147d07f19244cad157520c88a521a51 /main/php_globals.h | |
parent | 3bc6285560ecf182f0e30ca9999e2810b09b87e4 (diff) | |
download | php-git-968e7af6cffda22f1512f2ab775b96024b43fd05.tar.gz |
MFB: Added mail logging functionality that allows logging of mail sent via
mail() function
Diffstat (limited to 'main/php_globals.h')
-rw-r--r-- | main/php_globals.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/main/php_globals.h b/main/php_globals.h index 3fbecbb3b0..4d918bc0a2 100644 --- a/main/php_globals.h +++ b/main/php_globals.h @@ -151,6 +151,9 @@ struct _php_core_globals { long user_ini_cache_ttl; char *request_order; + + zend_bool mail_x_header; + char *mail_log; }; |