9 lines
151 B
Bash
9 lines
151 B
Bash
#!/bin/sh
|
|
# $YakumoLabs$
|
|
echo "Fetching mail from account: $1 ..."
|
|
env fdm -a "$@" fetch
|
|
if [ $? -ne 0 ]; then
|
|
echo "Sorry, I couldn't..."
|
|
exit 1
|
|
fi
|