Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

why is Alpine using postfix when an smtp-server is specified?

17 views
Skip to first unread message

nicholas

unread,
Dec 23, 2023, 6:59:19 AM12/23/23
to
As below, an smtp server is specified from the .pinerc file for this
account:

user-domain=example.com
smtp-server=smtp.ionos.com:587/tls/user=ni...@example.com
inbox-path={imap.ionos.com:993/ssl/user=ni...@example.com}INBOX

where "example.com" is the ionos domain. Yet I'm getting bounce messages
from postfix like:

From: "Mail Delivery System" <mailer...@perfora.net>
To: ni...@example.com

..

SMTP error from remote server for TEXT command, host: gmail-smtp-
in.l.google.com (xxx.yyy.zzz.aaa) reason: 550-5.7.26 This mail has been
blocked because the sender is unauthenticated.

..

https://support.google.com/mail/answer/81126#authentication





which is fine, insofar as this .pinerc isn't using meant to use postfix
and so it would surprising if it did authenticate with Google. Instead,
it should send directly through ionos as specified above. Why isn't it
sending through ionos?

How can Pine be configured to not use the localhost for sending?



thanks,

Nick

Carlos E.R.

unread,
Dec 23, 2023, 8:28:02 AM12/23/23
to
On 2023-12-23 12:59, nicholas wrote:
> As below, an smtp server is specified from the .pinerc file for this
> account:
>
> user-domain=example.com
> smtp-server=smtp.ionos.com:587/tls/user=ni...@example.com
> inbox-path={imap.ionos.com:993/ssl/user=ni...@example.com}INBOX
>
> where "example.com" is the ionos domain. Yet I'm getting bounce messages
> from postfix like:
>
> From: "Mail Delivery System" <mailer...@perfora.net>
> To: ni...@example.com

Who is "perfora.net"? Is that actually what you get, or have you edited
it for privacy? Is it you or is it outside?

Assuming that is what you really get, Alpine is not using postfix. It is
the remote site you send to that happens to also use postfix.


If I am not reading it correct, then you must say what is each domain in
your text in relationship to you.

And possibly post the entire rejection email, not including your email
part that was rejected and included.


--
Cheers, Carlos.

Eduardo Chappa

unread,
Dec 23, 2023, 9:45:25 AM12/23/23
to
On Sat, 23 Dec 2023, nicholas wrote:

> As below, an smtp server is specified from the .pinerc file for this
> account:
>
> user-domain=example.com
> smtp-server=smtp.ionos.com:587/tls/user=ni...@example.com
> inbox-path={imap.ionos.com:993/ssl/user=ni...@example.com}INBOX
>
> where "example.com" is the ionos domain. Yet I'm getting bounce messages
> from postfix like:
> [...]

Let me see if I understand you correctly. You have configured your
smtp-server variable to be the smtp server at ionos.com, and somehow
Alpine is not using that but using postfix which is connecting to google's
smtp server? Also, which version of Alpine are you using? Did you build it
yourself, or are you using one distributed by some linux distribution or
mac, or maybe even Windows?

Are you using roles? If yes, do you configure the smtp-server variable in
them? If not, configure it with the correct value.

I understand your sense of privacy and security, but without real data and
a real explanation of how you have configured Alpine it is hard to help
you. All I can do is to use my imagination to try to figure out what you
are trying to say, and will only result in a longer time to resolve your
issue, or not being able to solve it at all.

--
Eduardo
https://alpineapp.email (web)
http://repo.or.cz/alpine.git (Git)

J.O. Aho

unread,
Dec 23, 2023, 11:11:27 AM12/23/23
to
On 23/12/2023 12.59, nicholas wrote:
> As below, an smtp server is specified from the .pinerc file for this
> account:
>
> user-domain=example.com
> smtp-server=smtp.ionos.com:587/tls/user=ni...@example.com
> inbox-path={imap.ionos.com:993/ssl/user=ni...@example.com}INBOX
>
> where "example.com" is the ionos domain. Yet I'm getting bounce messages
> from postfix like:

I guess ionos uses postfix, it's one of the popular ones nowadays.


> From: "Mail Delivery System" <mailer...@perfora.net>
> To: ni...@example.com
>
> ..
>
> SMTP error from remote server for TEXT command, host: gmail-smtp-
> in.l.google.com (xxx.yyy.zzz.aaa) reason: 550-5.7.26 This mail has been
> blocked because the sender is unauthenticated.
>
> ..
>
> https://support.google.com/mail/answer/81126#authentication
>
>
>
>
>
> which is fine, insofar as this .pinerc isn't using meant to use postfix
> and so it would surprising if it did authenticate with Google.

This is about spf, dmarc and dkim, not about an user authentication.
You need to add the ionos mx servers to the spf record, you should also
set up a dmarc record and I would recommend to setup dkim too as many
larger mail operators rejects is you don't use dkim.


> Instead,
> it should send directly through ionos as specified above. Why isn't it
> sending through ionos?

Without seeing logs or mail headers, but I would say it has been sent
trough ionos.


> How can Pine be configured to not use the localhost for sending?

did you even bother to look at the logs?
grep ni...@perfora.net /var/log/mail.log

--
//Aho

William Unruh

unread,
Dec 28, 2023, 1:43:11 PM12/28/23
to
On 2023-12-23, nicholas <ni...@example.com> wrote:
> As below, an smtp server is specified from the .pinerc file for this
> account:
>
> user-domain=example.com
> smtp-server=smtp.ionos.com:587/tls/user=ni...@example.com
> inbox-path={imap.ionos.com:993/ssl/user=ni...@example.com}INBOX
>
> where "example.com" is the ionos domain. Yet I'm getting bounce messages
> from postfix like:

postfix is the local mailer/receiver on a Linux system (by default-- you
can change that) It has nothing to do with the outside routes or mail
handlers.
>
> From: "Mail Delivery System" <mailer...@perfora.net>
> To: ni...@example.com
>
> ..
>
> SMTP error from remote server for TEXT command, host: gmail-smtp-
> in.l.google.com (xxx.yyy.zzz.aaa) reason: 550-5.7.26 This mail has been
> blocked because the sender is unauthenticated.

Note that it is says the error came from the remote server. Postfix is
just relaying the message. So you are going to have to figure out why
and how you screwed up the authentication.

nicholas

unread,
Dec 29, 2023, 4:14:00 AM12/29/23
to
On Thu, 28 Dec 2023 18:43:10 -0000 (UTC), William Unruh wrote:


> Note that it is says the error came from the remote server. Postfix is
> just relaying the message. So you are going to have to figure out why
> and how you screwed up the authentication.

appreciated.
0 new messages