You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
288 B
11 lines
288 B
#!/bin/bash
|
|
|
|
username=postmaster@mangue-et-solidaire.re
|
|
password=
|
|
base64=$(echo -ne "\0$username\0$password" | base64)
|
|
|
|
openssl s_client -starttls smtp -connect mail1.zourit.net:587 -ign_eof <<EOF | grep "Authentication successful"
|
|
ehlo mangue-et-solidaire.re
|
|
auth plain $base64
|
|
quit
|
|
EOF
|