From: Jeff Lenk Date: Tue, 20 Nov 2012 22:54:35 +0000 (-0600) Subject: FS-4847 try this X-Git-Tag: v1.3.6~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ee80584886809dead128626264f75a05fbd36c0;p=thirdparty%2Ffreeswitch.git FS-4847 try this --- diff --git a/src/switch_utils.c b/src/switch_utils.c index fad8530245..56a7ab06d1 100644 --- a/src/switch_utils.c +++ b/src/switch_utils.c @@ -876,12 +876,16 @@ SWITCH_DECLARE(switch_bool_t) switch_simple_email(const char *to, } } + if (fd > -1) { + close(fd); + fd = -1; + } if (zstr(from)) { from = "freeswitch"; } #ifdef WIN32 - switch_snprintf(buf, B64BUFFLEN, "type \"%s\" | \"%s\" -f %s %s %s", filename, runtime.mailer_app, from, runtime.mailer_app_args, to); + switch_snprintf(buf, B64BUFFLEN, "\"%s\" -f %s %s %s < \"%s\"", runtime.mailer_app, from, runtime.mailer_app_args, to, filename); #else switch_snprintf(buf, B64BUFFLEN, "/bin/cat %s | %s -f %s %s %s", filename, runtime.mailer_app, from, runtime.mailer_app_args, to); #endif