mirror of
https://github.com/stalwartlabs/mail-server.git
synced 2025-02-24 16:03:02 +08:00
14 lines
224 B
Bash
14 lines
224 B
Bash
#!/bin/bash
|
|
|
|
if [[ $1 == "hello" ]] && [[ $2 == "world" ]]; then
|
|
echo "X-My-Header: true"
|
|
while read line
|
|
do
|
|
echo "$line"
|
|
done < /dev/stdin
|
|
exit 0;
|
|
else
|
|
echo "Invalid parameters!"
|
|
exit 1;
|
|
fi
|
|
|