Mercurial > masqmail
view contrib/rmail @ 211:0f36c0a46f82
replaced hmac_md5.c with an own implementation of RFC 2104
Until now the sample code of the RFC itself was used,
but it lacked a license or copyright notice.
See the comment in hmac_md5.c for details.
author | meillo@marmaro.de |
---|---|
date | Sun, 18 Jul 2010 22:20:36 +0200 (2010-07-18) |
parents | 92673a185add |
children |
line wrap: on
line source
#!/bin/sh # # Dummy UUCP rmail command for postfix/qmail systems # # written by luciano l. mannucci <luke@nameron.smd.sublink.org> # improved by Wietse Venema <wietse@porcupine.org> # see: # List: postfix-users # Subject: Rmail: very small fix # From: luke@nameron.smd.sublink.org (luciano l. mannucci) # Date: 2000-09-13 14:31:30 # URL: http://marc.info/?l=postfix-users&m=96885536302087 # # taken from postfix-2.5.5/auxiliary/rmail/rmail SENDMAIL="/usr/sbin/sendmail" IFS=" " read junk from junk junk junk junk junk junk junk relay case "$from" in *[@!]*) ;; *) from="$from@$relay";; esac exec $SENDMAIL -i -f "$from" -- "$@"