Feature: added a "undeliverable postmaster notification
discarded" warning when mail is dropped on the floor.
Requested by Michael Hasenstein, SuSE, Germany.
+
+19990517
+
+ Bugfix: reject_non_fqdn_sender/recipient would pass
+ user@[ip_address] regardless of destination. Eric Cholet
+ had the honor of suffering from this one.
* Version of this program.
*/
#define VAR_MAIL_VERSION "mail_version"
-#define DEF_MAIL_VERSION "Snapshot-19990513"
+#define DEF_MAIL_VERSION "Snapshot-19990518"
extern char *var_mail_version;
/* LICENSE
domain = "";
/*
- * Skip forms that we can't handle yet. Permit user@[ip_address].
+ * Skip forms that we can't handle yet.
*/
if (domain[0] == '#')
return (SMTPD_CHECK_DUNNO);
if (domain[0] == '[' && domain[strlen(domain) - 1] == ']')
- return (SMTPD_CHECK_OK);
+ return (SMTPD_CHECK_DUNNO);
/*
* Truncate names ending in dot but not dot-dot.