diff options
author | alecpl <alec@alec.pl> | 2009-05-16 13:01:49 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-05-16 13:01:49 +0000 |
commit | 2471d3a979d00e0cecca64e0d5889ca40c02c5fe (patch) | |
tree | 80a707b81bfba636d004107f5c04a59a3a0eebf7 /program/include/rcube_smtp.inc | |
parent | 34ee9e7498f84394bfc7d5a4a845720aed8e0b2f (diff) |
- Added possibility to encrypt received header, option 'http_received_header_encrypt',
added some more logic in encrypt/decrypt functions for security
Diffstat (limited to 'program/include/rcube_smtp.inc')
-rw-r--r-- | program/include/rcube_smtp.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_smtp.inc b/program/include/rcube_smtp.inc index ad6a6e0af..77195e96f 100644 --- a/program/include/rcube_smtp.inc +++ b/program/include/rcube_smtp.inc @@ -103,7 +103,7 @@ function smtp_mail($from, $recipients, &$headers, &$body, &$response) $smtp_user = $CONFIG['smtp_user']; if (strstr($CONFIG['smtp_pass'], '%p')) - $smtp_pass = str_replace('%p', $RCMAIL->decrypt_passwd($_SESSION['password']), $CONFIG['smtp_pass']); + $smtp_pass = str_replace('%p', $RCMAIL->decrypt($_SESSION['password']), $CONFIG['smtp_pass']); else $smtp_pass = $CONFIG['smtp_pass']; |