Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use address literal as default EHLO argument #30

Merged
merged 1 commit into from
Aug 27, 2020

Conversation

link2xt
Copy link
Collaborator

@link2xt link2xt commented Aug 27, 2020

This commit fixes formatting of IPv4 and IPv6 address literals.
Both are enclosed in brackets and IPv6 is prefixed with IPv6:.

Default trait is derived for ClientId.

Default ClientId is [127.0.0.1] now, because it passes the most strict
Postfix smtpd_helo_restrictions checks.

Fallback domain ClientId is replaced with localhost.localdomain,
because a domain must be an FQDN according to RFC 5321.

This commit fixes formatting of IPv4 and IPv6 address literals.
Both are enclosed in brackets and IPv6 is prefixed with `IPv6:`.

Default trait is derived for ClientId.

Default ClientId is `[127.0.0.1]` now, because it passes the most strict
Postfix `smtpd_helo_restrictions` checks.

Fallback domain ClientId is replaced with `localhost.localdomain`,
because a domain must be an FQDN according to RFC 5321.
@dignifiedquire dignifiedquire merged commit 2275fd8 into master Aug 27, 2020
@link2xt link2xt deleted the ehlo-address-literal branch August 27, 2020 08:17
@r10s
Copy link

r10s commented Aug 27, 2020

for understanding: is ClientId::hostname() that references DEFAULT_DOMAIN_CLIENT_ID (="localhost.localdomain") used anywhere?

@link2xt
Copy link
Collaborator Author

link2xt commented Aug 27, 2020

@r10s DC does not use it. It would be nice to remove this function and hostname dependency. If someone wants to use their machine hostname, they can use this or some other package directly and set their hostname with ClientId::new() and hello_name.

@dignifiedquire
Copy link
Collaborator

I would suggest making it a feature instead of removing it entirely

@link2xt
Copy link
Collaborator Author

link2xt commented Aug 27, 2020

@dignifiedquire
This feature would only allow to use

.hello_name(ClientId::hostname())

instead of

.hello_name(ClientId::new(get_hostname().unwrap_or_else(|| "localhost.localdomain".to_string())))

I can only imagine it being used in some rust MTA, and it will probably want to determine its hostname once at startup, not every time it makes a connection to other system. And it probably wants to log the hostname it found during startup.

@dignifiedquire
Copy link
Collaborator

fair enough

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants