diff options
author | CiaranG <ciaran@ciarang.com> | 2008-10-07 04:35:21 -0400 |
---|---|---|
committer | CiaranG <ciaran@ciarang.com> | 2008-10-07 04:35:21 -0400 |
commit | 2cc3136dca5c46051934ca94684c514584184d71 (patch) | |
tree | 2902d58a879587b380778f80264e09d85bf539e6 /scripts/maildaemon.php | |
parent | c197b228eb6627bf560de1b00d84dba9c70095a0 (diff) |
Fix error when maildaemon tries to report a message parsing error
darcs-hash:20081007083521-f6e2c-00bd73ab4df406188713e7a652b0bd5a7012bf6d.gz
Diffstat (limited to 'scripts/maildaemon.php')
-rwxr-xr-x | scripts/maildaemon.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/maildaemon.php b/scripts/maildaemon.php index db283c4a0..64f913bf9 100755 --- a/scripts/maildaemon.php +++ b/scripts/maildaemon.php @@ -42,7 +42,7 @@ class MailerDaemon { function handle_message($fname='php://stdin') { list($from, $to, $msg) = $this->parse_message($fname); if (!$from || !$to || !$msg) { - $this->error(NULL, _t('Could not parse message.')); + $this->error(NULL, _('Could not parse message.')); } common_log(LOG_INFO, "Mail from $from to $to: " .substr($msg, 0, 20)); $user = $this->user_from($from); |