mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
14 lines
187 B
Bash
Executable file
14 lines
187 B
Bash
Executable file
#!/usr/local/plan9/bin/rc
|
|
shift
|
|
sender=$1
|
|
shift
|
|
addr=$1
|
|
shift
|
|
fd=`{upas/aliasmail -f $sender}
|
|
switch($fd){
|
|
case *.*
|
|
;
|
|
case *
|
|
fd=YOURDOMAIN.DOM
|
|
}
|
|
exec upas/smtp -h $fd $addr $sender $*
|