'메일테스트'에 해당되는 글 2건

  1. 2022.12.17 SMTP 테스트(bash and telnet to test an email) 2
  2. 2022.12.17 POP3 접속 테스트 (BASH check POP3 mail with telnet)
728x90
반응형

SMTP 테스트(bash and telnet to test an email)

 

[[ $4 ]] || {
    printf "Usage\n\t$0 <domain> <email> <from_email> <rcpt_email>\n"
    exit 1
}
{
    sleep 1
    echo "helo $2"
    sleep 0.5
    echo "mail from:<$3>"
    sleep 0.5
    echo "rcpt to:<$4>"
    echo
} | telnet $1 25 |
    grep -q "Unknown user" &&
    echo "Invalid email" ||
    echo "Valid email"

 

Usage :

./script.sh domain email from_email rcpt_email

 

https://stackoverflow.com/questions/14326350/bash-and-telnet-to-test-an-email

 

bash and telnet to test an email

I'm trying to find out whether an email address is valid. I've accomplished this by usign telnet, see below $ telnet mail.example.com 25 Trying 0.0.0.0... Connected to mail.example.com. Escape

stackoverflow.com

#SMTP #메일테스트 #bash

 

728x90
SMALL
Posted by gromet
728x90
반응형

POP3 접속 테스트 (BASH check POP3 mail with telnet)

 

#!/bin/bash
 
fetch(){
  sleep 1
  echo "USER user@website"
  sleep 1
  echo "PASS mypassword"
 
  sleep 1
  echo "LIST"
 
  for i in `seq 1 10`
  do
    sleep 1
    echo "RETR $i"
    sleep 1
    echo "DELE $i"
  done
 
  sleep 1
  echo "QUIT"
}
 
fetch |telnet <server> 110

 

https://gist.github.com/metalx1000/34d3e65d197e26952790

 

BASH check POP3 mail with telnet

BASH check POP3 mail with telnet. GitHub Gist: instantly share code, notes, and snippets.

gist.github.com

 

#pop3 #메일테스트

728x90
SMALL
Posted by gromet
이전버튼 1 이전버튼

블로그 이미지
나는 운이 좋은 사람이다 나는 나날이 점점 더 좋아진다 내가 하는 선택과 행동은 반드시 성공으로 이어진다 내게는 인내력과 지속력이 있다 네게는 좋은것들만 모여든다
gromet

공지사항

Yesterday
Today
Total
반응형

달력

 « |  » 2024.11
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30

최근에 올라온 글

최근에 달린 댓글

최근에 받은 트랙백

글 보관함

160x600