Sip message

Version 4 (Adrian Georgescu, 11/06/2008 02:45 pm)

1 4 Adrian Georgescu
= sip_message =
2 1 Adrian Georgescu
3 2 Adrian Georgescu
To use this script you must to have a valid [wiki:configuration_file configuration file].
4 2 Adrian Georgescu
5 4 Adrian Georgescu
== Description ==
6 3 Adrian Georgescu
7 3 Adrian Georgescu
Source code: [source:scripts/sip_message.py scripts/sip_message.py]
8 3 Adrian Georgescu
9 1 Adrian Georgescu
{{{
10 1 Adrian Georgescu
Usage: sip_message [options] [target-user@target-domain.com]
11 1 Adrian Georgescu
12 1 Adrian Georgescu
This will either sit idle waiting for an incoming MESSAGE request, or send a
13 1 Adrian Georgescu
MESSAGE request to the specified SIP target. In outgoing mode the program will
14 1 Adrian Georgescu
read the contents of the messages to be sent from standard input, Ctrl+D
15 1 Adrian Georgescu
signalling EOF as usual. In listen mode the program will quit when Ctrl+D is
16 1 Adrian Georgescu
pressed.
17 1 Adrian Georgescu
18 1 Adrian Georgescu
Options:
19 1 Adrian Georgescu
  -h, --help            show this help message and exit
20 1 Adrian Georgescu
  -a ACCOUNT_NAME, --account-name=ACCOUNT_NAME
21 1 Adrian Georgescu
                        The account name from which to read account settings.
22 1 Adrian Georgescu
                        Corresponds to section Account_NAME in the
23 1 Adrian Georgescu
                        configuration file.
24 1 Adrian Georgescu
  --sip-address=SIP_ADDRESS
25 1 Adrian Georgescu
                        SIP login account
26 1 Adrian Georgescu
  -p PASSWORD, --password=PASSWORD
27 1 Adrian Georgescu
                        Password to use to authenticate the local account.
28 1 Adrian Georgescu
                        This overrides the setting from the config file.
29 1 Adrian Georgescu
  -n DISPLAY_NAME, --display-name=DISPLAY_NAME
30 1 Adrian Georgescu
                        Display name to use for the local account. This
31 1 Adrian Georgescu
                        overrides the setting from the config file.
32 1 Adrian Georgescu
  -o IP[:PORT], --outbound-proxy=IP[:PORT]
33 1 Adrian Georgescu
                        Outbound SIP proxy to use. By default a lookup is
34 1 Adrian Georgescu
                        performed based on SRV and A records. This overrides
35 1 Adrian Georgescu
                        the setting from the config file.
36 1 Adrian Georgescu
  -s, --trace-sip       Dump the raw contents of incoming and outgoing SIP
37 1 Adrian Georgescu
                        messages (disabled by default).
38 1 Adrian Georgescu
  -m MESSAGE, --message=MESSAGE
39 1 Adrian Georgescu
                        Contents of the message to send. This disables reading
40 1 Adrian Georgescu
                        the message from standard input.
41 1 Adrian Georgescu
  -l, --log-pjsip       Print PJSIP logging output (disabled by default).
42 1 Adrian Georgescu
}}}
43 1 Adrian Georgescu
44 1 Adrian Georgescu
45 4 Adrian Georgescu
== Example for receiving a message ==
46 1 Adrian Georgescu
47 1 Adrian Georgescu
48 1 Adrian Georgescu
{{{
49 1 Adrian Georgescu
adigeo@ag-imac3:~$sip_message 
50 1 Adrian Georgescu
Accounts available: 'alice', 'ew', 'mrg', 'pbx', 'tf', 'umts', 'unet', default
51 1 Adrian Georgescu
Using default account: 31208005169@ag-projects.com
52 1 Adrian Georgescu
Registering ""Adrian G." <sip:31208005169@ag-projects.com>" at 81.23.228.150:5060
53 1 Adrian Georgescu
REGISTER was successful
54 1 Adrian Georgescu
Contact: <sip:4f855cb09b@192.168.1.6:51408> (expires in 300 seconds)
55 1 Adrian Georgescu
Other registered contacts:
56 1 Adrian Georgescu
<sip:31208005169@192.168.1.122:5062;line=634g6j67> (expires in 480 seconds)
57 1 Adrian Georgescu
<sip:5dac4295e9@192.168.1.6:51375> (expires in 95 seconds)
58 1 Adrian Georgescu
<sip:31208005169@192.168.1.123:5060> (expires in 77 seconds)
59 1 Adrian Georgescu
<sip:31208005169@192.168.1.1;uniq=5B2860C44383A3D6705629A7E1FB8> (expires in 1563 seconds)
60 1 Adrian Georgescu
<sip:31208005169@80.101.96.20:61578> (expires in 3069 seconds)
61 1 Adrian Georgescu
Press Ctrl+D to stop the program.
62 1 Adrian Georgescu
Received MESSAGE from ""Adi UMTS" <sip:adi@umts.ro>", Content-Type: text/plain
63 1 Adrian Georgescu
dsgsgddsgs
64 1 Adrian Georgescu
Received MESSAGE from ""Adi UMTS" <sip:adi@umts.ro>", Content-Type: text/plain
65 1 Adrian Georgescu
Testing short text messages in page mode!
66 1 Adrian Georgescu
}}}
67 1 Adrian Georgescu
68 1 Adrian Georgescu
=== Example for sending a message ===
69 1 Adrian Georgescu
70 1 Adrian Georgescu
{{{
71 1 Adrian Georgescu
adigeo@ag-imac3:~$sip_message  -a umts ag@ag-projects.com
72 1 Adrian Georgescu
Accounts available: 'alice', 'ew', 'mrg', 'pbx', 'tf', 'umts', 'unet', default
73 1 Adrian Georgescu
Using account 'umts': adi@umts.ro
74 1 Adrian Georgescu
Press Ctrl+D on an empty line to end input and send the MESSAGE request.
75 1 Adrian Georgescu
dsgsgddsgs
76 1 Adrian Georgescu
Sending MESSAGE from ""Adi UMTS" <sip:adi@umts.ro>" to "<sip:ag@ag-projects.com>" using proxy 81.23.228.150:5060
77 1 Adrian Georgescu
MESSAGE was accepted by remote party.
78 1 Adrian Georgescu
adigeo@ag-imac3:~$sip_message  -a umts ag@ag-projects.com
79 1 Adrian Georgescu
Accounts available: 'alice', 'ew', 'mrg', 'pbx', 'tf', 'umts', 'unet', default
80 1 Adrian Georgescu
Using account 'umts': adi@umts.ro
81 1 Adrian Georgescu
Press Ctrl+D on an empty line to end input and send the MESSAGE request.
82 1 Adrian Georgescu
Testing short text messages in page mode!
83 1 Adrian Georgescu
Sending MESSAGE from ""Adi UMTS" <sip:adi@umts.ro>" to "<sip:ag@ag-projects.com>" using proxy 81.23.228.150:5060
84 1 Adrian Georgescu
MESSAGE was accepted by remote party.
85 1 Adrian Georgescu
}}}