> On Nov 30, 2017, at 8:51 PM, Chris <cpoll...@embarqmail.com> wrote: > > Nov 30 19:46:02 localhost postfix/pickup[21295]: 98C9410005DF: uid=1000 > from=<chris> > Nov 30 19:46:02 localhost postfix/cleanup[21376]: 98C9410005DF: > message-id=<20171201014602.98C9410005DF@cpollock.localdomain> > Nov 30 19:46:02 localhost postfix/qmgr[21294]: 98C9410005DF: from=<cpol > l...@embarqmail.com>, size=336, nrcpt=1 (queue active) > Nov 30 19:46:03 localhost postfix/smtp[21378]: 98C9410005DF: to=<cpollo > c...@embarqmail.com>, relay=smtp.embarqmail.com[206.152.134.66]:25, > delay=1.1, delays=0.23/0.2/0.48/0.16, dsn=2.0.0, status=sent (250 SPF > validation soft failure) > Nov 30 19:46:03 localhost postfix/qmgr[21294]: 98C9410005DF: removed > > Nov 30 19:46:46 localhost postfix/pickup[21295]: 382CC10005DF: uid=1000 > from=<chris> > Nov 30 19:46:46 localhost postfix/cleanup[21376]: 382CC10005DF: > message-id=<20171201014646.382CC10005DF@cpollock.localdomain> > Nov 30 19:46:46 localhost postfix/qmgr[21294]: 382CC10005DF: from=<cpol > l...@embarqmail.com>, size=335, nrcpt=1 (queue active) > Nov 30 19:46:46 localhost postfix/smtp[21378]: 382CC10005DF: to=<cpollo > c...@embarqmail.com>, relay=smtp.embarqmail.com[206.152.134.66]:25, > delay=0.21, delays=0.14/0/0.07/0, dsn=4.3.4, status=deferred (host > smtp.embarqmail.com[206.152.134.66] refused to talk to me: 421 4.3.4 > allocated resources exceeded) > > One was sent, the next one gives me the 'allocated resources exceeded' > error.
This is mostly not a Postfix issue, and really needs to be taken up with the provider. However, You need to clearly understand the difference between a submission service and normal (to MX) SMTP delivery. It seems that you're trying to send email *from* a sender address that is at the provider's domain (and this would typically involve authenticated submission) *to* a recipient address at the provider's domain (which under normal circumstances goes to the provider's MX host). Generally, given a working SASL configuration and a correctly working submission service, the submission aspect takes precedence, and all mail sent with that sender address (possibly via sender_dependent_default_transport) should use submission. So port 587 is not necessarily wrong, but you do need a correct username and password, and a working submission service that is willing to accept your traffic. At least one of these is not working, not much Postfix can do about that. You should perhaps first test with an MUA (Thunderbird or similar) and find a working submission service, and only then proceed to try to duplicate the same settings in Postfix. -- Viktor.