Hi, Im reading the code og manager.c searching a way to sendText to a sip channel that supported it.<br />I found a function in manager.c line 2929 in trunk.<br /><br />static int action_sendtext(struct mansession *s, const struct message *m)<br />{<br />        struct ast_channel *c = NULL;<br />        const char *name = astman_get_header(m, &quot;Channel&quot;);<br />        const char *textmsg = astman_get_header(m, &quot;Message&quot;);<br />        int res = 0;<br /><br />        if (ast_strlen_zero(name)) {<br />                astman_send_error(s, m, &quot;No channel specified&quot;);<br />                return 0;<br />        }<br /><br />        if (ast_strlen_zero(textmsg)) {<br />                astman_send_error(s, m, &quot;No Message specified&quot;);<br />                return 0;<br />        }<br /><br />        if (!(c = ast_channel_get_by_name(name))) {<br />                astman_send_error(s, m, &quot;No such channel&quot;);<br />                return 0;<br />        }<br /><br />        ast_channel_lock(c);<br />        res = ast_sendtext(c, textmsg);<br />        ast_channel_unlock(c);<br />        c = ast_channel_unref(c);<br /><br />        if (res &gt; 0) {<br />                astman_send_ack(s, m, &quot;Success&quot;);<br />        } else {<br />                astman_send_error(s, m, &quot;Failure&quot;);<br />        }<br /><br />        return res;<br />}<br /><br />I dont found the register of this action in __init_manager(int reload) manager.c 5403 - 5436, here i found the register of the other actions of ami, <br />I want to ask you if the action is stable and ready for use in a stable proyect?<br /><br />I think that I only need ti add manager.c 5437:<br /><br />+ ast_manager_register_xml(&quot;SendText&quot;, EVENT_FLAG_CALL, action_sendtext)<br /><br />It is correct, I need Something more?<br /><br />Iḿ not a C/C++ pro Developer, I only write some lines and small applications, But i found this manager action similar to channel send_text, that I think it is posiible to enable action.<br /><br />Lot of thanks for your help.