Is there a way to limit outbound calls when feeding files to the outgoing directory in asterisk? I several thousand files i need to feed asterisk, hoping to copy it to the outgoing directory all at 1 time.
Is there a way to limit outbound calls when feeding files to the outgoing directory in asterisk? I several thousand files i need to feed asterisk, hoping to copy it to the outgoing directory all at 1 time.
I think the only way is managing the number of files in the outbound directory http://www.voip-info.org/tiki-index.php?page=Asterisk+auto-dial+out Tong wrote:> Is there a way to limit outbound calls when feeding files to the outgoing directory in asterisk? I several thousand files i need to feed asterisk, hoping to copy it to the outgoing directory all at 1 time. > > _______________________________________________ > -- Bandwidth and Colocation Provided by http://www.api-digital.com -- > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users > >
Tong wrote:> Is there a way to limit outbound calls when feeding files to the outgoing directory in asterisk? I several thousand files i need to feed asterisk, hoping to copy it to the outgoing directory all at 1 time. >Yes, Create them with a future time and date and they will only be acted upon when the proper time comes. Doug -- Ben Franklin quote: "Those who would give up Essential Liberty to purchase a little Temporary Safety, deserve neither Liberty nor Safety."
That might work. I'll give that a shot. ---- Doug Lytle <support at drdos.info> wrote:> Tong wrote: > > Is there a way to limit outbound calls when feeding files to the outgoing directory in asterisk? I several thousand files i need to feed asterisk, hoping to copy it to the outgoing directory all at 1 time. > > > > Yes, > > Create them with a future time and date and they will only be acted upon > when the proper time comes. > > Doug > > > -- > > Ben Franklin quote: > > "Those who would give up Essential Liberty to purchase a little Temporary Safety, deserve neither Liberty nor Safety." > > > _______________________________________________ > -- Bandwidth and Colocation Provided by http://www.api-digital.com -- > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users
what's a good way to apply a future date to thousands of files? ---- Doug Lytle <support at drdos.info> wrote:> Tong wrote: > > Is there a way to limit outbound calls when feeding files to the outgoing directory in asterisk? I several thousand files i need to feed asterisk, hoping to copy it to the outgoing directory all at 1 time. > > > > Yes, > > Create them with a future time and date and they will only be acted upon > when the proper time comes. > > Doug > > > -- > > Ben Franklin quote: > > "Those who would give up Essential Liberty to purchase a little Temporary Safety, deserve neither Liberty nor Safety." > > > _______________________________________________ > -- Bandwidth and Colocation Provided by http://www.api-digital.com -- > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users
what's a good way to apply a future date to thousands of files? ---- Doug Lytle <support at drdos.info> wrote:> Tong wrote: > > Is there a way to limit outbound calls when feeding files to the outgoing directory in asterisk? I several thousand files i need to feed asterisk, hoping to copy it to the outgoing directory all at 1 time. > > > > Yes, > > Create them with a future time and date and they will only be acted upon > when the proper time comes. > > Doug > > > -- > > Ben Franklin quote: > > "Those who would give up Essential Liberty to purchase a little Temporary Safety, deserve neither Liberty nor Safety." > > > _______________________________________________ > -- Bandwidth and Colocation Provided by http://www.api-digital.com -- > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users
what's a good way to apply a future date to thousands of files? ---- Doug Lytle <support at drdos.info> wrote:> Tong wrote: > > Is there a way to limit outbound calls when feeding files to the outgoing directory in asterisk? I several thousand files i need to feed asterisk, hoping to copy it to the outgoing directory all at 1 time. > > > > Yes, > > Create them with a future time and date and they will only be acted upon > when the proper time comes. > > Doug > > > -- > > Ben Franklin quote: > > "Those who would give up Essential Liberty to purchase a little Temporary Safety, deserve neither Liberty nor Safety." > > > _______________________________________________ > -- Bandwidth and Colocation Provided by http://www.api-digital.com -- > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users
how many out going files were you working with? ---- Steve Totaro <stotaro at totarotechnologies.com> wrote:> On Wed, Mar 19, 2008 at 10:33 AM, Doug Lytle <support at drdos.info> wrote: > > Tong wrote: > > > what's a good way to apply a future date to thousands of files? > > > > > I do it within the script that creates the file(s): > > > > # Touch file once to set date/time stamp to now > > /bin/touch /usr/local/bin/$1.out.call > > > > # Touch file again with a 150 second future date > > /bin/touch -r /usr/local/bin/$1.out.call -F 150 /usr/local/bin/$1.out.call > > > > > > > > Doug > > > > -- > > > > Ben Franklin quote: > > > > "Those who would give up Essential Liberty to purchase a little Temporary Safety, deserve neither Liberty nor Safety." > > > > I do it via FTP from another box. I like my switch to be a switch > and not have to bother with all these extra functions/processes. The > proof is in the stability. > > Thanks, > Steve Totaro > > _______________________________________________ > -- Bandwidth and Colocation Provided by http://www.api-digital.com -- > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users