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