[Freeswitch-users] freeswitch never seems to call sendmail when trying to email voicemails

Denis Jakovlev yadenis at seznam.cz
Mon Jul 27 19:33:02 MSD 2015


Hi,

Why do not use some simple script after the ends session?

For example simple bash script send_voicemail.sh

#!/bin/sh
cd /usr/local/freeswitch/recordings/voicemail/
f=`find -name \*.wav`
for file in $f
do
echo "Processing ${file}"
CURRENT=$(date +%d.%m.%y_%H:%M:%S)
datetime=$CURRENT
echo $datetime
sendemail -f voicemail at mail.com -t somemail at mail.com -m "Voicemail" -u "Voicemail od $datetime" -a ${file} -s smtp.mail.com -xu user -xp pass
echo "BackUP ${file}"
mv ${file} /usr/local/freeswitch/recordings/backup_voicemail/
done


And in dialplan start like this
<action application="export" data="api_hangup_hook=system /usr/local/freeswitch/scripts/send_voicemail.sh"/>



-- 
S pozdravem,
Ing.Denis Jakovlev                           
mob.tel. 775-415-382

pondělí 27. července 2015, 17:11:10, napsal jste:


Why can.t you create your own script and use it to send vm over email?
27 июля 2015 г. 18:32 пользователь "Berthold Karl" <sendmeallyouroffers at googlemail.com> написал:
Hi,

my FS is calling the sendmail-command, but sendmail ends with an segfault. It seems like there is no email under /tmp/. Did your sendmail also ends in a segfault?

2015-02-24 16:51 GMT+01:00 Brian West <brian at freeswitch.org>:
When you file the JIRA please attach your voicemail.conf.xml.

On Tue, Feb 24, 2015 at 8:21 AM, Sergey Safarov <s.safarov at gmail.com> wrote:
If you want to FS correctly processed parameters vm-mailfrom and email-from, write a request to https://freeswitch.org/jira/

On Tue, Feb 24, 2015 at 5:52 AM, Jason Lewis <jason at dickson.st> wrote:
Thanks Sergey,

I had configured the domain variable to the fqdn of the machine. I eventually got it working though, I was missing two key lines from my user config: 
      <param name="vm-email-all-messages" value="true"/>
      <param name="vm-attach-file" value="true" />

I'm not sure how I managed to miss those but anyway, that seems to have resolved things.

It seems as though vm-mailfrom is still being ignored though. Currently I have it set to:

       <param name="vm-mailfrom" value="vm at freeswitch.xyz.com.au"/>

but voicemails get delivered from:

1001 at freeswitch.xyz.com.au

Is this worth investigating further?

Jason

Sergey Safarov wrote on 23/02/2015 5:05 PM:
Try configure "domain" variable in vars.xml 

<X-PRE-PROCESS cmd="set" data="domain=you_domain_name"/>

After it verify that user registered with domain name

freeswitch at internal> sofia status profile internal reg

Registrations:
=================================================================================================
Call-ID:    1B26-2327-466848134BEBC9719CDE-002 at SipHost
User:       1201 at you_domain_name
Contact:    "1201" <sip:1201 at 10.21.18.22:5060;fs_nat=yes;fs_path=sip%3A1201%4010.21.18.22%3A5060>
Agent:      204 12-3868-2416-0.10.56.1-DS
Status:     Registered(UDP-NAT)(unknown) EXP(2015-02-23 06:05:22) EXPSECS(139)
Ping-Status:Reachable
Host:       fs1.you_domain_name
IP:         10.21.18.22
Port:       5060
Auth-User:  1201
Auth-Realm: you_domain_name
MWI-Account:1201 at you_domain_name

Sergey


On Mon, Feb 23, 2015 at 1:43 AM, Jason Lewis <jason at dickson.st> wrote:
So I've managed to see some output from the sendmail program in the FS logs. It appears that my fs instance isn't correctly setting its domain?

the FS box has a fqdn, and I also set the domain parameter in the vars.xml file, but still the voicemail is sent with a from address of an IP address.

Any ideas?

