similar to: sip.conf parameter and sip msg between server <-> client

Displaying 20 results from an estimated 2000 matches similar to: "sip.conf parameter and sip msg between server <-> client"

2009 Aug 18
5
OT - DECT handset with Line key
Hi, I need to replace digital handsets in offices where there cabling is appareantly not Ethernet-compliant. Today's usage is to press a key to toggle between private ou public line before issuing an outgoing call. Are you aware of a DECT handset (to overcome cabling limitations) that mimic this line-key behaviour ? For instance, acceptable behaviours would be to dial number string and press
2009 Aug 18
2
Execute some kind of script when something happens with Asterisk
Would it be possible to execute some kind of script when for example Asterisk restarts... or stops... ? How can one read the status of Asterisk so that when the service is stopped I could be notified by mail, by text message,... ? I don't know how to read the status of Asterisk (or the change of status) in a bash-script. Thanks for the reply ! Kind regards, Jonas. -------------- next part
2009 Nov 02
4
GSM and Wav format
Hello, Let me explain a scenario There are different Asterisk Servers at different Remote locations. Recording in different formats for FIVE seconds reveals that Format : Size wav : 84 KB gsm : 8.3 KB sln : 84 KB It can be recorded in any format. This is size for five seconds only. We need to transfer these files from different remote servers to a centralized server. We need to play these
2009 Aug 10
6
"context" does not work
Hello, i have a problem with the context parameter in the sip.conf. i'm using a german sip provider (sipgate.de) and everything worked fine in asterisk 1.4, but on 1.6.1 i got the following error message: NOTICE[3071]: chan_sip.c:18160 handle_request_invite: Call from '' to extension '8001187e0' rejected because extension not found. sip.conf: register =>
2009 Oct 13
11
Best Firewall Suggestions?
Hi, My customer has a outdated firewall that is also presenting a NAT nightmare for getting the Asterisk server reachable from the internet. What firewalls work good with VOIP? I really want to steer away from any ALG supported firewall. I just want a good firewall that works well with Asterisk. Thanks, David Wathen -------------- next part -------------- An HTML attachment was scrubbed...
2003 Aug 16
2
xtabs to dataframe fails (PR#3754)
Full_Name: Daniel Frey Version: 1.7.1 OS: Windows 2000 Submission from: (NULL) (80.254.164.242) Generating a data frame out of a xtabs result acts unusual. Take the following sample to reproduce it: > a.a <- c("a","a","a","b","b") > a.b <- c("c","c","d","e","f") >
2010 Sep 07
4
LMTP logging configuration
Hi, I'm using Dovecot 2.0.1, and I log to a custom syslog facility (local0) in the main configuration (I want a separate log file, but I want to make use of rsyslogd's capabilities). I overwrite the syslog facility for LDA (mail) to have all delivery related stuff in /var/log/mail.log, and that works fine. I tried to do the same for LMTP with protocol lmtp { syslog_facility = mail }
2012 May 04
2
[LLVMdev] how compile subproject
> Neither worked. =( Hmm. Something seems to have gone horribly wrong then. I've just reproduced Peter's suggestion on the autoconf build and it worked fine. Perhaps try a clean build out of tree: CMake: mkdir my_special_build_dir cd my_special_build_dir cmake $PATH_TO_LLVM_SOURCE make llc Autotools: mkdir my_special_build_dir cd my_special_build_dir $PATH_TO_LLVM_SOURCE/configure
2012 May 05
0
[LLVMdev] how compile subproject
Hi, thanks for your answers. I did: cd workspace svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm cd llvm/ mkdir build cd build/ ../configure --enable-jit make                                                      # OK, everything went fine. cd ../lib/Transforms/InstCombine/            # Just to test vim InstCombineCalls.cpp                       # added `if (0 == 1) return 0;` at
2012 May 05
1
[LLVMdev] how compile subproject
Beckert Frey <beckert.frey at yahoo.com> writes: [snip] > Is InstCombine required for lli? Yes: $ llvm-config --libs mcjit jit interpreter nativecodegen bitreader asmparser selectiondag -lLLVMAsmParser -lLLVMBitReader -lLLVMX86CodeGen -lLLVMX86Desc -lLLVMX86Info -lLLVMX86AsmPrinter -lLLVMX86Utils -lLLVMSelectionDAG -lLLVMAsmPrinter -lLLVMMCParser -lLLVMInterpreter -lLLVMJIT
2006 May 08
2
Encrypted IMAP only from Internet, unencrypted POP3 from internal network
Hi, we have following situation: I migrated our company mailserver from POP3 only to dovecot with IMAP and POP. We need to have unencrypted POP3 from our internal network, and the subnet our mailserver is in. Additionally, we now want to allow encrypted IMAP from the internet (for some defined accounts), preferably with TLS (which means I open Port 143 in our firewall). Now, how can I
2003 Apr 12
1
WIn XP + Samba trouble
I am trying to connect a windows xp client to a samba PDC. The user exists on the PDC and has an entry in the /etc/samba/smbpasswd file. In my smb.conf file, I have the following: add user script = /usr/sbin/useradd -s /bin/false %u && /usr/bin/smbpasswd -a %u add machine script = /usr/sbin/useradd -d /dev/null -g machines -s /bin/false -M %u && /usr/bin/smbpasswd -m -a %u
2012 Sep 26
1
Write table with data in other .csv template
Hi, I have a table with data, as below: dput(table): structure(list(Adrian.Cole = c(0L, 0L, 0L, 0L, 0L, 0L), Alison.Wong = c(0L, 0L, 0L, 0L, 0L, 0L), Andrei.Savu = c(0L, 0L, 0L, 0L, 0L, 0L), Bruno.Dumon = c(0L, 0L, 0L, 0L, 0L, 0L), Edward.J..Yoon = c(0L, 0L, 0L, 0L, 0L, 0L), Eugene.Koontz = c(0L, 0L, 0L, 0L, 0L, 0L), Jakob.Homan = c(0L, 0L, 0L, 0L, 0L, 0L), Kelvin.Kakugawa = c(0L, 0L,
2012 May 04
2
[LLVMdev] how compile subproject
You can also do make ONLY_TOOLS="llc" Pete On May 3, 2012, at 11:52 PM, Tim Northover wrote: > Hi Beckert, > >> is it possible to compile just an subproject? For example, just llc or lli? > > With CMake you can just type "make llc" from your build directory. I > don't know about the autotools build. > > Tim. >
2007 Mar 20
2
Limit AD for Winbind
Hello guys, I'm using Winbind to integrate my Active Directory Users into Linux. The Domain is very big and is in trust with four other Domains. I've about 100,000+ users. Sometimes everything works perfect, wbinfo -u and wbinfo -g parse the correct users/groups but when I restart Samba + Winbind it does not work anymore. When I first try wbinfo -m it lists all trusted domains but
2011 Mar 15
3
fitting a distribution to a ecdf plot
Dear all, I need to plot an cumulative distribution plot of a variable and then to fit a distribution to that, probably a weibull or lognormal. I have plotted the ecdf as > plot(ecdf(x)) but I haven't managed to fit the distribution. I have as well attached the data. I would appreciate if you could help me on that. Thank you. Kind regards Maria -------------- next part --------------
2008 Sep 27
2
client certs with godaddy ssl cert
I've read the client ssl cert section in the wiki and it talks about using a self signed cert, if I am using a commercial cert, in this case godaddy, how do I implement a self signed cert for the client side and have dovecot make use of this? I know the mechanics of setting up the self signed ca, the question is more what configuration changes do I need to make in dovecot to handle both
2014 Apr 01
2
[LLVMdev] Construction of SCEVAddRecExpr
Hello, I'm studying how the SCEV analyzis works and how to use it and I could not create an example where the SCEV analyzis identifies an expression as "SCEVAddRecExpr". Aren't the expressions below the kind of pattern that should be represented as a "AddRecExpr" ? SCEV: (1 + (2 * %3) or SCEV: (%1 + (2 * %3) or SCEV: (%1 + (%2 * %3) In my experiments they are
2006 May 10
1
ssl_require_client_cert = yes for encrypted connections only
Hi, is there any way to get dovecot to use "ssl_require_client_cert = yes" for encrypted connections only? For unencrypted connections there can't be any client certificate, and I can't disable unencrypted connections altogether (I limit them by firewall to our own network). Rainer Frey -- Software Development ------------------------------------------------------ Inxmail
2011 Jul 26
2
Beta distribution- help needed
Hi, Well, i need some help, practical and theoretical. I am wondering why the fitdistplus (mle function) is returning an error for this code: [code] x1 <- c(100,200,140,98,97,56,42,10,2,2,1,4,3,2,12,3,1,1,1,1,0,0); plotdist(x1); descdist(x1, boot =1000); y<- sum(x1); d= as.vector(length(x1)); for(i in 1:length(x1)){ d[i] = x1[i]/y; } fitdist(d, "beta") [/code] Error: