similar to: Automatically dial a number, then an extension

Displaying 20 results from an estimated 4000 matches similar to: "Automatically dial a number, then an extension"

2017 May 16
2
Automatically dial a number, then an extension
Hey; What happens is that a script logs into the AMI and originates a call. When the call is answered, it jumps to a context in the dial plan. Thanks Much; John V. From: asterisk-users-bounces at lists.digium.com [mailto:asterisk-users-bounces at lists.digium.com] On Behalf Of Victor Villarreal Sent: Monday, May 15, 2017 12:08 PM To: Asterisk Users Mailing List - Non-Commercial
2008 Sep 02
5
Appending a record to a table
Hi I''m not too sure how best to explain this but here goes! I am trying to write an appointment system. I have, through example, just about got the dynamics correct. Even tried to play with some table joins (and excuse me if I''ve used the incorrect terminlogy). But no matter what I try I can''t seem to get the following code to work. I have a cart filled with Treatment
2009 Sep 18
1
Verification on HOW adding a machines works
I'm straddling the half-way point between samba and ldap. When adding a machine to the domain, functionally, it works like you would expect. You enter in the domain, enter your credentials, and reboot. The computer is able to function as a machine on the domain. I'm using the smbldap-tools as suggested in the wiki. Here's the script: add machine script = /usr/sbin/smbldap-useradd
2006 Mar 29
3
Redirect Post for Hiding ID?
I have a situation where I want to show the user details about an appointment they entered. They enter their name, phone number(s) and other private data in a form. I save that data in the controller with a POST from a "confirmation" page. I could simply show the params when that page is rendered (the save one), but if they use the browser refresh it''ll save the data again.
2009 Nov 01
1
please help - complicated polymorphic association
I am trying to build a shared-appointment system, where users can subscribe to appointments and be updated whenever changes are made to them. I have three objects in this system, appointments, users, and subscribers. Subscribers are a polymorphic object like so: class Subscriber < ActiveRecord::Base belongs_to :user belongs_to :subscribable, :polymorphic => true end The tricky part is
2017 Feb 06
3
Call List Campaign to an IVR
Not really, doing the way below you don't even have to worry about it. They both go out at the same instant and as soon as it hits voicemail it disconnects the other leg. If you wanted you could leave it ringing for twenty minutes and it would still have the same effect. Kind regards, Matt > On Feb 6, 2017, at 12:29 PM, Tech Support <asterisk at voipbusiness.us> wrote: >
2005 Oct 19
4
ER strikes back
Hi Railers, A long, long, time ago, i made a Framework/CMS in php. There were two core models: Content and Content_type. Content_type was only a list of content types (as expected): new, article, etc. Content_type was not mandatory, but it allowed later to "deactivate" types of contents, for example. So then Content stored the common attributes/properties between the different content
2014 Jul 30
1
Directory app not working with realtime
All; I'm currently running Asterisk 1.8.15-cert7 and am using realtime to store my voicemail configuration. The voicemail application works fine, but the problem I have is that the 'Directory' app cannot find any entries because there are no entries in the voicemail.conf file. When I add a context and an extension entry in voicemail.conf, it works the way it should. Is there
2015 Jun 29
2
Product CDR/Queue/Meetme
Hi Helviom I am interested to evaluate your product. What asterisk version you build this product around? -- regards, abdul basit | p: +92 32 1416 4196 | o: +92 30 0841 1445 On Tue, Jun 23, 2015 at 7:34 PM, Tech Support <asterisk at voipbusiness.us> wrote: > Please keep the ?me to? emails off the list. > > Regards; > > JV > > > > *From:*
2017 Apr 19
2
Can't compile Asterisk on Ubuntu 16
Hey; Thank you very much. I was able to install asterisk from your link. One other question. How are you starting asterisk? Do you use an init script or systemd? Do you think that you could share the script you use? Thanks Again; John V. -----Original Message----- From: asterisk-users-bounces at lists.digium.com [mailto:asterisk-users-bounces at lists.digium.com] On Behalf Of Jonathan H Sent:
2013 Apr 26
2
looking for a way to do appointment reminders
Hello, My health care organization is looking for a way to do appointment reminders. We currently have staff members who spend part of each day manually calling patients to remind them of their upcoming appointments, and we would like to automate this process. Our electronic health record software would provide such information as the patient's name, phone number, and day and time of
2007 Oct 07
22
Differences in execution between console and app
class AppointmentBook < ActiveRecord::Base has_many :appointments def lookup(date, look_ahead = 27) return nil unless block_given? (date..date + look_ahead).each do |date| yield(date, appointments.find_all_by_date(date)) end end end The line with yield is throwing the error: undefined method ''each'' for #<Date: 4908761/2,0,2299161> A YAML
2017 Apr 18
2
Can't compile Asterisk on Ubuntu 16
All; I am trying to build and install certified Asterisk 13.13 cert3 on a Ubuntu 16.04.2 LTS host without much success. I am getting the following errors when I try to compile. [CC] res_pjsip/config_transport.c -> res_pjsip/config_transport.o res_pjsip/config_transport.c: In function 'transport_apply': res_pjsip/config_transport.c:572:6: error: 'pjsip_tcp_transport_cfg
2010 Jul 15
3
Good script to make appointment?
Hello I'd like to write a script that would make it easier for people to call in, listen to the IVR, and make an appointment (eg. "When? ASAP? A given day?" -> "Morning? Afternon", etc.) I assume I'm not the first one to try and write this type of IVR, so would appreciate any feedback on writing this. Thank you.
2016 Mar 02
4
Dial your phone and contact phone from within outlook?
I am wondering what the best solution is for initiating a call from Outlook Contacts. I imagine something that would start the call from the outlook card (or similar) and then dial the user's extension and the contact's phone number and place them in a bridge. Anyone use something like this? Travis Ryan Director of Information Technologies Oscar Winski Company 2407 North Ninth Street
2017 Jun 19
2
Writing CDR's to two database servers
On Monday 19 June 2017 at 18:12:35, Sebastian Gutierrez wrote: > use replication 1. Agreed - use replication. 2. If you want an HA (High Availability, not dependent on a single Master DB server replicating to a slave) solution, consider setting up Master-Master replication, with an LVS (Linux Virtual Server) HA machine in front of the two, so that writes can go to either server using only
2012 Oct 23
10
How to pick colums from a ragged array?
I have a large dataset (~1 million rows) of three variables: ID (patient's name), DATE (of appointment) and DIAGNOSIS (given on that date). Patients may have been assigned more than one diagnosis at any one appointment - leading to two rows, same ID and DATE but different DIAGNOSIS. The diagnoses may change between appointments. I want to subset the data in two ways: - define groups
2015 Apr 01
2
Update peer IP address
If I correctly understand what the problem is, what I did was write a script that runs out of CRON every 15 minutes. It checks the outside IP address by querying http://checkip.dyndns.org and compares it to the IP address stored in the parameter ?externip? in the [general] section of sip.conf. If the two values are the same, the script exits quietly. If they are different, the script updates
2008 Sep 06
6
Active record question
I''m not quite sure how to get at this data using Actrive record.. I''m trying to get all the appointments made for a particular project. I''m using four models, Projects, Tasks, Resources and Appointments. The SQL gets me what I''m looking for but how do I do it using Active Record? Select a.* from appointments a join resources r on r.id = a.resource_id join
2015 May 20
2
reduce delay in fax detection
hello everybody i want to send fax via asterisk in pass through mode. everything is ok if enable fax detection in ooh323 and write fax extension in extensions.conf file. just one problem: delay. i have to wait 5 seconds in order to fax detection done. it is too long for me when i have voice call and no fax. my phone rings after five seconds. is there any way to omit or reduce this time? i test