maildaemon
上传用户:xxcykj
上传日期:2007-01-04
资源大小:727k
文件大小:2k
源码类别:

Email客户端

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. #
  3. # maildaemon, fetchmail driver intended to be invoked hourly by cron.
  4. #
  5. # Script by Larry Fahnoe <fahnoe@kegworks.mn.org>, who writes:
  6. #
  7. # This is intended to support a standalone system (NeXTSTEP in this case) 
  8. # which makes manual, on-demand PPP connections to the outside world.  The
  9. # script is run as the target user from cron on an hourly basis.  If it
  10. # finds a PPP link is up (it sees routes on a PPP interface), fetchmail is
  11. # invoked.  If the link is not up, and the hour is in the list of hours that
  12. # connections should be made, the link is brought up and fetchmail is
  13. # invoked.  The program or script used to bring up the link should return an
  14. # exit status which reflects whether the link actually came up. 
  15. # I wrote this because I wanted to be able to have control over the amount
  16. # of time spent connected to an ISP and yet still be able to poll for mail
  17. # at intervals that made sense to me.  One limitation of this script is that
  18. # it does not take into account that an existing PPP link might be going to
  19. # a different ISP or network.
  20. #
  21. # You'll have to configure these
  22. USER=fahnoe # your name
  23. HOME=/Users/fahnoe # home directory (for the logfile)
  24. FORCEHOURS="05 09 13 17" # when to bring the link up if it's not already
  25. SERVER=mailserver.isp.com # mailserver host name
  26. # Link initialization and wrapup scripts (you may have to configure these)
  27. PPPUP="/usr/local/bin/pppup $SERVER"
  28. PPPDOWN=/usr/local/bin/pppdown
  29. PATH=/usr/local/bin:/bin:/usr/ucb:/usr/bin:/usr/etc
  30. export PATH USER HOME
  31. LOG=$HOME/log/maildaemon.log
  32. # get the mail, depends on $HOME/.fetchmailrc and $USER
  33. FETCHMAIL( ) {
  34.     ( echo "`date` $SERVER"
  35.       fetchmail $SERVER
  36.       if [ $? -gt 1 ]
  37.       then
  38.           echo "`date` $SERVER (evil things happened in fetchmail)"
  39.       fi
  40.     ) >> $LOG 2>&1
  41. }
  42. # if the link is already up, check for mail.
  43. # if the hour is in FORCEHOURS, force the link up and check for mail.
  44. (netstat -rn | awk '{ print $6 }' | grep ppp[0-9] > /dev/null)
  45. if [ $? -eq 0 ]
  46. then
  47.     FETCHMAIL
  48. else
  49.     hour=`date | sed -e 's/:/ /g' | awk '{ print $4 }'`
  50.     for x in $FORCEHOURS
  51.     do
  52.         if [ $hour = $x ]
  53.         then
  54.             $PPPUP
  55.             if [ $? -eq 0 ]
  56.             then
  57.                 FETCHMAIL
  58.                 $PPPDOWN
  59.             else
  60.                 echo "`date` $SERVER (link establishment failure)" >> $LOG
  61.                 exit 1
  62.             fi
  63.         fi
  64.     done
  65. fi
  66. exit