RE: [qmailtoaster] Setting up FTP script

2009-06-02 Thread David Burke
This probably isn't a Qmail issue, but thought you guys could help I'm trying to setup an FTP script to FTP my backup file to a public Windows server (still behind firewall). This like the qtp-backup will be done via a cron job. Here's my script: cd /backup/qmailbackup ftp server user

Re: [qmailtoaster] Setting up FTP script

2009-06-02 Thread Dave Hallowell
David, I would install expect. You can get it via yum (I think) or some other repo. It will record your input and create a script which you can execute via cron. Dave David Burke wrote: This probably isn't a Qmail issue, but thought you guys could help I'm trying to setup an FTP script

RE: [qmailtoaster] Setting up FTP script

2009-06-02 Thread Richard Vinke
I use: ftp -n ftpcommands Content of ftpcommands: open ftpserver user 'username' 'password' cd 'some dir' put *.* by This probably isn't a Qmail issue, but thought you guys could help I'm trying to setup an FTP script to FTP my backup file to a public Windows server (still behind