> local e = freeswitch.Event("custom",
> "dialer::dialer-result");
>
> e.addBody(custom_msg);
>
> e:fire(e);
The wiki page (http://wiki.freeswitch.org/wiki/Lua#event:fire) shows
that you fire thusly:
e:fire(); --No "e" in the parens.
Can you try it and report back?
-MC