Choose your cart
Choose your cart
Receive up to $504 promo credit ($180 w/Welcome Unlimited, $360 w/ 5G Start, or $504 w/5G Do More, 5G Play More, 5G Get More or One Unlimited for iPhone plan (Welcome Unlimited and One Unlimited for iPhone plans can't be mixed w/other Unlimited plans; all lines on the account req'd on respective plans)) when you add a new smartphone line with your own 4G/5G smartphone on an eligible postpaid plan between 2/10/23 and 4/5/23. Promo credit applied over 36 months; promo credits end if eligibility requirements are no longer met.
$699.99 (128 GB only) device payment purchase or full retail purchase w/ new smartphone line on One Unlimited for iPhone (all lines on account req'd on plan), 5G Start, 5G Do More, 5G Play More or 5G Get More plan req'd. Less $699.99 promo credit applied over 36 mos.; promo credit ends if eligibility req’s are no longer met; 0% APR.
What is the configuration needed for sendmail? I'm running under Ubuntu 13.04. Setting up the smart_host stuff and authorization is easy, but I can't remember how to force sendmail to connect to port 465.
-Nigel
Look at this page http://verizon.com/emailsettings
As far as where these settings go in email under Ubuntu, I have no idea.
Thanks, but those tell you the values to set which I know. What I can't firgure out is how to get sendmail to work.
I've added this to sendmail.mc:
define(`SMART_HOST', `smtp.verizon.net')dnl
define(`RELAY_MAILER_ARGS', `TCP $h 465')dnl
define(`ESMTP_MAILER_ARGS', `TCP $h 465')dnl
But when I try to drain the queue I get this:
Running /var/spool/mqueue/r82D31IG002661 (sequence 1 of 18)
{edited for privacy}@verizon.net... Connecting to smtp.verizon.net. port 465 via relay...
{edited for privacy}@verizon.net... Deferred: Connection reset by smtp.verizon.net.
-Nigel
Nigel, Disclaimer: I was rated 1/10 on a scale for Linux skills, but I did find this http://www.moundalexis.com/tm/2010/10/28/getting-past-verizons-residential-smtp-block-with-sendmail/
Thanks for the pointer. In fact I'd found that before I posted on here. However it relates to the old outgoing.verizon.net, not the new smtp.verizon.net. In particular it doesn't solve the port 465 problem where I can't connect to it even using telnet.
-Nigel
I believe that I have it fixed and can now use Sendmail to send mail out again.
The pointer is at http://www.dawoodfall.net/index.php/relaying-sendmail-a-ssl which shows where Virgin Media in the UK pulled the same stunt as Verizon. It doesn't quite work as mentioned, you need to put the relay domain in square brackets to avoid MX resolution, however apart from that it's sweet. I didn't set up relay-domain as mentioned.
Briefly, to enable using sendmail to deliver mail on FIOS:
1) install stunnel
2) Create /etc/stunnel/smtp.verizon.net.conf with:
sslVersion = SSLv3
[ req ]
client = yes
accept = 2525
connect = smtp.verizon.net:465
3) /etc/init.d/stunnel restart
4) Add sendmail.mc:
define(`SMART_HOST', `[localhost]')dnl
define(`RELAY_MAILER_ARGS', `TCP $h 2525')dnl
define(`ESMTP_MAILER_ARGS', `TCP $h 2525')dnl
5) Add to authinfo:
AuthInfo:fqdn.of.your.localhost "U:name" "P:password" "M:PLAIN"
AuthInfo:fqdn.of.your.localhost:2525 "U:name" "P:password" "M:PLAIN"
6) cd /etc/mail && make && /etc/init.d/sendmail reload
And it's done. Easy when you know how!
-Nigel