oh-my-fish/plugins/python/pysmtp.fish
2013-05-22 12:07:36 -04:00

11 lines
290 B
Fish

# start smtp debugging server, can pass an option port parameter. Default to 1025
function pysmtp
if test -n "$argv"
set SMTPPORT $argv
else
set SMTPPORT 1025
end
echo "smtp server started on port" $SMTPPORT;
python -m smtpd -n -c DebuggingServer localhost:$SMTPPORT;
end