Net::SMTP>>> Net::SMTP(2.33)
Net::SMTP>>>   Net::Cmd(2.30)
Net::SMTP>>>     Exporter(5.71)
Net::SMTP>>>   IO::Socket::INET(1.35)
Net::SMTP>>>     IO::Socket(1.37)
Net::SMTP>>>       IO::Handle(1.35)
Net::SMTP=GLOB(0x23f7748)<<< 220 mb.xyz.com.au ESMTP Postfix (Debian/GNU)
Net::SMTP=GLOB(0x23f7748)>>> EHLO localhost.localdomain
Net::SMTP=GLOB(0x23f7748)<<< 250-mb.bongalong.st
Net::SMTP=GLOB(0x23f7748)<<< 250-PIPELINING
Net::SMTP=GLOB(0x23f7748)<<< 250-SIZE 10240000
Net::SMTP=GLOB(0x23f7748)<<< 250-VRFY
Net::SMTP=GLOB(0x23f7748)<<< 250-ETRN
Net::SMTP=GLOB(0x23f7748)<<< 250-STARTTLS
Net::SMTP=GLOB(0x23f7748)<<< 250-ENHANCEDSTATUSCODES
Net::SMTP=GLOB(0x23f7748)<<< 250-8BITMIME
Net::SMTP=GLOB(0x23f7748)<<< 250 DSN
Net::SMTP=GLOB(0x23f7748)>>> MAIL FROM:<1002 at 192.168.1.3>
Net::SMTP=GLOB(0x23f7748)<<< 501 5.1.7 Bad sender address syntax
Net::SMTP=GLOB(0x23f7748)>>> RCPT TO:<jason at xyz.com.au>
Net::SMTP=GLOB(0x23f7748)<<< 503 5.5.1 Error: need MAIL command
Net::SMTP=GLOB(0x23f7748)>>> DATA
Net::SMTP=GLOB(0x23f7748)<<< 503 5.5.1 Error: need RCPT command
Net::SMTP=GLOB(0x23f7748)>>> QUIT
Net::SMTP=GLOB(0x23f7748)<<< 221 2.0.0 Bye
2015-02-22 11:08:14.145852 [NOTICE] switch_core_session.c:1633 Session 3 (loopback/voicemail-a) Ended
2015-02-22 11:08:14.145852 [NOTICE] switch_core_session.c:1637 Close Channel loopback/voicemail-a [CS_DESTROY]
2015-02-22 11:08:14.145852 [NOTICE] switch_core_session.c:1633 Session 4 (loopback/voicemail-b) Ended
2015-02-22 11:08:14.145852 [NOTICE] switch_core_session.c:1637 Close Channel loopback/voicemail-b [CS_DESTROY]


On 20/02/2015 7:10 pm, Sergey Safarov wrote:
You mailer is not understand "mailer-app-args" has been configured in "switch.conf.xml"
Remove extra arg or add required

пт, 20 февр. 2015, 7:49, Jason Lewis <jason at dickson.st>:
Hi,

I've been trying to make freeswitch email voicemails but as far as I can
tell, it never even calls sendmail.

I have setting mailer-app to "sendmail" and "/usr/sbin/sendmail" to no
avail. I can successfully send an email from the commandline using
sendmail. (sendmail in this case is provided by postfix)

I see no emails in the postfix mail logs when I leave a voicemail message.

I also tried creating a shell just to see if it even gets called from
fs, but it does not get called when a voicemail is deposited:
#!/bin/bash
echo $(date --rfc-3339=ns): $* >> /tmp/freeswitchsendmail.log

After every change, I have run reloadxml and reload mod_voicemail. I
have also tried restarting freeswitch.

I am running the debian packages of FreeSWITCH Version 1.4.15-1~64bit
(-1 64bit)

my configuration is based on the vanilla configuration with only very
minor changes.

I'm at a loss as to how to debug further, but I'm pretty sure the
mailer-app is never called. Is there some setting I'm missing or
something obvious I'm not doing?


My config:
1001.xml:
<include>
  <user id="1001">
    <params>
      <param name="password" value="$${default_password}"/>
      <param name="vm-password" value="1001"/>
      <param name="vm-mailto" value="jason at xyz.com.au"/>
      <param name="vm-mailfrom" value="vm at freeswitch.xyz.com.au"/>
      <!-- <param name="vm-message-ext" value="wav"/> -->
    </params>
    <variables>
      <variable name="toll_allow" value="domestic,international,local"/>
      <variable name="accountcode" value="1001"/>
      <variable name="user_context" value="default"/>
      <variable name="effective_caller_id_name" value="Extension 1001"/>
      <variable name="effective_caller_id_number" value="1001"/>
      <variable name="outbound_caller_id_name"
