diff options
Diffstat (limited to 'maildaemon.php')
-rwxr-xr-x | maildaemon.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/maildaemon.php b/maildaemon.php index ba88774bf..59659b990 100755 --- a/maildaemon.php +++ b/maildaemon.php @@ -50,6 +50,8 @@ class MailerDaemon { if (!$this->user_match_to($user, $to)) { $this->error($from, _('Sorry, that is not your incoming email address.')); } + if (!$user->emailpost) { + } $response = $this->handle_command($user, $msg); if ($response) { $this->respond($from, $to, $response); |