Victor Duchovni:
> So it looks like the "inet:" default went away when LMTP was merged with
> SMTP in 2.3.
The code attempts to be backwards compatible:
/*
* With LMTP we have direct-to-host delivery only. The destination may
* have multiple IP addresses.
*/
if (state->misc_flags & SMTP_MISC_FLAG_USE_LMTP) {
if (strncmp(destination, "unix:", 5) == 0) {
smtp_connect_local(state, destination + 5);
} else {
if (strncmp(destination, "inet:", 5) == 0)
destination += 5;
smtp_connect_remote(state, destination, DEF_LMTP_SERVICE);
}
}
Support for deprecated syntax can be removed after logging a warning
for one or more releases.
Wietse