Project

General

Profile

Sip subscribe winfo » History » Revision 2

Revision 1 (Adrian Georgescu, 10/26/2008 10:52 AM) → Revision 2/21 (Adrian Georgescu, 10/26/2008 11:17 AM)

== sip_subscribe_winfo == 

 To use this script you must to have a valid [wiki:configuration_file configuration file]. 

 === Description === 

 Source code: [source:scripts/sip_subscribe_winfo.py scripts/sip_subscribe_winfo.py] 

 {{{ 
 adigeo@ag-imac3:~$sip_subscribe_winfo -h 
 Usage: sip_subscribe_winfo [options] 

 This example script will use the specified SIP account to SUBSCRIBE to the 
 presence.winfo event of itself and request action to be taken when a new 
 watcher is in 'pending'/'waiting' state. The program will un-SUBSCRIBE and 
 quit when CTRL+D is pressed. 

 Options: 
   -h, --help              show this help message and exit 
   -a NAME, --account-name=NAME 
                         The account name from which to read account settings. 
                         Corresponds to section Account_NAME in the 
                         configuration file. If not supplied, the section 
                         Account will be read. 
   --sip-address=SIP_ADDRESS 
                         SIP address of the user in the form user@domain 
   -p PASSWORD, --password=PASSWORD 
                         Password to use to authenticate the local account. 
                         This overrides the setting from the config file. 
   -n DISPLAY_NAME, --display-name=DISPLAY_NAME 
                         Display name to use for the local account. This 
                         overrides the setting from the config file. 
   -e EXPIRES, --expires=EXPIRES 
                         "Expires" value to set in SUBSCRIBE. Default is 300 
                         seconds. 
   -o IP[:PORT], --outbound-proxy=IP[:PORT] 
                         Outbound SIP proxy to use. By default a lookup of the 
                         domain is performed based on SRV and A records. This 
                         overrides the setting from the config file. 
   -x XCAP_ROOT, --xcap-root=XCAP_ROOT 
                         The XCAP root to use to access the pres-rules document 
                         for authorizing subscriptions to presence. 
   -s, --trace-sip         Dump the raw contents of incoming and outgoing SIP 
                         messages (disabled by default). 
   -l, --log-pjsip         Print PJSIP logging output (disabled by default). 
 }}} 

 === Example === 

 {{{ 
 adigeo@ag-imac3:~/work/pypjua$sip_subscribe_winfo 
 Accounts available: 'alice', 'bob', 'ew', 'mrg', 'pbx', 'tf', 'umts', 'unet', default 
 Using default account: 31208005169@ag-projects.com 
 Resolved DNS SRV record "_sip._udp.ag-projects.com" --> proxy.sipthor.net:5060 
 Resolved DNS A record "proxy.sipthor.net" --> 85.17.186.7, 81.23.228.150, 81.23.228.129 
 Retrieving current presence rules from https://xcap.sipthor.net/xcap-root/ 
 Allowed list: 
	 sip:2233350608@sip2sip.info 
	 sip:31208005163@ag-projects.com 
	 sip:31208005166@ag-projects.com 
	 sip:31208005167@ag-projects.com 
	 sip:adi@umts.ro 
	 sip:alice@example.com 
	 sip:ruud@umts.ro 
	 sip:317105169@eurovoice.ro 
 Blocked list: 
 Polite-blocked list: 
 Subscribing to "31208005169@ag-projects.com" for the presence.winfo event, at 81.23.228.129:5060 
 Received NOTIFY: 
 ---- 
 Active watchers: 
 Terminated watchers: 
 Pending watchers: 
   sip:bob@example.com 
 Waiting watchers: 
 ---- 
 pending watcher sip:bob@example.com wants to subscribe to your presence information. Press (a) to allow, (d) to deny, (p) to polite block: 
 Watcher sip:bob@example.com is now allowed 

 }}}