search for: customer1

Displaying 18 results from an estimated 18 matches for "customer1".

Did you mean: customers
2006 Feb 08
3
Basics - help with models &controllers...
...op a proper application without having these items mapped to the database. I have been trying to get my schema sorted now for a month and still don''t know what to do for the best. http://www.spectrais.com/images/0.png For some unknown reason I can''t seem to do the following: customer1 = Client.create(@params[:client]) then customer1.User.create(@params[:user]) -- Posted via http://www.ruby-forum.com/.
2010 Jan 12
5
Multi-Tenant Parking
...m to be able to get it to go properly - (actually, at all): I've most recently done this with 1.6.1.x, and now 1.6.2.x, with no luck in either case. What I've been "trying" is the following: features.conf [general] parkext => 100 [featuremap] [applicationmap] [parkinglog_customer1-park] parkext => 100 parkpos => 101-199 findslot => next context => customer1-park [parkinglog_customer2-park] parkext => 100 parkpos => 101-199 findslot => next context => customer2-park extensions.conf [customer1-call-park] exten => _X.,1,NoOp(The user ${EXTEN} is...
2004 Jul 29
1
Unauthenticated calls from a specific IP
Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/jpeg Size: 4055 bytes Desc: not available Url : http://lists.digium.com/pipermail/asterisk-users/attachments/20040729/85af8309/attachment.jpeg
2015 May 15
0
feature request: rsync dereference symlinks on cmdline
...t a source (or target!) dir in rsync by making a nice dir of symlink maps. For eg openVZ names their containers with ID#s which isnt very condusive to careful handling/recognition: 100/ 101/ 102/ 103/ etc Id like to create a dir of symlinks, a map (I think this would work on the target too?) customer1 -> ../production/100 customer2 -> ../production/101 customer3 -> ../production/102 and have rsync write dirs customer1/ customer2/ customer3/ in the target. Obviously I could do this by iterating over the source's 100 101 102 adnd point at custom target names, etc, but that gets t...
2008 May 12
1
IMAP, Shared folders, symlinks and permissions
...ound 16 staff need only access to a subset of customers (i.e. the ones they manage - around 20 each) while the rest of the staff need access to the lot. What we did was to convert everything to Maildir so that we could use symlinks. So far so good. We created symlinks from /home/custs/Maildir/customer1 to /home/manager1/Maildir/customer1 and from /home/custs/Maildir/customer2 to /home/manager2/Maildir/customer2. Again, so far, so good. Manager 1 gets access to Customer 1 and Manager 2 gets access to Customer 2. The problem comes when someone who ONLY has access to the "custs" acco...
2006 Aug 14
14
A mock which extends rather than replaces a class?
While running tests, we would like to instrument some of the classes under test. We still want the classes to do exactly what they currently do, but we would like them to do more when running in the test environment. Clearly we can (and currently do) just extend the objects "on the fly" where necessary, but this is a bit messy - we''d like some centralised way to always
2008 Apr 28
8
NetApp vfiler example scripts
...some basic scripts based on my current iSCSI block script. http://kinkrsoftware.nl/contrib/xen/block-netapp http://kinkrsoftware.nl/contrib/xen/netapp-lun.py Basically these two scripts allow you to start a vfiler with a qtree of customers. You log in the NetApp upon boot, and can use: netapp://customer1/disk1 It is work in progress... because I would prefer the vfiler IP to be in that line too, but it seems the iSCSI portal IP != the NetApp shell IP. Suggestions can be made on the list or as private reply. The helper script is for persons that (like me) are not yet able to add a key to the NetAp...
2008 Apr 28
8
NetApp vfiler example scripts
...some basic scripts based on my current iSCSI block script. http://kinkrsoftware.nl/contrib/xen/block-netapp http://kinkrsoftware.nl/contrib/xen/netapp-lun.py Basically these two scripts allow you to start a vfiler with a qtree of customers. You log in the NetApp upon boot, and can use: netapp://customer1/disk1 It is work in progress... because I would prefer the vfiler IP to be in that line too, but it seems the iSCSI portal IP != the NetApp shell IP. Suggestions can be made on the list or as private reply. The helper script is for persons that (like me) are not yet able to add a key to the NetAp...
2010 Mar 30
0
Howto get LDAP attributes outside the host configuration container into puppet.
...de in LDAP that holds (contains) host-specific attributes. This would for instance be a node identified by the following DN: cn=<hostname>,ou=<host_subtree_ou_node>,dc=<customer_subtree_dc_node>,dc=<location_dc_node>. An example DN for a UNIX host : cn=host1,ou=HostConfig,dc=customer1,dc=location1,dc=ux,dc=corp Why I need it: The thing is that there are certain information spread on a higher level in the tree. These, (among others), are default gateways, default ldap servers for ldap clients, default DNS server, etc.), etc. In order to create proper entries in /var/ldap/ldap_...
2006 Aug 02
1
REST and functional tests
Just playing around with converting an apps to the new REST goodness in edge rails, and I''m trying to work out how to convert/write the functional tests. Is the recommended way to explicitly use the actions (e.g. get :show, :id => ...; post :create,..., etc) and test the routes separately, or duplicate the request, in which case how is that done get "/", :id => 5
2007 May 17
5
DUNDi configuration problem
...[dundi-e164-canonical] ; ; List canonical entries here ; ;exten => 12564286000,1,Macro(stdexten,6000,IAX2/foo) ;exten => _125642860XX,1,Dial(IAX2/otherbox/${EXTEN:7}) [dundi-e164-customers] ; ; If you are an ITSP or Reseller, list your customers here. ; ;exten => _12564286000,1,Dial(SIP/customer1) ;exten => _12564286001,1,Dial(IAX2/customer2) [dundi-e164-via-pstn] ; ; If you are freely delivering calls to the PSTN, list them here ; ;exten => _1256428XXXX,1,Dial(Zap/g2/${EXTEN:7}) ; Expose all of 256-428 ;exten => _1256325XXXX,1,Dial(Zap/g2/${EXTEN:7}) ; Ditto for 256-325 [dundi-e...
2007 Mar 04
4
Rails functional testing and Mocha
...othing => true end end A functional test: [snip boiler plate] require ''eight_two_ask_customer'' class EightTwoAskCustomer include Mocha::ExpectationLoader end [snip more boiler plate] # Replace this with your real tests. def test_bill_customer c = customers(:customer1) EightTwoAskCustomer.any_instance_with_id( c.id).expects(:bill) post :bill, :id => c.id end This does mostly what I want, the test passes. If I comment out c.bill I get a failure: #<Mock:0x11e54b6>.bill - expected calls: 1, actual calls: 0 If I try to increase gross margin...
2008 Feb 18
1
realtime table customization to track iax registrations
Hello, I'm experimenting with Asterisk and MySQL. Up to know I've just put iax.conf in a MySQL database and it seems to work: when a Iax2 client registers the corrispondent row in db is updated. Good. However when I have many asterisk boxes pointing to the same db a problem arises: I need an additional column in iax_buddies table called for example "Asterisk ID" which tells me on
2009 Apr 02
6
[Bug 1585] New: Allow an `Include' option which reads another config file in place and does not error out when `Include' file not readable
...t; (http://bugzilla.mindrot.org/attachment.cgi?id=1623) Attached is a patch for an almost complete implementation. All that remains is the "file not readable is not an error" logic. Adding the following to your config file should read the named file in place. Include "~/.ssh/config.customer1" If the file is not found, only a warning should be given, like so: warning("%s line %d: Include file \"%s\" not found - skipping.", ...); ~/ and ~username expansion should be available. Attached is a patch for an almost complete implementation. All that remains is the...
2004 Oct 14
10
HTB
Hi all I''m new in this list and i hope to lear and to help if possible. But firt i need help :-( I have this messege in my syslog when my classes and qdiscs goes down. Can any one know what does it mean? Thnx in advance. Yannick Arrimadas Bot Oct 14 16:09:27 pototogorri kernel: HTB init, kernel part version 3.17 Oct 14 16:09:27 pototogorri kernel: Unable to handle kernel paging
2005 Aug 27
2
Problems with registration
...[dundi-e164-canonical] ; ; List canonical entries here ; ;exten => 12564286000,1,Macro(std-exten,6000,IAX2/foo) ;exten => _125642860XX,1,Dial(IAX2/otherbox/${EXTEN:7}) [dundi-e164-customers] ; ; If you are an ITSP or Reseller, list your customers here. ; ;exten => _12564286000,1,Dial(SIP/customer1) ;exten => _12564286001,1,Dial(IAX2/customer2) [dundi-e164-via-pstn] ; ; If you are freely delivering calls to the PSTN, list them here ; ;exten => _1256428XXXX,1,Dial(Zap/g2/${EXTEN:7}) ; Expose all of 256-428 ;exten => _1256325XXXX,1,Dial(Zap/g2/${EXTEN:7}) ; Ditto for 256-325 [dundi-e...
2005 May 10
13
What do you name yours
Hello list we are installing 2 new servers (to run asterisk) shortly, for a "stand alone" service. Ignoring our current naming convention, we'd like to name them something.. but we are not sure what. a consideration is that on the screens of the phones it shows extension@hostname (eg 3001@telephony) (all extensions are numeric) so the users will see it everyday i'm not
2005 Jan 05
5
Asterisk with MySQL
You are reading the instructions for the STABLE 1.0 version of asterisk and are using the CVS version. Goto the wiki and read the instructions for RealTime. -Matthew ----- Original Message ----- From: "Muhammad Rizwan Khan" <rizwan@advcomm.net> To: <Asterisk-Dev@lists.digium.com> Sent: Wednesday, January 05, 2005 12:42 PM Subject: [Asterisk-Dev] Asterisk with MySQL >