diff --git a/bin/AST_CRON_audio_3_ftp.pl b/bin/AST_CRON_audio_3_ftp.pl index 44cd964c..7133c554 100644 --- a/bin/AST_CRON_audio_3_ftp.pl +++ b/bin/AST_CRON_audio_3_ftp.pl @@ -32,7 +32,7 @@ # # This program assumes that recordings are saved by Asterisk as .wav # -# Copyright (C) 2011 Matt Florell LICENSE: AGPLv2 +# Copyright (C) 2013 Matt Florell LICENSE: AGPLv2 # # # 80302-1958 - First Build @@ -47,6 +47,7 @@ # 110524-1049 - Added run-check concurrency check option # 111128-1615 - Added Ftp persistence option # 111130-1751 - Added Ftp validate option +# 130116-1536 - Added ftp port CLI flag # ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); @@ -102,6 +103,7 @@ if (length($ARGV[0])>1) print " [--nodatedir] = do not put into dated directories\n"; print " [--run-check] = concurrency check, die if another instance is running\n"; print " [--ftp-server=XXX] = FTP server\n"; + print " [--ftp-port=XXX] = FTP server port\n"; print " [--ftp-login=XXX] = FTP server login account\n"; print " [--ftp-pass=XXX] = FTP server password\n"; print " [--ftp-dir=XXX] = FTP server directory\n"; @@ -197,6 +199,15 @@ if (length($ARGV[0])>1) if ($DB > 0) {print "\n----- FTP SERVER: $VARFTP_host -----\n\n";} } + if ($args =~ /--ftp-port=/i) + { + my @data_in = split(/--ftp-port=/,$args); + $VARFTP_port = $data_in[1]; + $VARFTP_port =~ s/ .*//gi; + $CLIFTP_port=1; + if ($DB > 0) + {print "\n----- FTP PORT: $VARFTP_port -----\n\n";} + } if ($args =~ /--ftp-login=/i) { my @data_in = split(/--ftp-login=/,$args); diff --git a/bin/AST_CRON_audio_4_ftp2.pl b/bin/AST_CRON_audio_4_ftp2.pl index 8aae9756..eb215b59 100644 --- a/bin/AST_CRON_audio_4_ftp2.pl +++ b/bin/AST_CRON_audio_4_ftp2.pl @@ -26,13 +26,14 @@ # # This program assumes that recordings are saved by Asterisk as .wav # -# Copyright (C) 2011 Matt Florell LICENSE: AGPLv2 +# Copyright (C) 2013 Matt Florell LICENSE: AGPLv2 # # # 91123-0005 - First Build # 110524-1052 - Added run-check concurrency check option # 111128-1617 - Added Ftp persistence option # 111130-1801 - Added Ftp validate option +# 130116-1536 - Added ftp port CLI flag # ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); @@ -83,6 +84,7 @@ if (length($ARGV[0])>1) print " [--debugX] = super debug\n"; print " [--nodatedir] = do not put into dated directories\n\n"; print " [--ftp-server=XXX] = FTP server\n"; + print " [--ftp-port=XXX] = FTP server port\n"; print " [--ftp-login=XXX] = FTP server login account\n"; print " [--ftp-pass=XXX] = FTP server password\n"; print " [--ftp-dir=XXX] = FTP server directory\n"; @@ -141,6 +143,15 @@ if (length($ARGV[0])>1) if ($DB > 0) {print "\n----- FTP SERVER: $VARFTP_host -----\n\n";} } + if ($args =~ /--ftp-port=/i) + { + my @data_in = split(/--ftp-port=/,$args); + $VARFTP_port = $data_in[1]; + $VARFTP_port =~ s/ .*//gi; + $CLIFTP_port=1; + if ($DB > 0) + {print "\n----- FTP PORT: $VARFTP_port -----\n\n";} + } if ($args =~ /--ftp-login=/i) { my @data_in = split(/--ftp-login=/,$args); diff --git a/extras/generic_images/contact_center/sm_your_logo.gif b/extras/generic_images/contact_center/sm_your_logo.gif new file mode 100644 index 00000000..94d07adc Binary files /dev/null and b/extras/generic_images/contact_center/sm_your_logo.gif differ diff --git a/extras/generic_images/contact_center/spacer.gif b/extras/generic_images/contact_center/spacer.gif new file mode 100644 index 00000000..ef3c30b2 Binary files /dev/null and b/extras/generic_images/contact_center/spacer.gif differ diff --git a/extras/generic_images/contact_center/vdc_tab_vicidial.gif b/extras/generic_images/contact_center/vdc_tab_vicidial.gif new file mode 100644 index 00000000..66a0987c Binary files /dev/null and b/extras/generic_images/contact_center/vdc_tab_vicidial.gif differ diff --git a/extras/generic_images/contact_center/vicidial_admin_web_logo.gif b/extras/generic_images/contact_center/vicidial_admin_web_logo.gif new file mode 100644 index 00000000..c7c09e29 Binary files /dev/null and b/extras/generic_images/contact_center/vicidial_admin_web_logo.gif differ diff --git a/extras/generic_images/contact_center/vicidial_admin_web_logo_small.gif b/extras/generic_images/contact_center/vicidial_admin_web_logo_small.gif new file mode 100644 index 00000000..7cca9e5d Binary files /dev/null and b/extras/generic_images/contact_center/vicidial_admin_web_logo_small.gif differ diff --git a/extras/generic_images/contact_center/vtc_tab_vicidial.gif b/extras/generic_images/contact_center/vtc_tab_vicidial.gif new file mode 100644 index 00000000..6139c486 Binary files /dev/null and b/extras/generic_images/contact_center/vtc_tab_vicidial.gif differ