diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2009-01-14 23:48:36 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2009-01-14 23:48:36 +0000 |
commit | 7290e5ade3abb02763a90b6ed059391c3a55358a (patch) | |
tree | 1ea1746e33dbb766c707e49363820bafc53094fe /usr.sbin | |
parent | 1510cd231b9fa25f455beed1d9df8f614f0c6c02 (diff) |
live testing shows that some clients will not even send EHLO if banner does
not contain ESMTP. Now that we support some extensions, let's just say that
we are ESMTP ...
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/smtpd/smtpd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/smtpd.h b/usr.sbin/smtpd/smtpd.h index 2b9c8608edb..0312eea4218 100644 --- a/usr.sbin/smtpd/smtpd.h +++ b/usr.sbin/smtpd/smtpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.h,v 1.45 2009/01/08 19:17:31 jacekm Exp $ */ +/* $OpenBSD: smtpd.h,v 1.46 2009/01/14 23:48:35 gilles Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -38,7 +38,7 @@ #define SMTPD_QUEUE_EXPIRY (4 * 24 * 60 * 60) #define SMTPD_USER "_smtpd" #define SMTPD_SOCKET "/var/run/smtpd.sock" -#define SMTPD_BANNER "220 %s OpenSMTPD" +#define SMTPD_BANNER "220 %s ESMTP OpenSMTPD" #define SMTPD_SESSION_TIMEOUT 300 #define SMTPD_BACKLOG 5 |