diff --git a/dotfiles/.zshrc_aliases b/dotfiles/.zshrc_aliases index dfe586b..08d392a 100644 --- a/dotfiles/.zshrc_aliases +++ b/dotfiles/.zshrc_aliases @@ -46,7 +46,7 @@ function gac() { } function smtp() { - cat "$1" | while read -r LINE; do sleep 0.1; echo "$LINE"; done | nc "$2" "${3:-25}" + cat "$1" | while read -r LINE; do sleep 1; echo "$LINE"; done | ncat -C -v "$2" "${3:-25}" }