value="$${outbound_caller_name}"/>
      <variable name="outbound_caller_id_number"
value="$${outbound_caller_id}"/>
      <variable name="callgroup" value="techsupport"/>
    </variables>
  </user>
</include>

and in switch.conf.xml I have the following set:

    <param name="mailer-app" value="/usr/sbin/sendmail"/>
    <param name="mailer-app-args" value="-t"/>


I made a log at level 7 and put it on the pastebin:

https://pastebin.freeswitch.org/23921


Jason Lewis
http://emacstragic.net


_________________________________________________________________________
Professional FreeSWITCH Consulting Services:
consulting at freeswitch.org
http://www.freeswitchsolutions.com

Official FreeSWITCH Sites
http://www.freeswitch.org
http://confluence.freeswitch.org
http://www.cluecon.com

FreeSWITCH-users mailing list
FreeSWITCH-users at lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


_________________________________________________________________________
Professional FreeSWITCH Consulting Services: 
consulting at freeswitch.org
http://www.freeswitchsolutions.com

Official FreeSWITCH Sites
http://www.freeswitch.org
http://confluence.freeswitch.org
http://www.cluecon.com

FreeSWITCH-users mailing list
FreeSWITCH-users at lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


-- 

Jason Lewis

http://emacstragic.net

_________________________________________________________________________
Professional FreeSWITCH Consulting Services:
consulting at freeswitch.org
http://www.freeswitchsolutions.com

Official FreeSWITCH Sites
http://www.freeswitch.org
http://confluence.freeswitch.org
http://www.cluecon.com

FreeSWITCH-users mailing list
FreeSWITCH-users at lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


_________________________________________________________________________

Professional FreeSWITCH Consulting Services: 

consulting at freeswitch.org

http://www.freeswitchsolutions.com



Official FreeSWITCH Sites

http://www.freeswitch.org

http://confluence.freeswitch.org

http://www.cluecon.com



FreeSWITCH-users mailing list

FreeSWITCH-users at lists.freeswitch.org

http://lists.freeswitch.org/mailman/listinfo/freeswitch-users

UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users

http://www.freeswitch.org

-- 

Jason Lewis

http://emacstragic.net

_________________________________________________________________________
Professional FreeSWITCH Consulting Services:
consulting at freeswitch.org
http://www.freeswitchsolutions.com

Official FreeSWITCH Sites
http://www.freeswitch.org
http://confluence.freeswitch.org
http://www.cluecon.com

FreeSWITCH-users mailing list
FreeSWITCH-users at lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org

_________________________________________________________________________
Professional FreeSWITCH Consulting Services:
consulting at freeswitch.org
http://www.freeswitchsolutions.com

Official FreeSWITCH Sites
http://www.freeswitch.org
http://confluence.freeswitch.org
http://www.cluecon.com

FreeSWITCH-users mailing list
FreeSWITCH-users at lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



-- 
Brian West
brian at freeswitch.org
Twitter: @FreeSWITCH , @briankwest
http://www.freeswitchbook.com
http://www.freeswitchcookbook.com
T:+19184209001 | F:+19184209002 | M:+1918424WEST (9378)
iNUM:+883 5100 1420 9001 | ISN:410*543 | Skype:briankwest

_________________________________________________________________________
Professional FreeSWITCH Consulting Services:
consulting at freeswitch.org
http://www.freeswitchsolutions.com

Official FreeSWITCH Sites
http://www.freeswitch.org
http://confluence.freeswitch.org
http://www.cluecon.com

FreeSWITCH-users mailing list
FreeSWITCH-users at lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org

_________________________________________________________________________
Professional FreeSWITCH Consulting Services:
consulting at freeswitch.org
http://www.freeswitchsolutions.com

Official FreeSWITCH Sites
http://www.freeswitch.org
http://confluence.freeswitch.org
http://www.cluecon.com

FreeSWITCH-users mailing list
FreeSWITCH-users at lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.freeswitch.org/pipermail/freeswitch-users/attachments/20150727/2bdf9c22/attachment-0001.html 


Join us at ClueCon 2016 Aug 8-12, 2016
More information about the FreeSWITCH-users mailing list