sendit.sh.in
上传用户:s81996212
上传日期:2007-01-04
资源大小:722k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. #!/bin/sh
  2. #
  3. # $Id: sendit.sh.in,v 1.2 1999/09/28 04:58:39 mrsam Exp $
  4. #
  5. # This is a sample sendit wrapper for sqwebmail. sqwebmail will invoke this
  6. # wrapper script to send an email message.  The complete message will be
  7. # provided on standard input.
  8. #
  9. # $1 will contain the return (or bounce) address for this mailboxid, as
  10. # specified by auth.c
  11. #
  12. # $2 will contain the sqwebmail mailboxid of the sender (note that we're
  13. # executing under whatever id auth.c sets for this mailboxid).  Furthermore,
  14. # $REMOTE_ADDR will contain the IP address where the client is coming from
  15. # (the rest of the CGI vars are available too).
  16. #
  17. # You may modify the message in whatever fashion before passing it on to the
  18. # MTA.
  19. #
  20. # Usually, for Qmail installations, you simply want to do this:
  21. #
  22. # exec /var/qmail/bin/qmail-inject -f "$1"
  23. #
  24. #
  25. # But, if you have a non-Qmail Maildir store, you might want to do this:
  26. #
  27. # exec /usr/sbin/sendmail -oi -t -f "$1"
  28. exec @mailer@ -f "$1"