search for: sammi

Displaying 20 results from an estimated 87 matches for "sammi".

Did you mean: sami
2013 Mar 05
0
postfix+dovecot+samba4+openldap: dovecot lda:Error: user sammy: Initialization failed: mail_location not set and autodetection failed
I'm trying to setup a samba4 with openchange which uses postfix+dovecot+openldap on a ubuntu 12.04.2 system. I can send outgoing emails but incoming emails fail. I looked up the logs and I get: Mar 5 11:03:48 testerA dovecot: lda(sammy): Error: user sammy: Initialization failed: mail_location not set and autodetection failed: Mail storage autodetection failed with home=/var/mail Mar 5
2012 Feb 28
1
Alphanumeric DTMF !?
Hi list, What possibilities are there in asterisk to send an *alphanumeric DTMF*from/to asterisk !? Regards, Sammy -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20120228/e62e7890/attachment.htm>
2006 Jun 21
7
sortable tree problem
Hello, I''m having a problem when I set the tree option to true on Sortable. If I set the option to false my remote call works fine, but once I set it to true, I get some weird log errors from Webrick... undefined method `update'' for "11":String /usr/lib/ruby/gems/1.8/gems/actionpack-1.12.1/lib/action_controller/cgi_ext/cgi_methods.rb:214:in `build_deep_hash''
2009 Dec 17
2
multiple usb apc smart ups with nut?
Hello everybody, I got tree UPS devices connected to a Debian server, and i am searching for a way to configure them. The server power-cord is only connected to one of the ups devices, and should monitor the other ups systems to sent email status. I got a HP R3000XR UPS with has a RS232 communication port that I have working perfectly. Then I have two APC SmartUPS 750V devices that are
2009 Oct 11
1
Problem with symlinks
Hi, currently I'm trying to extend my existing backup concept but I have issues due to symlinks. rsync has problems with symlinks. First some background information: I regularly back up my / and /home from my desktop PC and my netbook to my Synology DiskStation (500GB) using rsync 3.0.6 with this script: http://pastebin.com/m43d4e353 . This works without any error messages. On the DS
2012 Feb 11
1
Asterisk perl AGI confusing variables
Hello all, I'm struck with a very strange problem today. I've an AGI with some code subroutine snippet as follows: sub enable_sbc($) { my $carrier = shift; my $tmp = substr($carrier,1); my $jkh = $tmp; $server_port = $ast_agi->get_variable("SIPPEER($jkh,port)"); $ser_ip = $ast_agi->get_variable("SIPPEER($tmp,ip)");
2003 Nov 20
0
(no subject)
Hi All, I'm trying to migrate from an NT4 domain to samba-3... sorry this is so long... when I run the "net rpc vampire" I get errors for users and machines in uppercase or contain uppercase chars. I'm in a test env before I go live! I'm on a gentoo distro w/ shadow. useradd FOO errors, this might be the culprit... I set up some dummy accts and made them members of
2003 Nov 20
0
problems with uppercase in usernames
Oops, forgot to put a subject... apologies for the repost... (newb!) > Hi All, > > I'm trying to migrate from an NT4 domain to samba-3... > sorry this is so long... > > when I run the "net rpc vampire" I get errors for users and machines > in uppercase or contain uppercase chars. > > I'm in a test env before I go live! > > I'm on a
2012 Jan 14
1
Asterisk as UAC: How to put call OnHold
Hi! Maybe I am missing something or am a little blind at the moment, but I didn't find out how asterisk can place a call on hold when acting as user agent client to another SIP server. Scenario: ---------- Asterisk registers to another SIP server (provider) as user agent. An inbound call from this other SIP server comes in and arrives at asterisk. Asterisk performs some actions in the
2006 Feb 17
29
Sortable Tree Addition [PATCH]
...s, please send as a zip with the HTML causing the problem along with any code you have adjusted from the repository. If anyone has any serious ideas about how to improve performance, feel free to submit them as they would be very welcome. http://www.oriontransfer.co.nz/Sortable+List+v2.zip Sammi _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
2012 Feb 16
2
Asterisk && RTCP
Hello list, I need to know about Asterisk's friendly nature with RTCP. I've phones which support RTCP and they connect to the outer world via multiple carriers. In one of my recent packet traces I've observed that the caller initiated a call with rtcp string in SDP while for the same call dialling our from Asterisk to the carrier has no RTCP string in SDP ! Can anyone please tell why
2015 Jul 15
2
How to dial extensions asynchronous-sequentially ?
Heya Rodrigo Not sure, but this expansion on Sammy's concept may help you achieve the delayed ring on the secondary extensions you were looking for. exten => _600.,1,Dial(PJSIP/${EXTEN}) exten => _600.,n,Hangup exten => _600.wait5,1,Wait(5) exten => _600.wait5,n,Dial(PJSIP/${EXTEN:0:4}) exten => _600.wait5,n,Hangup exten => 555,1,Dial(LOCAL/6001&LOCAL/6002.wait5)
2011 Nov 12
1
With an example - Re: rbind.data.frame drops attributes for factor variables
When I use rbind() or rbind.data.frame() to add a row to an existing dataframe, it appears that attributes for the column of type "factor" are dropped. See the sample example below to reproduce the problem. Please suggest How I can fix this. Thanks, Sammy a=c("Male", "Male", "Female", "Male") b=c(1,2,3,4) c=c("great", "bad",
2011 Nov 24
3
Is there way to add a new row to a data frame in a specific location
Is there easy way (without copying the existing rows to a temporary location and copying back) to add a new row to a specific index location in an existing data frame? Example df = data.frame( A= c('a','b','c'), B=c(1,2,3), C=(10,20,30)) newrow = c('X', 100, 200) I want to add the newrow as the second row to the data frame df Please suggest a solution that is
2011 Dec 23
1
execute command just after Dial()
Hello, I'm using AGI scripting with asterisk and need to execute certain commands just after Dial(). But once dial command is executed, further commands/instructions are ignored. $agi->exec("Dial","SIP/100"); $dialstatus = $agi -> get_variable("DIALSTATUS"); if($dialstatus[data]=="ANSWER") { do something.......
2009 Oct 11
2
people(:sam) should be saved to a @sam variable?
Hi all When creating unit tests, I wondered whether I should rather use the following... people(:sam).name = "Sammy" people(:sam).city = "Blah" ...or rather the following form: @sam = people(:sam) @sam.name = "Sammy" @sam.city = "Blah" Thanks Josh -- Posted via http://www.ruby-forum.com/.
2011 Dec 14
1
get start-time of all active calls
Hello, asterisk version 1.6.2.7 I want to get the start time of all active calls from console, could you please let me know the best way to get it. thanks, Kamlesh -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20111214/b462516a/attachment.htm>
2009 Mar 07
3
Mail delivery failing with 450
I'm not sure why this started, but apparently I'm having a DNS problem. Yesterday mail started bouncing with this error: 450 Unable to find obrien-pifer.com I think the messages eventually get delivered, but not sure. I guess I'll see if this one makes the list. I checked my domain using http://www.checkdns.net/ and it gives me a couple warnings. One is that there's no MX
2013 Jan 14
1
php programming for working with asterisk
Hi, I write some php code in AMI to working with asterisk command. I don't know exactly what is the different between AMI and AGI and witch one is better for my planning. Im planning to call party users that their number is is my panel on web. We have some operator and they can call party users via client softphone by clicking on their number, so they have to limited to call just listed
2011 Dec 27
1
how to used SIPp for sip load testing
Hi list, I have installed SIPp into my server. But not able to used it properly. how to configure with my server ? how to see logs on webpage ? how to start call testing .... when i start SIPp then found verious hits on myserver. *CLI:- * [Dec 27 17:37:54] NOTICE[28001]: chan_sip.c:20785 handle_request_invite: Call from '' to extension 'service' rejected because extension not