diff options
author | thomascube <thomas@roundcube.net> | 2005-11-14 23:55:46 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2005-11-14 23:55:46 +0000 |
commit | fd8c5061097f156da55a9cee8972aa4f13daa7b1 (patch) | |
tree | b1e506f5cb480bb4eb787e6f64622b29a400f631 /program/steps | |
parent | ecf7590cb84bb944d4adcd46124fbf0d081848f3 (diff) |
SMTPS support and minor bugfixes
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/mail/compose.inc | 9 | ||||
-rw-r--r-- | program/steps/mail/sendmail.inc | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index 93fae66ef..9509b492b 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -583,6 +583,15 @@ function format_email_recipient($email, $name='') } +function rcmail_charset_pulldown($selected='ISO-8859-1') + { + $select = new select(); + + + return $select->show($selected); + } + + /****** get contacts for this user and add them to client scripts ********/ $sql_result = $DB->query("SELECT name, email diff --git a/program/steps/mail/sendmail.inc b/program/steps/mail/sendmail.inc index c5505c948..4d7afb5ec 100644 --- a/program/steps/mail/sendmail.inc +++ b/program/steps/mail/sendmail.inc @@ -259,7 +259,7 @@ if ($CONFIG['smtp_log']) $mailto, $msg_subject); - if ($fp = fopen($INSTALL_PATH.'logs/sendmail', 'a')) + if ($fp = fopen($CONFIG['log_dir'].'/sendmail', 'a')) { fwrite($fp, $log_entry); fclose($fp); |