diff options
author | horchi <vdr@jwendel.de> | 2018-02-23 19:54:06 +0100 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2018-02-23 19:54:06 +0100 |
commit | 4689afc6a28406be919f875e60935d0126c15f35 (patch) | |
tree | a341d9e9a71a9f84c209516a033c0b4008acddaf /lib | |
parent | b2fb1c3c3b33ce7d7e4e88e02f29bb6aabad5d00 (diff) | |
download | vdr-epg-daemon-4689afc6a28406be919f875e60935d0126c15f35.tar.gz vdr-epg-daemon-4689afc6a28406be919f875e60935d0126c15f35.tar.bz2 |
minor change
Diffstat (limited to 'lib')
-rw-r--r-- | lib/configuration.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/configuration.c b/lib/configuration.c index 7f51896..19808b4 100644 --- a/lib/configuration.c +++ b/lib/configuration.c @@ -218,7 +218,7 @@ int cFrame::sendMail(const char* mimeType, const char* receivers, mailBody = strReplace("\"", "'", body); // mailBody = strReplace("!", "", mailBody); - tell(0, "Send mail '%s' with [%s] to '%s'", subject, body, receivers); + tell(0, "Send mail '%s' with [%s] to '%s' (%s)", subject, body, receivers, mimeType); asprintf(&command, "%s \"%s\" \"%s\" \"%s\" %s", mailScript, subject, mailBody.c_str(), mimeType, receivers); |