[Freeswitch-svn] [commit] r6164 - freeswitch/trunk/src

Freeswitch SVN anthm at freeswitch.org
Mon Nov 5 14:13:17 EST 2007


Author: anthm
Date: Mon Nov  5 14:13:17 2007
New Revision: 6164

Modified:
   freeswitch/trunk/src/switch_utils.c

Log:
make mailer app name a config option

Modified: freeswitch/trunk/src/switch_utils.c
==============================================================================
--- freeswitch/trunk/src/switch_utils.c	(original)
+++ freeswitch/trunk/src/switch_utils.c	Mon Nov  5 14:13:17 2007
@@ -180,7 +180,7 @@
     if (ifd) {
         close(ifd);
     }
-    snprintf(buf, B64BUFFLEN, "/bin/cat %s | %s %s", filename, runtime.mailer_app, runtime.mailer_app_args);
+    snprintf(buf, B64BUFFLEN, "/bin/cat %s | %s %s %s", filename, runtime.mailer_app, runtime.mailer_app_args, to);
     if(system(buf)) {
         switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Unable to execute command: %s\n", buf);
     }



More information about the Freeswitch-svn mailing list