mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-03 15:40:32 +00:00
12 lines
292 B
Fish
12 lines
292 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
|