Em Ter, 2005-10-04 às 21:51 +0400, Rajeev escreveu: > Hi > I am backing up my Linux server to another server with rsync. Could > some help me with a method of send an e-mail once the backup is > finished?. It would be really good if I could get the list of files > been backed up.!. >
Try Nail: http://nail.sourceforge.net/ Nail supports external smtp server and smtp-auth. Man nail, for more details. Example: #!/bin/bash export smtp=<smtp_server> ( <backup code> ) >2>1& | nail -s "Backup $date" [EMAIL PROTECTED] ------------------------ Yahoo! Groups Sponsor --------------------~--> Fair play? Video games influencing politics. Click and talk back! http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/0XFolB/TM --------------------------------------------------------------------~-> Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/dubailug/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
