-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1secmail.sh
executable file
·138 lines (107 loc) · 2.07 KB
/
1secmail.sh
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#!/bin/bash
if command -v jq > /dev/null 2>&1; then :; else
echo "jq not installed" 1>&2
exit 3
fi
usage() {
echo "Usage: $0 [...options]" 1>&2
cat 1>&2 << EOM
Options:
-h Show this help menu
-R <count> Get random email addresses
-D Get list of domains
-e Email username
-d Email domain
-l Check emails (-e required)
-E <id> Check email by ID
EOM
exit 2
}
if [ -z "$*" ]; then
usage
fi
API="https://www.1secmail.com/api/v1/?action"
EMAIL=""
DOMAIN=""
VERBOSE="0"
requireEmail() {
if [ -z "$EMAIL" ]; then
echo "Missing email" 1>&2
exit 1
fi
}
requireDomain() {
if [ -z "$DOMAIN" ]; then
echo "Missing domain" 1>&2
exit 1
fi
}
setEmail() {
IFS="@" read -r EMAIL DOMAIN <<< "$1"
}
# Verbose echo, only if VERBOSE is 1
vecho() {
if [ "$VERBOSE" = "1" ]; then
echo "$@"
fi
}
if [ -n "$ONESECMAIL" ]; then
setEmail "$ONESECMAIL"
requireEmail
requireDomain
fi
while getopts "vhR:De:d:lE:" opt; do
case "$opt" in
v)
VERBOSE="1"
;;
h)
usage
;;
R)
count="$OPTARG"
if [ -z "$count" ]; then
count="1"
fi
curl -s "$API=genRandomMailbox&count=$count" | jq -r '.[]'
;;
D)
curl -s "$API=getDomainList" | jq -r '.[]'
;;
e)
if [[ "$OPTARG" =~ @ ]]; then
setEmail "$OPTARG"
requireEmail
requireDomain
else
EMAIL="$OPTARG"
requireEmail
fi
;;
d)
DOMAIN="$OPTARG"
requireDomain
;;
l)
requireEmail
requireDomain
vecho "Listing emails for $EMAIL@$DOMAIN"
curl -s "$API=getMessages&login=$EMAIL&domain=$DOMAIN"
echo
;;
E)
requireEmail
requireDomain
if [ -z "$OPTARG" ]; then
echo "Missing email ID" 1>&2
exit 1
fi
vecho "Getting email ID $OPTARG from $EMAIL@$DOMAIN"
curl -s "$API=readMessage&login=$EMAIL&domain=$DOMAIN&id=$OPTARG"
echo
;;
*)
usage
;;
esac
done