Hi, Frank!

2009/2/25 Frank Ianella <[email protected]>:
> i am trying to use the sendmail applet to relay to smtp.gmail.com but
> cannot figure out the neccessary command syntax.
>

You can try working:
$ sendmail -H "exec openssl s_client -quiet -connect smtp.gmail.com:25
-tls1 -starttls smtp" -f [email protected] -F "Your real name here (pure
optional)"

You'll be prompted for password, or you can pass you credentials (two
lines file: username, password) to fd 4 like:
$ sendmail -H "exec openssl s_client -quiet -connect smtp.gmail.com:25
-tls1 -starttls smtp" -f [email protected] -F "Your real name here (pure
optional)" 4<.your_cred_file

Notice "exec, -quiet, no -crlf and -tls1".

Regards,
--
Vladimir
_______________________________________________
busybox mailing list
[email protected]
http://lists.busybox.net/mailman/listinfo/busybox

Reply via email to