search for: pretransf

Displaying 2 results from an estimated 2 matches for "pretransf".

Did you mean: pretrans
2004 Jul 29
0
New app: Consultative transfer for each phone
...ses phone calls through the dial plan (agi) and concurently through the manager api. axra currently provides consultative transfer for SIP and IAX2 phones. this should easily be extended to any phone technology. hopefully, axra will soon provide 3 way calling. there are two tranfer functions : PreTransfer and CTransfer each should be implemented in the dial plan like : exten => 76,1,AGI(axraagi|PreTransfer) exten => 76,2,Hangup exten => 77,1,AGI(axraagi|CTransfer|auto) exten => 77,2,Hangup you may choose other extensions than 76 & 77. you may omit 'auto' when a call is t...
2003 Jun 07
1
patch to rsync to add options for pre- and post-transfer commands
...ind this of value, I wrote a patch to rsync 2.5.6 to give rsync in --daemon mode the ability to run a pre-transfer and post-transfer command. These options handle our need to prepare a server to receive files and to do some processing after receiving files. The options for /etc/rsyncd.conf are pretransfer script = /some/command/to/run posttransfer script = /some/other/command The commands are exec'd (not run through system() or popen()) and the inputs are the list of files (and directories) that are being synched (from struct file_list *flist). If the pretransfer script fails the...